|
@@ -907,10 +907,11 @@ static int mov_get_rawvideo_codec_tag(AVFormatContext *s, MOVTrack *track)
|
|
|
int 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;
|
|
|
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;
|
|
|
}
|
|
|
}
|
|
|
|