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/swfenc.c | |
parent | 2804ba6a3b862be37986b9c2be3bad6bf4ccb6c7 (diff) | |
download | ffmpeg-90f7e6176938487a77b8b4cdc8b4eaeeaca3e094.tar.gz |
swf: Move shared table out of the header file
Diffstat (limited to 'libavformat/swfenc.c')
-rw-r--r-- | libavformat/swfenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/swfenc.c b/libavformat/swfenc.c index 65ffe261fe..19166503e8 100644 --- a/libavformat/swfenc.c +++ b/libavformat/swfenc.c @@ -347,7 +347,7 @@ static int swf_write_video(AVFormatContext *s, avio_wl16(pb, enc->width); avio_wl16(pb, enc->height); avio_w8(pb, 0); - avio_w8(pb,ff_codec_get_tag(swf_codec_tags,enc->codec_id)); + avio_w8(pb,ff_codec_get_tag(ff_swf_codec_tags, enc->codec_id)); put_swf_end_tag(s); /* place the video object for the first time */ |