diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-10-16 07:55:57 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-10-16 07:55:57 +0000 |
commit | c76911bd658377003293f65e3f83aed59029c624 (patch) | |
tree | 6c40e4d0f9966e61a724e23aff4adf22ff5abb06 /libavformat/dvenc.c | |
parent | 046c40010390af94bf3379f7e1eff9b5a5ddd250 (diff) | |
download | ffmpeg-c76911bd658377003293f65e3f83aed59029c624.tar.gz |
Split parts of dvdata.h into dvdata.c, this ensures that things like
work_chunks_* and dv_idct_factor_* variables appear only once in the binary
instead of 3 times.
Saves 3264 bytes in .rodata and 312416 bytes in .bss on x86_64.
Originally committed as revision 20246 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/dvenc.c')
-rw-r--r-- | libavformat/dvenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dvenc.c b/libavformat/dvenc.c index c87697dd13..351062b76a 100644 --- a/libavformat/dvenc.c +++ b/libavformat/dvenc.c @@ -321,7 +321,7 @@ DVMuxContext* dv_init_mux(AVFormatContext* s) c->ast[i]->codec->channels != 2)) goto bail_out; } - c->sys = dv_codec_profile(vst->codec); + c->sys = ff_dv_codec_profile(vst->codec); if (!c->sys) goto bail_out; |