diff h264.c @ 3077:385e54795a9e libavcodec

Fix silly typos.
author diego
date Tue, 31 Jan 2006 00:17:13 +0000
parents cc0357a90e8f
children 072dbc669253
line wrap: on
line diff
--- 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;