[FFmpeg-cvslog] h264: Fix minor bug in h264.c error trace

Sergio Garcia Murillo git at videolan.org
Mon Nov 26 17:58:06 CET 2012


ffmpeg | branch: master | Sergio Garcia Murillo <sergio.garcia.murillo at gmail.com> | Mon Nov 26 17:19:56 2012 +0100| [ec51b3308effbd0f434db87efabe600cd1f8cb36] | committer: Michael Niedermayer

h264: Fix minor bug in h264.c error trace

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ec51b3308effbd0f434db87efabe600cd1f8cb36
---

 libavcodec/h264.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index f1c5104..0413ba4 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -2410,7 +2410,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
     if (slice_type > 9) {
         av_log(h->s.avctx, AV_LOG_ERROR,
                "slice type too large (%d) at %d %d\n",
-               h->slice_type, s->mb_x, s->mb_y);
+               slice_type, s->mb_x, s->mb_y);
         return -1;
     }
     if (slice_type > 4) {



More information about the ffmpeg-cvslog mailing list