1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

avformat/mxfenc: reindent after last mxfenc commit

Signed-off-by: Marton Balint <cus@passwd.hu>
This commit is contained in:
Marton Balint
2023-03-26 21:38:26 +02:00
parent 20dade27d9
commit cd954aa3c6

View File

@@ -1236,43 +1236,43 @@ static int64_t mxf_write_cdci_common(AVFormatContext *s, AVStream *st, const UID
} }
if (key != mxf_rgba_descriptor_key) { if (key != mxf_rgba_descriptor_key) {
// component depth // component depth
mxf_write_local_tag(s, 4, 0x3301); mxf_write_local_tag(s, 4, 0x3301);
avio_wb32(pb, sc->component_depth); avio_wb32(pb, sc->component_depth);
// horizontal subsampling // horizontal subsampling
mxf_write_local_tag(s, 4, 0x3302); mxf_write_local_tag(s, 4, 0x3302);
avio_wb32(pb, sc->h_chroma_sub_sample); avio_wb32(pb, sc->h_chroma_sub_sample);
// vertical subsampling // vertical subsampling
mxf_write_local_tag(s, 4, 0x3308); mxf_write_local_tag(s, 4, 0x3308);
avio_wb32(pb, sc->v_chroma_sub_sample); avio_wb32(pb, sc->v_chroma_sub_sample);
// color siting // color siting
mxf_write_local_tag(s, 1, 0x3303); mxf_write_local_tag(s, 1, 0x3303);
avio_w8(pb, sc->color_siting); avio_w8(pb, sc->color_siting);
// Padding Bits // Padding Bits
mxf_write_local_tag(s, 2, 0x3307); mxf_write_local_tag(s, 2, 0x3307);
avio_wb16(pb, 0); avio_wb16(pb, 0);
if (st->codecpar->color_range != AVCOL_RANGE_UNSPECIFIED) { if (st->codecpar->color_range != AVCOL_RANGE_UNSPECIFIED) {
int black = 0, int black = 0,
white = (1<<sc->component_depth) - 1, white = (1<<sc->component_depth) - 1,
color = (1<<sc->component_depth); color = (1<<sc->component_depth);
if (st->codecpar->color_range == AVCOL_RANGE_MPEG) { if (st->codecpar->color_range == AVCOL_RANGE_MPEG) {
black = 1 << (sc->component_depth - 4); black = 1 << (sc->component_depth - 4);
white = 235 << (sc->component_depth - 8); white = 235 << (sc->component_depth - 8);
color = (14 << (sc->component_depth - 4)) + 1; color = (14 << (sc->component_depth - 4)) + 1;
}
mxf_write_local_tag(s, 4, 0x3304);
avio_wb32(pb, black);
mxf_write_local_tag(s, 4, 0x3305);
avio_wb32(pb, white);
mxf_write_local_tag(s, 4, 0x3306);
avio_wb32(pb, color);
} }
mxf_write_local_tag(s, 4, 0x3304);
avio_wb32(pb, black);
mxf_write_local_tag(s, 4, 0x3305);
avio_wb32(pb, white);
mxf_write_local_tag(s, 4, 0x3306);
avio_wb32(pb, color);
} }
} // if (key != mxf_rgba_descriptor_key)
if (sc->signal_standard) { if (sc->signal_standard) {
mxf_write_local_tag(s, 1, 0x3215); mxf_write_local_tag(s, 1, 0x3215);