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/ivi_common.c | |
parent | d4f05ae3b6cb7707bcbe097a846e5dff8c8b28cd (diff) | |
download | ffmpeg-3dde147ff92764b907db49b5237df7fd26359444.tar.gz |
cosmetics: Consistently place static, inline and av_cold attributes/keywords.
Diffstat (limited to 'libavcodec/ivi_common.c')
-rw-r--r-- | libavcodec/ivi_common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ivi_common.c b/libavcodec/ivi_common.c index 670be5e7f2..b930e1517d 100644 --- a/libavcodec/ivi_common.c +++ b/libavcodec/ivi_common.c @@ -164,7 +164,7 @@ void ff_ivi_huff_desc_copy(IVIHuffDesc *dst, const IVIHuffDesc *src) memcpy(dst->xbits, src->xbits, src->num_rows); } -int av_cold ff_ivi_init_planes(IVIPlaneDesc *planes, const IVIPicConfig *cfg) +av_cold int ff_ivi_init_planes(IVIPlaneDesc *planes, const IVIPicConfig *cfg) { int p, b; uint32_t b_width, b_height, align_fac, width_aligned, height_aligned, buf_size; @@ -226,7 +226,7 @@ int av_cold ff_ivi_init_planes(IVIPlaneDesc *planes, const IVIPicConfig *cfg) return 0; } -void av_cold ff_ivi_free_buffers(IVIPlaneDesc *planes) +av_cold void ff_ivi_free_buffers(IVIPlaneDesc *planes) { int p, b, t; @@ -246,7 +246,7 @@ void av_cold ff_ivi_free_buffers(IVIPlaneDesc *planes) } } -int av_cold ff_ivi_init_tiles(IVIPlaneDesc *planes, int tile_width, int tile_height) +av_cold int ff_ivi_init_tiles(IVIPlaneDesc *planes, int tile_width, int tile_height) { int p, b, x, y, x_tiles, y_tiles, t_width, t_height; IVIBandDesc *band; |