comparison h264dspenc.c @ 10867:bf309c7ce615 libavcodec

More av_cold for infrequently called functions.
author zuxy
date Wed, 13 Jan 2010 02:16:00 +0000
parents e9d9d946f213
children 7dd2a45249a9
comparison
equal deleted inserted replaced
10866:d26e9b4d2ca1 10867:bf309c7ce615
69 H264_DCT_PART2(1); 69 H264_DCT_PART2(1);
70 H264_DCT_PART2(2); 70 H264_DCT_PART2(2);
71 H264_DCT_PART2(3); 71 H264_DCT_PART2(3);
72 } 72 }
73 73
74 void ff_h264dspenc_init(DSPContext* c, AVCodecContext *avctx) 74 av_cold void ff_h264dspenc_init(DSPContext* c, AVCodecContext *avctx)
75 { 75 {
76 c->h264_dct = h264_dct_c; 76 c->h264_dct = h264_dct_c;
77 } 77 }
78 78