diff options
author | Zuxy Meng <zuxy.meng@gmail.com> | 2010-01-13 02:16:00 +0000 |
---|---|---|
committer | Zuxy Meng <zuxy.meng@gmail.com> | 2010-01-13 02:16:00 +0000 |
commit | 0752cd39d27d08cb9530a0450bfa8e54913bfa69 (patch) | |
tree | 0a96d715f883577b1bd1775f09700ac92fa25253 /libavcodec/vc1dsp.c | |
parent | e1e949026ec552b206306da00bf90fc797542fe5 (diff) | |
download | ffmpeg-0752cd39d27d08cb9530a0450bfa8e54913bfa69.tar.gz |
More av_cold for infrequently called functions.
Originally committed as revision 21179 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1dsp.c')
-rw-r--r-- | libavcodec/vc1dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vc1dsp.c b/libavcodec/vc1dsp.c index 5e79736a50..85896dbdde 100644 --- a/libavcodec/vc1dsp.c +++ b/libavcodec/vc1dsp.c @@ -612,7 +612,7 @@ PUT_VC1_MSPEL(1, 3) PUT_VC1_MSPEL(2, 3) PUT_VC1_MSPEL(3, 3) -void ff_vc1dsp_init(DSPContext* dsp, AVCodecContext *avctx) { +av_cold void ff_vc1dsp_init(DSPContext* dsp, AVCodecContext *avctx) { dsp->vc1_inv_trans_8x8 = vc1_inv_trans_8x8_c; dsp->vc1_inv_trans_4x8 = vc1_inv_trans_4x8_c; dsp->vc1_inv_trans_8x4 = vc1_inv_trans_8x4_c; |