diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-04-07 22:26:47 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2009-04-07 22:26:47 +0000 |
commit | 130ba4b17a3b0a563483ba10248d7bd0aa8e85e5 (patch) | |
tree | 5e2567e5dce3c1bad24158d2e74567fc45e4740e /libavformat/movenc.c | |
parent | 6452af7a3350e630ec4cab3e64bd1f6deb1d48d1 (diff) | |
download | ffmpeg-130ba4b17a3b0a563483ba10248d7bd0aa8e85e5.tar.gz |
comment the ipod subtitle check
Originally committed as revision 18366 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/movenc.c')
-rw-r--r-- | libavformat/movenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c index e96e570317..536109a4fc 100644 --- a/libavformat/movenc.c +++ b/libavformat/movenc.c @@ -601,6 +601,7 @@ static int ipod_get_codec_tag(AVFormatContext *s, MOVTrack *track) { int tag = track->enc->codec_tag; + // keep original tag for subs, ipod supports both formats if (!(track->enc->codec_type == CODEC_TYPE_SUBTITLE && (tag == MKTAG('t','x','3','g') || tag == MKTAG('t','e','x','t'))) |