Browse Source

export a few more codec_tag-codec_id tables

Originally committed as revision 7594 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 19 years ago
parent
commit
edb6e50682
5 changed files with 7 additions and 0 deletions
  1. +2
    -0
      libavformat/aiff.c
  2. +2
    -0
      libavformat/au.c
  3. +1
    -0
      libavformat/flvenc.c
  4. +1
    -0
      libavformat/vocdec.c
  5. +1
    -0
      libavformat/vocenc.c

+ 2
- 0
libavformat/aiff.c View File

@@ -417,6 +417,7 @@ AVInputFormat aiff_demuxer = {
aiff_read_packet,
aiff_read_close,
aiff_read_seek,
.codec_tag= {codec_aiff_tags},
};
#endif

@@ -432,5 +433,6 @@ AVOutputFormat aiff_muxer = {
aiff_write_header,
aiff_write_packet,
aiff_write_trailer,
.codec_tag= {codec_aiff_tags},
};
#endif

+ 2
- 0
libavformat/au.c View File

@@ -190,6 +190,7 @@ AVInputFormat au_demuxer = {
au_read_packet,
au_read_close,
pcm_read_seek,
.codec_tag= {codec_au_tags},
};
#endif

@@ -205,5 +206,6 @@ AVOutputFormat au_muxer = {
au_write_header,
au_write_packet,
au_write_trailer,
.codec_tag= {codec_au_tags},
};
#endif //CONFIG_AU_MUXER

+ 1
- 0
libavformat/flvenc.c View File

@@ -332,4 +332,5 @@ AVOutputFormat flv_muxer = {
flv_write_header,
flv_write_packet,
flv_write_trailer,
.codec_tag= {flv_video_codec_ids, flv_audio_codec_ids},
};

+ 1
- 0
libavformat/vocdec.c View File

@@ -152,4 +152,5 @@ AVInputFormat voc_demuxer = {
voc_read_header,
voc_read_packet,
voc_read_close,
.codec_tag={voc_codec_tags},
};

+ 1
- 0
libavformat/vocenc.c View File

@@ -101,4 +101,5 @@ AVOutputFormat voc_muxer = {
voc_write_header,
voc_write_packet,
voc_write_trailer,
.codec_tag={voc_codec_tags},
};

Loading…
Cancel
Save