mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
libavformat/nut: Support SSA and ASS subtitles
ffmpeg documentation says the NUT container supports SubStation Alpha This brings actual functionality in line with documentation. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
a469d29c08
commit
118e63dff1
@ -27,6 +27,8 @@
|
||||
|
||||
const AVCodecTag ff_nut_subtitle_tags[] = {
|
||||
{ AV_CODEC_ID_TEXT, MKTAG('U', 'T', 'F', '8') },
|
||||
{ AV_CODEC_ID_ASS, MKTAG('S', 'S', 'A', 0 ) },
|
||||
{ AV_CODEC_ID_ASS, MKTAG('A', 'S', 'S', 0 ) },
|
||||
{ AV_CODEC_ID_DVD_SUBTITLE, MKTAG('D', 'V', 'D', 'S') },
|
||||
{ AV_CODEC_ID_DVB_SUBTITLE, MKTAG('D', 'V', 'B', 'S') },
|
||||
{ AV_CODEC_ID_DVB_TELETEXT, MKTAG('D', 'V', 'B', 'T') },
|
||||
|
Loading…
Reference in New Issue
Block a user