mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
h264: Fix minor bug in h264.c error trace
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
4b5a12a2cb
commit
ec51b3308e
@ -2410,7 +2410,7 @@ static int decode_slice_header(H264Context *h, H264Context *h0)
|
|||||||
if (slice_type > 9) {
|
if (slice_type > 9) {
|
||||||
av_log(h->s.avctx, AV_LOG_ERROR,
|
av_log(h->s.avctx, AV_LOG_ERROR,
|
||||||
"slice type too large (%d) at %d %d\n",
|
"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;
|
return -1;
|
||||||
}
|
}
|
||||||
if (slice_type > 4) {
|
if (slice_type > 4) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user