diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-08-18 23:52:55 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-08-20 23:54:56 +0200 |
commit | 454e37ce0c5c17b5c5029360408d60ce146fd1de (patch) | |
tree | e82ef9f8a58adfe7ce9d8e5ec4ba5904d919fa61 | |
parent | dcae2ecc13eee63014d904d125dcc6e3d76934bd (diff) | |
download | ffmpeg-454e37ce0c5c17b5c5029360408d60ce146fd1de.tar.gz |
lavf/nut: define fourcc DVBT for DVB_TELETEXT.
Allow "-map 0:s -c:s copy" to copy all subtitles streams.
-rw-r--r-- | libavformat/nut.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/nut.c b/libavformat/nut.c index 7e3c83a291..a266d5279e 100644 --- a/libavformat/nut.c +++ b/libavformat/nut.c @@ -29,6 +29,7 @@ const AVCodecTag ff_nut_subtitle_tags[] = { { AV_CODEC_ID_SSA , MKTAG('S', 'S', 'A', 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') }, { AV_CODEC_ID_NONE , 0 } }; |