summaryrefslogtreecommitdiff
path: root/libavformat/riff.c
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2014-01-29 00:44:59 +0100
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2014-01-29 00:44:59 +0100
commit862174ec831d5fb01c44e8e3f7d3cd28002329bf (patch)
tree32c81a8d2afc72f98b8b9de64968287b1dee921a /libavformat/riff.c
parent4151b9953e2386da24fe6b65c4fc02fe3d1da948 (diff)
Move GUID-related objects to riffenc.c and riff.c.
This simplifies the following eac3-in-wav patch.
Diffstat (limited to 'libavformat/riff.c')
-rw-r--r--libavformat/riff.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libavformat/riff.c b/libavformat/riff.c
index 20030211c5..671baa6138 100644
--- a/libavformat/riff.c
+++ b/libavformat/riff.c
@@ -456,3 +456,11 @@ const struct AVCodecTag *avformat_get_riff_audio_tags(void)
{
return ff_codec_wav_tags;
}
+
+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 }
+};