comparison mace.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 f838213ca91b
children a4104482ceef
comparison
equal deleted inserted replaced
6516:dbb902bb2347 6517:48759bfbd073
390 } 390 }
391 */ 391 */
392 } 392 }
393 /* \\\ */ 393 /* \\\ */
394 394
395 static int mace_decode_init(AVCodecContext * avctx) 395 static av_cold int mace_decode_init(AVCodecContext * avctx)
396 { 396 {
397 if (avctx->channels > 2) 397 if (avctx->channels > 2)
398 return -1; 398 return -1;
399 return 0; 399 return 0;
400 } 400 }