Browse Source

oggdec: fix warning: assignment discards qualifiers from pointer target type

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.1
Michael Niedermayer 12 years ago
parent
commit
ec40d15d82
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/oggdec.c

+ 1
- 1
libavformat/oggdec.c View File

@@ -174,7 +174,7 @@ static int ogg_replace_stream(AVFormatContext *s, uint32_t serial)
struct ogg_stream *os;
unsigned bufsize;
uint8_t *buf;
struct ogg_codec *codec;
const struct ogg_codec *codec;

if (ogg->nstreams != 1) {
av_log_missing_feature(s, "Changing stream parameters in multistream ogg", 0);


Loading…
Cancel
Save