[FFmpeg-cvslog] avf: move riff tags accessors where they belong
Luca Barbato
git at videolan.org
Sun Jun 16 23:57:27 CEST 2013
ffmpeg | branch: master | Luca Barbato <lu_zero at gentoo.org> | Sat Jun 15 11:44:07 2013 +0200| [508998f7d5cc61c7ac7b049813b47adc24c6e282] | committer: Luca Barbato
avf: move riff tags accessors where they belong
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=508998f7d5cc61c7ac7b049813b47adc24c6e282
---
libavformat/riff.c | 10 ++++++++++
libavformat/utils.c | 9 ---------
2 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/libavformat/riff.c b/libavformat/riff.c
index b436a12..3f1790e 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -411,6 +411,16 @@ enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid)
return AV_CODEC_ID_NONE;
}
+const struct AVCodecTag *avformat_get_riff_video_tags(void)
+{
+ return ff_codec_bmp_tags;
+}
+
+const struct AVCodecTag *avformat_get_riff_audio_tags(void)
+{
+ return ff_codec_wav_tags;
+}
+
#if CONFIG_MUXERS
int64_t ff_start_tag(AVIOContext *pb, const char *tag)
{
diff --git a/libavformat/utils.c b/libavformat/utils.c
index 106d4e9..2bfff41 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -3398,12 +3398,3 @@ int ff_add_param_change(AVPacket *pkt, int32_t channels,
}
return 0;
}
-
-const struct AVCodecTag *avformat_get_riff_video_tags(void)
-{
- return ff_codec_bmp_tags;
-}
-const struct AVCodecTag *avformat_get_riff_audio_tags(void)
-{
- return ff_codec_wav_tags;
-}
More information about the ffmpeg-cvslog
mailing list