summaryrefslogtreecommitdiff
path: root/libavcodec/h264.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-01-31 00:17:13 +0000
committerDiego Biurrun <diego@biurrun.de>2006-01-31 00:17:13 +0000
commitb5bba45905c074d9c8a9388589fda3f48cb08437 (patch)
tree35f52204d73d4dc7c6e1c4f8e97b4a599edba82e /libavcodec/h264.c
parentefce1a8fea2d7fb3272992042b9d56f58deb9834 (diff)
Fix silly typos.
Originally committed as revision 4915 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r--libavcodec/h264.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 9339251c6e..080cfc4b12 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -5741,7 +5741,7 @@ static int decode_cabac_residual( H264Context *h, DCTELEM *block, int cat, int n
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 @@ static int decode_mb_cabac(H264Context *h) {
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;