summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-03-11 07:59:38 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2009-03-11 07:59:38 +0000
commitd1df4da00b106ed642b03ca5abcd653de0d7a5b3 (patch)
treef4b9b17321e353b89eb46f5894ee3d24d5c3c13f
parentb686d0ab4bd649c133f7f5e3b14561a4f2055196 (diff)
use correct codec tag list for ipod format
Originally committed as revision 17935 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavformat/movenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/movenc.c b/libavformat/movenc.c
index 77cd01d460..ddc0e29778 100644
--- a/libavformat/movenc.c
+++ b/libavformat/movenc.c
@@ -1940,6 +1940,6 @@ AVOutputFormat ipod_muxer = {
mov_write_packet,
mov_write_trailer,
.flags = AVFMT_GLOBALHEADER,
- .codec_tag = (const AVCodecTag* const []){ff_mp4_obj_type, 0},
+ .codec_tag = (const AVCodecTag* const []){codec_ipod_tags, 0},
};
#endif