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/h264.c | |
parent | d4f05ae3b6cb7707bcbe097a846e5dff8c8b28cd (diff) | |
download | ffmpeg-3dde147ff92764b907db49b5237df7fd26359444.tar.gz |
cosmetics: Consistently place static, inline and av_cold attributes/keywords.
Diffstat (limited to 'libavcodec/h264.c')
-rw-r--r-- | libavcodec/h264.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 3b1fdb2ccf..fe11686941 100644 --- a/libavcodec/h264.c +++ b/libavcodec/h264.c @@ -2424,17 +2424,17 @@ hl_decode_mb_simple(1, 16) /** * Process a macroblock; this handles edge cases, such as interlacing. */ -static void av_noinline hl_decode_mb_complex(H264Context *h) +static av_noinline void hl_decode_mb_complex(H264Context *h) { hl_decode_mb_internal(h, 0, h->pixel_shift); } -static void av_noinline hl_decode_mb_444_complex(H264Context *h) +static av_noinline void hl_decode_mb_444_complex(H264Context *h) { hl_decode_mb_444_internal(h, 0, h->pixel_shift); } -static void av_noinline hl_decode_mb_444_simple(H264Context *h) +static av_noinline void hl_decode_mb_444_simple(H264Context *h) { hl_decode_mb_444_internal(h, 1, 0); } |