Fix demuxer error message
Now that there are several possible codecs, do not hardcode H.264 in the
error message.
Refs 3e517cd40e
This commit is contained in:
parent
f4e7085c34
commit
680ddf64be
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue