diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 23:44:41 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-24 23:44:45 +0100 |
commit | 99c76902cdc3f815d58ba16ccfc83e75acec1f4a (patch) | |
tree | 61fbd2218434bd105f185a6e5a78ce377f5269f0 /libavformat/rtpdec_jpeg.c | |
parent | d2a5c6f2104db563491be0d16b722a1f7bbe65e4 (diff) | |
parent | 88434f9725e7c9484dcbcf323566ae88a2904f32 (diff) | |
download | ffmpeg-99c76902cdc3f815d58ba16ccfc83e75acec1f4a.tar.gz |
Merge commit '88434f9725e7c9484dcbcf323566ae88a2904f32'
* commit '88434f9725e7c9484dcbcf323566ae88a2904f32':
rtpdec: Remove unnecessary inline attributes
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rtpdec_jpeg.c')
-rw-r--r-- | libavformat/rtpdec_jpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_jpeg.c b/libavformat/rtpdec_jpeg.c index 447ea2f6be..255351087f 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; |