[FFmpeg-cvslog] dnxhdenc: remove inline from function only called through pointer

Mans Rullgard git at videolan.org
Thu Jul 21 16:54:43 CEST 2011


ffmpeg | branch: master | Mans Rullgard <mans at mansr.com> | Wed Jul 20 18:41:37 2011 +0100| [b04997839786c56e5000569d0192fa629e2d3a76] | committer: Mans Rullgard

dnxhdenc: remove inline from function only called through pointer

Signed-off-by: Mans Rullgard <mans at mansr.com>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b04997839786c56e5000569d0192fa629e2d3a76
---

 libavcodec/dnxhdenc.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/dnxhdenc.c b/libavcodec/dnxhdenc.c
index 58698a4..b65d0bf 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++) {



More information about the ffmpeg-cvslog mailing list