You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
avformat/mov: dont print frma warning when format is the same
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
committed by
Michael Niedermayer
parent
1693336aed
commit
1bbfaba196
@ -4005,9 +4005,11 @@ static int mov_read_frma(MOVContext *c, AVIOContext *pb, MOVAtom atom)
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
av_log(c->fc, AV_LOG_WARNING,
|
if (format != sc->format) {
|
||||||
"ignoring 'frma' atom of '%.4s', stream format is '%.4s'\n",
|
av_log(c->fc, AV_LOG_WARNING,
|
||||||
(char*)&format, (char*)&sc->format);
|
"ignoring 'frma' atom of '%.4s', stream format is '%.4s'\n",
|
||||||
|
(char*)&format, (char*)&sc->format);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user