[FFmpeg-cvslog] Fix spelling.
Reimar Döffinger
git at videolan.org
Wed Jun 15 20:22:39 CEST 2011
ffmpeg | branch: master | Reimar Döffinger <Reimar.Doeffinger at gmx.de> | Wed Jun 15 20:20:47 2011 +0200| [c940c31c88494c6accbdb0df3b715bd1f161368f] | committer: Reimar Döffinger
Fix spelling.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c940c31c88494c6accbdb0df3b715bd1f161368f
---
libavformat/rtpenc_h264.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/libavformat/rtpenc_h264.c b/libavformat/rtpenc_h264.c
index be9cb2c..0f8850e 100644
--- a/libavformat/rtpenc_h264.c
+++ b/libavformat/rtpenc_h264.c
@@ -29,14 +29,14 @@
#include "avc.h"
#include "rtpenc.h"
-static const uint8_t *avc_mp4_find_startcode(const uint8_t *start, const uint8_t *end, int nal_lenght_size)
+static const uint8_t *avc_mp4_find_startcode(const uint8_t *start, const uint8_t *end, int nal_length_size)
{
int res = 0;
- if (end - start < nal_lenght_size) {
+ if (end - start < nal_length_size) {
return NULL;
}
- while (nal_lenght_size--) {
+ while (nal_length_size--) {
res = (res << 8) | *start++;
}
More information about the ffmpeg-cvslog
mailing list