diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-03-30 23:34:22 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-04-04 14:54:13 +0200 |
commit | 3dde147ff92764b907db49b5237df7fd26359444 (patch) | |
tree | 0dc29e3d99bbed3ef427cc4892b8cc70594df959 /libavcodec/aacdec.c | |
parent | d4f05ae3b6cb7707bcbe097a846e5dff8c8b28cd (diff) | |
download | ffmpeg-3dde147ff92764b907db49b5237df7fd26359444.tar.gz |
cosmetics: Consistently place static, inline and av_cold attributes/keywords.
Diffstat (limited to 'libavcodec/aacdec.c')
-rw-r--r-- | libavcodec/aacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacdec.c b/libavcodec/aacdec.c index 3038e9a1c8..90840b5e87 100644 --- a/libavcodec/aacdec.c +++ b/libavcodec/aacdec.c @@ -2760,7 +2760,7 @@ static int latm_decode_frame(AVCodecContext *avctx, void *out, return muxlength; } -av_cold static int latm_decode_init(AVCodecContext *avctx) +static av_cold int latm_decode_init(AVCodecContext *avctx) { struct LATMContext *latmctx = avctx->priv_data; int ret = aac_decode_init(avctx); |