mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
ffplay: fix null pointer read when codec unavilable.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6fd00e9dd9
commit
99119bdffe
6
ffplay.c
6
ffplay.c
@ -2191,6 +2191,9 @@ static int stream_component_open(VideoState *is, int stream_index)
|
||||
}
|
||||
|
||||
codec = avcodec_find_decoder(avctx->codec_id);
|
||||
if (!codec)
|
||||
return -1;
|
||||
|
||||
avctx->debug_mv = debug_mv;
|
||||
avctx->debug = debug;
|
||||
avctx->workaround_bugs = workaround_bugs;
|
||||
@ -2210,8 +2213,7 @@ static int stream_component_open(VideoState *is, int stream_index)
|
||||
if(codec->capabilities & CODEC_CAP_DR1)
|
||||
avctx->flags |= CODEC_FLAG_EMU_EDGE;
|
||||
|
||||
if (!codec ||
|
||||
avcodec_open(avctx, codec) < 0)
|
||||
if (avcodec_open(avctx, codec) < 0)
|
||||
return -1;
|
||||
|
||||
/* prepare audio output */
|
||||
|
Loading…
Reference in New Issue
Block a user