Commit 4b81366b authored by Diego Biurrun's avatar Diego Biurrun

Add av_cold attribute to init function.

Originally committed as revision 17082 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 27030ee4
...@@ -1022,7 +1022,7 @@ static void dump_cook_context(COOKContext *q) ...@@ -1022,7 +1022,7 @@ static void dump_cook_context(COOKContext *q)
* @param avctx pointer to the AVCodecContext * @param avctx pointer to the AVCodecContext
*/ */
static int cook_decode_init(AVCodecContext *avctx) static av_cold int cook_decode_init(AVCodecContext *avctx)
{ {
COOKContext *q = avctx->priv_data; COOKContext *q = avctx->priv_data;
const uint8_t *edata_ptr = avctx->extradata; const uint8_t *edata_ptr = avctx->extradata;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment