]> git.sesse.net Git - ffmpeg/commitdiff
mpegtsenc: set audio_type according to st->disposition
authorAnssi Hannula <anssi.hannula@iki.fi>
Mon, 14 Feb 2011 18:43:41 +0000 (18:43 +0000)
committerMans Rullgard <mans@mansr.com>
Mon, 14 Feb 2011 23:18:26 +0000 (23:18 +0000)
Signed-off-by: Mans Rullgard <mans@mansr.com>
libavformat/mpegtsenc.c

index b1bccd1a8b2e95e9b048c5e88208d3f64e6c46b6..6945b4b3bad88dcd890ccb046e7a71da522fba85 100644 (file)
@@ -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;