[Ffmpeg-cvslog] CVS: ffmpeg/libavcodec h264.c, 1.183, 1.184 raw.c, 1.17, 1.18
Diego Biurrun CVS
diego
Tue Jan 31 01:17:15 CET 2006
Update of /cvsroot/ffmpeg/ffmpeg/libavcodec
In directory mail:/var2/tmp/cvs-serv20508
Modified Files:
h264.c raw.c
Log Message:
Fix silly typos.
Index: h264.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/h264.c,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -d -r1.183 -r1.184
--- h264.c 28 Jan 2006 16:05:06 -0000 1.183
+++ h264.c 31 Jan 2006 00:17:12 -0000 1.184
@@ -5741,7 +5741,7 @@
return 0;
}
-static void inline compute_mb_neighboors(H264Context *h)
+static void inline compute_mb_neighbors(H264Context *h)
{
MpegEncContext * const s = &h->s;
const int mb_xy = s->mb_x + s->mb_y*s->mb_stride;
@@ -5801,7 +5801,7 @@
h->prev_mb_skipped = 0;
- compute_mb_neighboors(h);
+ compute_mb_neighbors(h);
if( ( mb_type = decode_cabac_mb_type( h ) ) < 0 ) {
av_log( h->s.avctx, AV_LOG_ERROR, "decode_cabac_mb_type failed\n" );
return -1;
Index: raw.c
===================================================================
RCS file: /cvsroot/ffmpeg/ffmpeg/libavcodec/raw.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- raw.c 12 Jan 2006 22:43:16 -0000 1.17
+++ raw.c 31 Jan 2006 00:17:13 -0000 1.18
@@ -31,7 +31,7 @@
AVFrame pic; ///< AVCodecContext.coded_frame
} RawVideoContext;
-typedef struct PixleFormatTag {
+typedef struct PixelFormatTag {
int pix_fmt;
unsigned int fourcc;
} PixelFormatTag;
More information about the ffmpeg-cvslog
mailing list