mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-28 20:53:54 +02:00
lavf/movenc: Do not print an error when muxing gray8 rawvideo.
This was fixed in 9a27780821
This commit is contained in:
parent
c06d923410
commit
222f59afd1
@ -1427,6 +1427,7 @@ static int mov_get_rawvideo_codec_tag(AVFormatContext *s, MOVTrack *track)
|
||||
track->par->bits_per_coded_sample);
|
||||
if (tag == MKTAG('r','a','w',' ') &&
|
||||
track->par->format != pix_fmt &&
|
||||
track->par->format != AV_PIX_FMT_GRAY8 &&
|
||||
track->par->format != AV_PIX_FMT_NONE)
|
||||
av_log(s, AV_LOG_ERROR, "%s rawvideo cannot be written to mov, output file will be unreadable\n",
|
||||
av_get_pix_fmt_name(track->par->format));
|
||||
|
Loading…
Reference in New Issue
Block a user