Browse Source

Merge commit '88434f9725e7c9484dcbcf323566ae88a2904f32'

* commit '88434f9725e7c9484dcbcf323566ae88a2904f32':
  rtpdec: Remove unnecessary inline attributes

Merged-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Michael Niedermayer 11 years ago
parent
commit
99c76902cd
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      libavformat/rtpdec_jpeg.c
  2. +1
    -1
      libavformat/rtpdec_mpa_robust.c
  3. +1
    -1
      libavformat/rtpdec_xiph.c

+ 1
- 1
libavformat/rtpdec_jpeg.c View File

@@ -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;


+ 1
- 1
libavformat/rtpdec_mpa_robust.c View File

@@ -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;


+ 1
- 1
libavformat/rtpdec_xiph.c View File

@@ -49,7 +49,7 @@ struct PayloadContext {
int split_pkts;
};

static inline void free_fragment(PayloadContext * data)
static void free_fragment(PayloadContext * data)
{
if (data->fragment) {
uint8_t* p;


Loading…
Cancel
Save