OSDN Git Service

dnxhdenc: remove inline from function only called through pointer
authorMans Rullgard <mans@mansr.com>
Wed, 20 Jul 2011 17:41:37 +0000 (18:41 +0100)
committerMans Rullgard <mans@mansr.com>
Thu, 21 Jul 2011 01:13:03 +0000 (02:13 +0100)
Signed-off-by: Mans Rullgard <mans@mansr.com>
libavcodec/dnxhdenc.c

index 58698a4..b65d0bf 100644 (file)
@@ -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++) {