sd_lavc: reduce unnecessary error log on probing nonexistent codecs

This commit is contained in:
nanahi 2024-05-02 10:18:26 -04:00 committed by Kacper Michajłow
parent fc741dab1a
commit 91bb2f2543
1 changed files with 2 additions and 2 deletions

View File

@ -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);