diff options
author | Marton Balint <cus@passwd.hu> | 2012-10-28 02:22:47 +0200 |
---|---|---|
committer | Marton Balint <cus@passwd.hu> | 2012-11-01 15:46:18 +0100 |
commit | fec39d99d63686cb70f47f33473f9607efe3c968 (patch) | |
tree | 9c75828bb48ed1881bc5bef6a36a214fa8d4d3df | |
parent | fdb933444add87e026b64639d0db83b0d5177c7b (diff) | |
download | ffmpeg-fec39d99d63686cb70f47f33473f9607efe3c968.tar.gz |
ffplay: remove redundant !codec check
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r-- | ffplay.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2307,8 +2307,7 @@ static int stream_component_open(VideoState *is, int stream_index) opts = filter_codec_opts(codec_opts, avctx->codec_id, ic, ic->streams[stream_index], codec); if (!av_dict_get(opts, "threads", NULL, 0)) av_dict_set(&opts, "threads", "auto", 0); - if (!codec || - avcodec_open2(avctx, codec, &opts) < 0) + if (avcodec_open2(avctx, codec, &opts) < 0) return -1; if ((t = av_dict_get(opts, "", NULL, AV_DICT_IGNORE_SUFFIX))) { av_log(NULL, AV_LOG_ERROR, "Option %s not found.\n", t->key); |