From 88434f9725e7c9484dcbcf323566ae88a2904f32 Mon Sep 17 00:00:00 2001 From: Martin Storsjö Date: Tue, 24 Feb 2015 12:56:51 +0200 Subject: rtpdec: Remove unnecessary inline attributes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These functions are far from performance critical, so there's no point in marking them as inline. Signed-off-by: Martin Storsjö --- libavformat/rtpdec_jpeg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/rtpdec_jpeg.c') diff --git a/libavformat/rtpdec_jpeg.c b/libavformat/rtpdec_jpeg.c index 68ce6d8c8e..b49185a751 100644 --- a/libavformat/rtpdec_jpeg.c +++ b/libavformat/rtpdec_jpeg.c @@ -59,7 +59,7 @@ static const uint8_t default_quantizers[128] = { 99, 99, 99, 99, 99, 99, 99, 99 }; -static inline void free_frame(PayloadContext *jpeg) +static void free_frame(PayloadContext *jpeg) { if (jpeg->frame) { uint8_t *p; -- cgit v1.2.3