mirror of
https://github.com/mpv-player/mpv
synced 2025-02-16 12:17:12 +00:00
sd_lavc: reduce unnecessary error log on probing nonexistent codecs
This commit is contained in:
parent
fc741dab1a
commit
91bb2f2543
@ -93,10 +93,10 @@ static int init(struct sd *sd)
|
||||
AVCodecContext *ctx = NULL;
|
||||
const AVCodec *sub_codec = avcodec_find_decoder(cid);
|
||||
if (!sub_codec)
|
||||
goto error;
|
||||
goto error_probe;
|
||||
ctx = avcodec_alloc_context3(sub_codec);
|
||||
if (!ctx)
|
||||
goto error;
|
||||
goto error_probe;
|
||||
|
||||
mp_set_avopts(sd->log, ctx, sd->opts->sub_avopts);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user