summaryrefslogtreecommitdiff
path: root/libavformat/swfdec.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-08-15 09:14:35 +0200
committerAnton Khirnov <anton@khirnov.net>2012-08-18 08:48:30 +0200
commit15c71dfd03a699a9ce503bf061d58b88ec49d860 (patch)
tree1955d4f98e9558a68776990d02c50c6d8b66bf9e /libavformat/swfdec.c
parente0aa5e772bbe4c52182a5db321b0da6b98205ef1 (diff)
swf(dec): replace CODEC_ID with AV_CODEC_ID
Diffstat (limited to 'libavformat/swfdec.c')
-rw-r--r--libavformat/swfdec.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c
index 09770f4f4a..6a923f307d 100644
--- a/libavformat/swfdec.c
+++ b/libavformat/swfdec.c
@@ -24,12 +24,12 @@
#include "swf.h"
static const AVCodecTag swf_audio_codec_tags[] = {
- { CODEC_ID_PCM_S16LE, 0x00 },
- { CODEC_ID_ADPCM_SWF, 0x01 },
- { CODEC_ID_MP3, 0x02 },
- { CODEC_ID_PCM_S16LE, 0x03 },
-// { CODEC_ID_NELLYMOSER, 0x06 },
- { CODEC_ID_NONE, 0 },
+ { AV_CODEC_ID_PCM_S16LE, 0x00 },
+ { AV_CODEC_ID_ADPCM_SWF, 0x01 },
+ { AV_CODEC_ID_MP3, 0x02 },
+ { AV_CODEC_ID_PCM_S16LE, 0x03 },
+// { AV_CODEC_ID_NELLYMOSER, 0x06 },
+ { AV_CODEC_ID_NONE, 0 },
};
static int get_swf_tag(AVIOContext *pb, int *len_ptr)