diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-08-08 15:54:02 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-08-09 20:05:54 +0200 |
commit | 90f7e6176938487a77b8b4cdc8b4eaeeaca3e094 (patch) | |
tree | 543b43d9e22a9fb409630593a475226c8d86131a /libavformat/swf.h | |
parent | 2804ba6a3b862be37986b9c2be3bad6bf4ccb6c7 (diff) | |
download | ffmpeg-90f7e6176938487a77b8b4cdc8b4eaeeaca3e094.tar.gz |
swf: Move shared table out of the header file
Diffstat (limited to 'libavformat/swf.h')
-rw-r--r-- | libavformat/swf.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/libavformat/swf.h b/libavformat/swf.h index 10a05f51b3..b1e477b828 100644 --- a/libavformat/swf.h +++ b/libavformat/swf.h @@ -78,10 +78,6 @@ typedef struct { AVCodecContext *audio_enc, *video_enc; } SWFContext; -static const AVCodecTag swf_codec_tags[] = { - { AV_CODEC_ID_FLV1, 0x02}, - { AV_CODEC_ID_VP6F, 0x04}, - { AV_CODEC_ID_NONE, 0}, -}; +extern const AVCodecTag ff_swf_codec_tags[]; #endif /* AVFORMAT_SWF_H */ |