diff options
author | John Stebbins <stebbins@jetheaddev.com> | 2015-02-24 12:44:48 -0800 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-02-24 22:28:51 +0100 |
commit | da7e561964ee833678dc24fae0b0265358126d1e (patch) | |
tree | b095faf7fe251b09f76e78c206055204d7621fb6 | |
parent | d594dbecce5f3af7f80bbf5bb1b516d740b69ccd (diff) | |
download | ffmpeg-da7e561964ee833678dc24fae0b0265358126d1e.tar.gz |
matroskaenc: Allow writing track "forced" flag
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-rw-r--r-- | libavformat/matroskaenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c index cab43f499e..868861615f 100644 --- a/libavformat/matroskaenc.c +++ b/libavformat/matroskaenc.c @@ -769,6 +769,8 @@ static int mkv_write_track(AVFormatContext *s, MatroskaMuxContext *mkv, // if we need to clear it. if (!(st->disposition & AV_DISPOSITION_DEFAULT)) put_ebml_uint(pb, MATROSKA_ID_TRACKFLAGDEFAULT, !!(st->disposition & AV_DISPOSITION_DEFAULT)); + if (st->disposition & AV_DISPOSITION_FORCED) + put_ebml_uint(pb, MATROSKA_ID_TRACKFLAGFORCED, !!(st->disposition & AV_DISPOSITION_FORCED)); if (codec->codec_type == AVMEDIA_TYPE_AUDIO && codec->initial_padding) { mkv->tracks[i].ts_offset = av_rescale_q(codec->initial_padding, |