summaryrefslogtreecommitdiff
path: root/libavformat/swfdec.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-08-08 15:54:02 +0200
committerDiego Biurrun <diego@biurrun.de>2012-08-09 20:05:54 +0200
commit90f7e6176938487a77b8b4cdc8b4eaeeaca3e094 (patch)
tree543b43d9e22a9fb409630593a475226c8d86131a /libavformat/swfdec.c
parent2804ba6a3b862be37986b9c2be3bad6bf4ccb6c7 (diff)
swf: Move shared table out of the header file
Diffstat (limited to 'libavformat/swfdec.c')
-rw-r--r--libavformat/swfdec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/swfdec.c b/libavformat/swfdec.c
index cef486c40f..09770f4f4a 100644
--- a/libavformat/swfdec.c
+++ b/libavformat/swfdec.c
@@ -120,7 +120,7 @@ static int swf_read_packet(AVFormatContext *s, AVPacket *pkt)
return -1;
vst->id = ch_id;
vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
- vst->codec->codec_id = ff_codec_get_id(swf_codec_tags, avio_r8(pb));
+ vst->codec->codec_id = ff_codec_get_id(ff_swf_codec_tags, avio_r8(pb));
avpriv_set_pts_info(vst, 16, 256, swf->frame_rate);
len -= 8;
} else if (tag == TAG_STREAMHEAD || tag == TAG_STREAMHEAD2) {