diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-23 18:34:15 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-05-23 18:34:15 +0000 |
commit | 2e01def0fe40e0d8c82299615e5302c7e9873e47 (patch) | |
tree | 0cac6b77631b594ce98fb45f98670cfe5f8667e4 /libavformat/nutenc.c | |
parent | 6d9b7a7dab00324943f84e1dd5eddbad088be80d (diff) | |
download | ffmpeg-2e01def0fe40e0d8c82299615e5302c7e9873e47.tar.gz |
Define ff_nut_video_tags and make Nut muxer and demuxer set it in
codec_tag.
Originally committed as revision 23259 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/nutenc.c')
-rw-r--r-- | libavformat/nutenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index b076eb19d9..469672bc41 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -824,6 +824,6 @@ AVOutputFormat nut_muxer = { write_packet, write_trailer, .flags = AVFMT_GLOBALHEADER | AVFMT_VARIABLE_FPS, - .codec_tag= (const AVCodecTag* const []){ff_codec_bmp_tags, ff_codec_wav_tags, ff_nut_subtitle_tags, 0}, + .codec_tag = (const AVCodecTag * const []){ ff_codec_bmp_tags, ff_nut_video_tags, ff_codec_wav_tags, ff_nut_subtitle_tags, 0 }, .metadata_conv = ff_nut_metadata_conv, }; |