diff options
author | Tomas Härdin <tomas.hardin@codemill.se> | 2010-09-27 12:27:23 +0000 |
---|---|---|
committer | Tomas Härdin <tomas.hardin@codemill.se> | 2010-09-27 12:27:23 +0000 |
commit | d1ac03517e66ff12564c4d5abcb204e9a4e424b6 (patch) | |
tree | 2aa53c08165738bd019eb37631235b78706c391d | |
parent | be0e596a57633a1358a4414239947f42b328af74 (diff) | |
download | ffmpeg-d1ac03517e66ff12564c4d5abcb204e9a4e424b6.tar.gz |
mpegtsenc: Write subtitle extradata if set
Originally committed as revision 25221 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavformat/mpegtsenc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c index ac09ab93d5..94a051d96f 100644 --- a/libavformat/mpegtsenc.c +++ b/libavformat/mpegtsenc.c @@ -276,8 +276,13 @@ static void mpegts_write_pmt(AVFormatContext *s, MpegTSService *service) *q++ = language[1]; *q++ = language[2]; *q++ = 0x10; /* normal subtitles (0x20 = if hearing pb) */ + if(st->codec->extradata_size == 4) { + memcpy(q, st->codec->extradata, 4); + q += 4; + } else { put16(&q, 1); /* page id */ put16(&q, 1); /* ancillary page id */ + } } break; case AVMEDIA_TYPE_VIDEO: |