comparison truespeech.c @ 6517:48759bfbd073 libavcodec

Apply 'cold' attribute to init/uninit functions in libavcodec
author zuxy
date Fri, 21 Mar 2008 03:11:20 +0000
parents 5b44e0210dad
children a4104482ceef
comparison
equal deleted inserted replaced
6516:dbb902bb2347 6517:48759bfbd073
48 int filtval; // gain value for one function 48 int filtval; // gain value for one function
49 int16_t newvec[60]; // tmp vector 49 int16_t newvec[60]; // tmp vector
50 int16_t filters[32]; // filters for every subframe 50 int16_t filters[32]; // filters for every subframe
51 } TSContext; 51 } TSContext;
52 52
53 static int truespeech_decode_init(AVCodecContext * avctx) 53 static av_cold int truespeech_decode_init(AVCodecContext * avctx)
54 { 54 {
55 // TSContext *c = avctx->priv_data; 55 // TSContext *c = avctx->priv_data;
56 56
57 return 0; 57 return 0;
58 } 58 }