lavf/mov: Write colour matrix "6" for color_space bt470bg.

This matches the demuxer's behaviour.
This commit is contained in:
Carl Eugen Hoyos 2015-05-21 00:44:34 +02:00
parent 8f6b919d99
commit c4f864193f

View File

@ -1608,6 +1608,7 @@ static int mov_write_colr_tag(AVIOContext *pb, MOVTrack *track)
}
switch (track->enc->colorspace) {
case AVCOL_TRC_BT709: avio_wb16(pb, 1); break;
case AVCOL_SPC_BT470BG:
case AVCOL_PRI_SMPTE170M: avio_wb16(pb, 6); break;
case AVCOL_PRI_SMPTE240M: avio_wb16(pb, 7); break;
default: avio_wb16(pb, 2);