mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
Merge commit 'edaba18021'
* commit 'edaba18021':
h264: log extradata skip only for non-ignored NALs
Conflicts:
libavcodec/h264.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
af2bb83dff
1 changed files with 4 additions and 1 deletions
|
|
@ -4771,8 +4771,11 @@ again:
|
||||||
case NAL_DPA:
|
case NAL_DPA:
|
||||||
case NAL_DPB:
|
case NAL_DPB:
|
||||||
case NAL_DPC:
|
case NAL_DPC:
|
||||||
|
av_log(h->avctx, AV_LOG_WARNING,
|
||||||
|
"Ignoring NAL %d in global header/extradata\n",
|
||||||
|
hx->nal_unit_type);
|
||||||
|
// fall through to next case
|
||||||
case NAL_AUXILIARY_SLICE:
|
case NAL_AUXILIARY_SLICE:
|
||||||
av_log(h->avctx, AV_LOG_WARNING, "Ignoring NAL %d in global header/extradata\n", hx->nal_unit_type);
|
|
||||||
hx->nal_unit_type = NAL_FF_IGNORE;
|
hx->nal_unit_type = NAL_FF_IGNORE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue