diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-01-29 00:44:59 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-01-29 00:44:59 +0100 |
commit | 862174ec831d5fb01c44e8e3f7d3cd28002329bf (patch) | |
tree | 32c81a8d2afc72f98b8b9de64968287b1dee921a /libavformat/riff.h | |
parent | 4151b9953e2386da24fe6b65c4fc02fe3d1da948 (diff) | |
download | ffmpeg-862174ec831d5fb01c44e8e3f7d3cd28002329bf.tar.gz |
Move GUID-related objects to riffenc.c and riff.c.
This simplifies the following eac3-in-wav patch.
Diffstat (limited to 'libavformat/riff.h')
-rw-r--r-- | libavformat/riff.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavformat/riff.h b/libavformat/riff.h index ce078698c2..b59c6065a0 100644 --- a/libavformat/riff.h +++ b/libavformat/riff.h @@ -92,6 +92,8 @@ static av_always_inline int ff_guidcmp(const void *g1, const void *g2) } void ff_get_guid(AVIOContext *s, ff_asf_guid *g); +void ff_put_guid(AVIOContext *s, const ff_asf_guid *g); +const ff_asf_guid *get_codec_guid(enum AVCodecID id, const AVCodecGuid *av_guid); enum AVCodecID ff_codec_guid_get_id(const AVCodecGuid *guids, ff_asf_guid guid); |