Fix demuxer error message

Now that there are several possible codecs, do not hardcode H.264 in the
error message.

Refs 3e517cd40e
audio.43
Romain Vimont 1 year ago
parent f4e7085c34
commit 680ddf64be

@ -179,7 +179,7 @@ run_demuxer(void *data) {
const AVCodec *codec = avcodec_find_decoder(codec_id);
if (!codec) {
LOGE("H.264 decoder not found");
LOGE("Decoder not found");
goto end;
}

Loading…
Cancel
Save