mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-12 02:04:58 +00:00
movenc: fix regression with yuyv caused by c5f23d
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
51211d351c
commit
ac6659aff7
@ -907,10 +907,11 @@ static int mov_get_rawvideo_codec_tag(AVFormatContext *s, MOVTrack *track)
|
|||||||
int i;
|
int i;
|
||||||
|
|
||||||
for (i = 0; i < FF_ARRAY_ELEMS(mov_pix_fmt_tags); i++) {
|
for (i = 0; i < FF_ARRAY_ELEMS(mov_pix_fmt_tags); i++) {
|
||||||
if (track->enc->codec_tag == mov_pix_fmt_tags[i].tag && track->enc->pix_fmt == mov_pix_fmt_tags[i].pix_fmt) {
|
if (track->enc->pix_fmt == mov_pix_fmt_tags[i].pix_fmt) {
|
||||||
tag = mov_pix_fmt_tags[i].tag;
|
tag = mov_pix_fmt_tags[i].tag;
|
||||||
track->enc->bits_per_coded_sample = mov_pix_fmt_tags[i].bps;
|
track->enc->bits_per_coded_sample = mov_pix_fmt_tags[i].bps;
|
||||||
break;
|
if (track->enc->codec_tag == mov_pix_fmt_tags[i].tag)
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user