mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-23 23:21:06 +01:00
Do not claim that every unknown rm stream is a video stream.
Also reduce verbosity for the unsupported stream message, use an AVFormatContext for av_log and and print the tag of the unknown stream. Improves ticket #672.
This commit is contained in:
parent
e421b79d01
commit
3880b4541a
1 changed files with 1 additions and 1 deletions
|
|
@ -313,7 +313,7 @@ ff_rm_read_mdpr_codecdata (AVFormatContext *s, AVIOContext *pb,
|
|||
int fps;
|
||||
if (avio_rl32(pb) != MKTAG('V', 'I', 'D', 'O')) {
|
||||
fail1:
|
||||
av_log(st->codec, AV_LOG_ERROR, "Unsupported video codec\n");
|
||||
av_log(s, AV_LOG_WARNING, "Unsupported stream type %08x\n", v);
|
||||
goto skip;
|
||||
}
|
||||
st->codec->codec_tag = avio_rl32(pb);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue