[FFmpeg-cvslog] mpegtsenc: set audio_type according to st->disposition
Anssi Hannula
git
Tue Feb 15 16:59:37 CET 2011
ffmpeg | branch: master | Anssi Hannula <anssi.hannula at iki.fi> | Mon Feb 14 18:43:41 2011 +0000| [932a45a5944661ca68626894c228ca16a46fd2dc] | committer: Michael Niedermayer
mpegtsenc: set audio_type according to st->disposition
Signed-off-by: Mans Rullgard <mans at mansr.com>
(cherry picked from commit 3f2d3a1904c1ccdfdc3bd03a6dd6567986f681d9)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=932a45a5944661ca68626894c228ca16a46fd2dc
---
libavformat/mpegtsenc.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c
index b1bccd1..6945b4b 100644
--- a/libavformat/mpegtsenc.c
+++ b/libavformat/mpegtsenc.c
@@ -289,6 +289,13 @@ static void mpegts_write_pmt(AVFormatContext *s, MpegTSService *service)
*q++ = lang->value[0];
*q++ = lang->value[1];
*q++ = lang->value[2];
+ if (st->disposition & AV_DISPOSITION_CLEAN_EFFECTS)
+ *q++ = 0x01;
+ else if (st->disposition & AV_DISPOSITION_HEARING_IMPAIRED)
+ *q++ = 0x02;
+ else if (st->disposition & AV_DISPOSITION_VISUAL_IMPAIRED)
+ *q++ = 0x03;
+ else
*q++ = 0; /* undefined type */
}
break;
More information about the ffmpeg-cvslog
mailing list