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/rv30dsp.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/rv30dsp.c')
-rw-r--r-- | libavcodec/rv30dsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv30dsp.c b/libavcodec/rv30dsp.c index c0509ea650..bf2dc18b8a 100644 --- a/libavcodec/rv30dsp.c +++ b/libavcodec/rv30dsp.c @@ -251,7 +251,7 @@ RV30_MC(put_, 16) RV30_MC(avg_, 8) RV30_MC(avg_, 16) -void ff_rv30dsp_init(DSPContext* c, AVCodecContext *avctx) { +av_cold void ff_rv30dsp_init(DSPContext* c, AVCodecContext *avctx) { c->put_rv30_tpel_pixels_tab[0][ 0] = c->put_h264_qpel_pixels_tab[0][0]; c->put_rv30_tpel_pixels_tab[0][ 1] = put_rv30_tpel16_mc10_c; c->put_rv30_tpel_pixels_tab[0][ 2] = put_rv30_tpel16_mc20_c; |