Commit ec51b330 authored by Sergio Garcia Murillo's avatar Sergio Garcia Murillo Committed by Michael Niedermayer

h264: Fix minor bug in h264.c error trace

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 4b5a12a2
......@@ -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) {
......
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