diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-01-27 19:57:04 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2008-01-27 19:57:04 +0000 |
commit | cc8c2c6ab341bbb38179614ffd54875729a82deb (patch) | |
tree | 73d2016c3f2c5463cbfeff7d9b50fc1e8a3380da /libavformat/isom.c | |
parent | cf6cb7c562d0dca489b82c074da8d563df596469 (diff) | |
download | ffmpeg-cc8c2c6ab341bbb38179614ffd54875729a82deb.tar.gz |
Add CODEC_ID_MOV_TEXT and use it instead of modifying the stream in the mov demuxer.
Originally committed as revision 11638 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/isom.c')
-rw-r--r-- | libavformat/isom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/isom.c b/libavformat/isom.c index c0af2d2bbe..5a67aec8ea 100644 --- a/libavformat/isom.c +++ b/libavformat/isom.c @@ -169,7 +169,7 @@ const AVCodecTag codec_movaudio_tags[] = { }; const AVCodecTag ff_codec_movsubtitle_tags[] = { - { CODEC_ID_TEXT, MKTAG('t', 'e', 'x', 't') }, + { CODEC_ID_MOV_TEXT, MKTAG('t', 'e', 'x', 't') }, { CODEC_ID_NONE, 0 }, }; |