diff options
author | Mans Rullgard <mans@mansr.com> | 2011-07-20 18:41:37 +0100 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-07-21 02:13:03 +0100 |
commit | b04997839786c56e5000569d0192fa629e2d3a76 (patch) | |
tree | 5f14eb3945f6f09d94ea0a1ea91afa5d7960d15d /libavcodec/dnxhdenc.c | |
parent | 1073823984cf2938896fa30f9cc3d25640bbc19a (diff) | |
download | ffmpeg-b04997839786c56e5000569d0192fa629e2d3a76.tar.gz |
dnxhdenc: remove inline from function only called through pointer
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/dnxhdenc.c')
-rw-r--r-- | libavcodec/dnxhdenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c index 58698a48ab..b65d0bf669 100644 --- a/libavcodec/dnxhdenc.c +++ b/libavcodec/dnxhdenc.c @@ -41,7 +41,7 @@ static const AVClass class = { "dnxhd", av_default_item_name, options, LIBAVUTIL #define LAMBDA_FRAC_BITS 10 -static av_always_inline void dnxhd_get_pixels_8x4(DCTELEM *restrict block, const uint8_t *pixels, int line_size) +static void dnxhd_get_pixels_8x4(DCTELEM *restrict block, const uint8_t *pixels, int line_size) { int i; for (i = 0; i < 4; i++) { |