Browse Source

h264: Fix minor bug in h264.c error trace

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Sergio Garcia Murillo Michael Niedermayer 13 years ago
parent
commit
ec51b3308e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264.c

+ 1
- 1
libavcodec/h264.c View File

@@ -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) {


Loading…
Cancel
Save