mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
h264: Check that the codec isn't null before accessing it
This fixes crashes introduced by 2e8f3cbcda
, the codec can be null
when called from parsers.
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
0b58c77ed1
commit
6f5b1a2ba4
@ -3876,7 +3876,8 @@ again:
|
||||
|
||||
if (avctx->bits_per_raw_sample != h->sps.bit_depth_luma ||
|
||||
h->cur_chroma_format_idc != h->sps.chroma_format_idc) {
|
||||
if (s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU
|
||||
if (s->avctx->codec &&
|
||||
s->avctx->codec->capabilities & CODEC_CAP_HWACCEL_VDPAU
|
||||
&& (h->sps.bit_depth_luma != 8 ||
|
||||
h->sps.chroma_format_idc > 1)) {
|
||||
av_log(avctx, AV_LOG_ERROR,
|
||||
|
Loading…
Reference in New Issue
Block a user