summaryrefslogtreecommitdiff
path: root/libavformat/swf.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/swf.c
parente0aa5e772bbe4c52182a5db321b0da6b98205ef1 (diff)
swf(dec): replace CODEC_ID with AV_CODEC_ID
Diffstat (limited to 'libavformat/swf.c')
-rw-r--r--libavformat/swf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/swf.c b/libavformat/swf.c
index 1762991d2b..e6adf69c02 100644
--- a/libavformat/swf.c
+++ b/libavformat/swf.c
@@ -23,7 +23,7 @@
#include "internal.h"
const AVCodecTag ff_swf_codec_tags[] = {
- { CODEC_ID_FLV1, 0x02 },
- { CODEC_ID_VP6F, 0x04 },
- { CODEC_ID_NONE, 0 },
+ { AV_CODEC_ID_FLV1, 0x02 },
+ { AV_CODEC_ID_VP6F, 0x04 },
+ { AV_CODEC_ID_NONE, 0 },
};