[FFmpeg-devel] [PATCH 1/3] avformat/mxfenc: Allow overriding numerical color_siting value.
Michael Niedermayer
michael at niedermayer.cc
Tue Aug 29 12:45:29 EEST 2017
On Tue, Aug 29, 2017 at 11:05:25AM +0200, Paul B Mahol wrote:
> On 8/29/17, Michael Niedermayer <michael at niedermayer.cc> wrote:
> > Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> > ---
> > libavformat/mxfenc.c | 7 ++++++-
> > 1 file changed, 6 insertions(+), 1 deletion(-)
> >
> > diff --git a/libavformat/mxfenc.c b/libavformat/mxfenc.c
> > index 12fc9abbc6..ccfa0d6341 100644
> > --- a/libavformat/mxfenc.c
> > +++ b/libavformat/mxfenc.c
> > @@ -322,6 +322,7 @@ typedef struct MXFContext {
> > uint8_t umid[16]; ///< unique material identifier
> > int channel_count;
> > int signal_standard;
> > + int color_siting;
> > uint32_t tagged_value_count;
> > AVRational audio_edit_rate;
> > int store_user_comments;
> > @@ -2085,6 +2086,8 @@ static int mxf_write_header(AVFormatContext *s)
> > case AVCHROMA_LOC_TOP: sc->color_siting = 1; break;
> > case AVCHROMA_LOC_CENTER: sc->color_siting = 3; break;
> > }
> > + if (mxf->color_siting >= 0)
> > + sc->color_siting = mxf->color_siting;
> >
> > mxf->timecode_base = (tbc.den + tbc.num/2) / tbc.num;
> > spf = ff_mxf_get_samples_per_frame(s, tbc);
> > @@ -2668,7 +2671,9 @@ static int mxf_interleave(AVFormatContext *s, AVPacket
> > *out, AVPacket *pkt, int
> > { "smpte349m", "SMPTE 349M (1485 Mbps mappings)",\
> > 0, AV_OPT_TYPE_CONST, {.i64 = 6}, -1, 7, AV_OPT_FLAG_ENCODING_PARAM,
> > "signal_standard"},\
> > { "smpte428", "SMPTE 428-1 DCDM",\
> > - 0, AV_OPT_TYPE_CONST, {.i64 = 7}, -1, 7, AV_OPT_FLAG_ENCODING_PARAM,
> > "signal_standard"},
> > + 0, AV_OPT_TYPE_CONST, {.i64 = 7}, -1, 7, AV_OPT_FLAG_ENCODING_PARAM,
> > "signal_standard"},\
>
> Above change is unneeded.
The multiline macro needs the added \
if more is added at the end
I could add the new option at the top if you prefer ?
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Those who are best at talking, realize last or never when they are wrong.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: Digital signature
URL: <http://ffmpeg.org/pipermail/ffmpeg-devel/attachments/20170829/9c0c593d/attachment.sig>
More information about the ffmpeg-devel
mailing list