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/riffdec.c | |
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/riffdec.c')
-rw-r--r-- | libavformat/riffdec.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/libavformat/riffdec.c b/libavformat/riffdec.c index 559ca47df8..c1e9ec1532 100644 --- a/libavformat/riffdec.c +++ b/libavformat/riffdec.c @@ -29,14 +29,6 @@ #include "avio_internal.h" #include "riff.h" -const AVCodecGuid ff_codec_wav_guids[] = { - { AV_CODEC_ID_AC3, { 0x2C, 0x80, 0x6D, 0xE0, 0x46, 0xDB, 0xCF, 0x11, 0xB4, 0xD1, 0x00, 0x80, 0x5F, 0x6C, 0xBB, 0xEA } }, - { AV_CODEC_ID_ATRAC3P, { 0xBF, 0xAA, 0x23, 0xE9, 0x58, 0xCB, 0x71, 0x44, 0xA1, 0x19, 0xFF, 0xFA, 0x01, 0xE4, 0xCE, 0x62 } }, - { AV_CODEC_ID_EAC3, { 0xAF, 0x87, 0xFB, 0xA7, 0x02, 0x2D, 0xFB, 0x42, 0xA4, 0xD4, 0x05, 0xCD, 0x93, 0x84, 0x3B, 0xDD } }, - { AV_CODEC_ID_MP2, { 0x2B, 0x80, 0x6D, 0xE0, 0x46, 0xDB, 0xCF, 0x11, 0xB4, 0xD1, 0x00, 0x80, 0x5F, 0x6C, 0xBB, 0xEA } }, - { AV_CODEC_ID_NONE } -}; - void ff_get_guid(AVIOContext *s, ff_asf_guid *g) { av_assert0(sizeof(*g) == 16); //compiler will optimize this out |