# HG changeset patch # User diego # Date 1138666633 0 # Node ID 385e54795a9e0a2a37a0875a1b46bd39760efc83 # Parent 50d80b04f150540c8bd210919897a3bae092be3e Fix silly typos. diff -r 50d80b04f150 -r 385e54795a9e h264.c --- a/h264.c Mon Jan 30 23:41:27 2006 +0000 +++ b/h264.c Tue Jan 31 00:17:13 2006 +0000 @@ -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; diff -r 50d80b04f150 -r 385e54795a9e raw.c --- a/raw.c Mon Jan 30 23:41:27 2006 +0000 +++ b/raw.c Tue Jan 31 00:17:13 2006 +0000 @@ -31,7 +31,7 @@ AVFrame pic; ///< AVCodecContext.coded_frame } RawVideoContext; -typedef struct PixleFormatTag { +typedef struct PixelFormatTag { int pix_fmt; unsigned int fourcc; } PixelFormatTag;