Commit b5bba459 authored by Diego Biurrun's avatar Diego Biurrun

Fix silly typos.

Originally committed as revision 4915 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent efce1a8f
...@@ -5741,7 +5741,7 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n ...@@ -5741,7 +5741,7 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n
return 0; return 0;
} }
static void inline compute_mb_neighboors(H264Context *h) static void inline compute_mb_neighbors(H264Context *h)
{ {
MpegEncContext * const s = &h->s; MpegEncContext * const s = &h->s;
const int mb_xy = s->mb_x + s->mb_y*s->mb_stride; const int mb_xy = s->mb_x + s->mb_y*s->mb_stride;
...@@ -5801,7 +5801,7 @@ static int decode_mb_cabac(H264Context *h) { ...@@ -5801,7 +5801,7 @@ static int decode_mb_cabac(H264Context *h) {
h->prev_mb_skipped = 0; h->prev_mb_skipped = 0;
compute_mb_neighboors(h); compute_mb_neighbors(h);
if( ( mb_type = decode_cabac_mb_type( h ) ) < 0 ) { if( ( mb_type = decode_cabac_mb_type( h ) ) < 0 ) {
av_log( h->s.avctx, AV_LOG_ERROR, "decode_cabac_mb_type failed\n" ); av_log( h->s.avctx, AV_LOG_ERROR, "decode_cabac_mb_type failed\n" );
return -1; return -1;
......
...@@ -31,7 +31,7 @@ typedef struct RawVideoContext { ...@@ -31,7 +31,7 @@ typedef struct RawVideoContext {
AVFrame pic; ///< AVCodecContext.coded_frame AVFrame pic; ///< AVCodecContext.coded_frame
} RawVideoContext; } RawVideoContext;
typedef struct PixleFormatTag { typedef struct PixelFormatTag {
int pix_fmt; int pix_fmt;
unsigned int fourcc; unsigned int fourcc;
} PixelFormatTag; } PixelFormatTag;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment