Commit 99c76902 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '88434f97'

* commit '88434f97':
  rtpdec: Remove unnecessary inline attributes
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents d2a5c6f2 88434f97
...@@ -59,7 +59,7 @@ static const uint8_t default_quantizers[128] = { ...@@ -59,7 +59,7 @@ static const uint8_t default_quantizers[128] = {
99, 99, 99, 99, 99, 99, 99, 99 99, 99, 99, 99, 99, 99, 99, 99
}; };
static inline void free_frame(PayloadContext *jpeg) static void free_frame(PayloadContext *jpeg)
{ {
if (jpeg->frame) { if (jpeg->frame) {
uint8_t *p; uint8_t *p;
......
...@@ -33,7 +33,7 @@ struct PayloadContext { ...@@ -33,7 +33,7 @@ struct PayloadContext {
AVIOContext *fragment; AVIOContext *fragment;
}; };
static inline void free_fragment(PayloadContext *data) static void free_fragment(PayloadContext *data)
{ {
if (data->fragment) { if (data->fragment) {
uint8_t *p; uint8_t *p;
......
...@@ -49,7 +49,7 @@ struct PayloadContext { ...@@ -49,7 +49,7 @@ struct PayloadContext {
int split_pkts; int split_pkts;
}; };
static inline void free_fragment(PayloadContext * data) static void free_fragment(PayloadContext * data)
{ {
if (data->fragment) { if (data->fragment) {
uint8_t* p; uint8_t* p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment