summaryrefslogtreecommitdiff
path: root/libavformat/rtpdec_mpa_robust.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-02-24 23:44:41 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-02-24 23:44:45 +0100
commit99c76902cdc3f815d58ba16ccfc83e75acec1f4a (patch)
tree61fbd2218434bd105f185a6e5a78ce377f5269f0 /libavformat/rtpdec_mpa_robust.c
parentd2a5c6f2104db563491be0d16b722a1f7bbe65e4 (diff)
parent88434f9725e7c9484dcbcf323566ae88a2904f32 (diff)
downloadffmpeg-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_mpa_robust.c')
-rw-r--r--libavformat/rtpdec_mpa_robust.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtpdec_mpa_robust.c b/libavformat/rtpdec_mpa_robust.c
index 447a1abc32..cbdfb58f09 100644
--- a/libavformat/rtpdec_mpa_robust.c
+++ b/libavformat/rtpdec_mpa_robust.c
@@ -33,7 +33,7 @@ struct PayloadContext {
AVIOContext *fragment;
};
-static inline void free_fragment(PayloadContext *data)
+static void free_fragment(PayloadContext *data)
{
if (data->fragment) {
uint8_t *p;