Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/rsodec.c')
-rw-r--r--libavformat/rsodec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/rsodec.c b/libavformat/rsodec.c
index e07d5f5179..7a22217a63 100644
--- a/libavformat/rsodec.c
+++ b/libavformat/rsodec.c
@@ -32,7 +32,7 @@ static int rso_read_header(AVFormatContext *s)
AVIOContext *pb = s->pb;
int id, rate, bps;
unsigned int size;
- enum CodecID codec;
+ enum AVCodecID codec;
AVStream *st;
id = avio_rb16(pb);
@@ -42,7 +42,7 @@ static int rso_read_header(AVFormatContext *s)
codec = ff_codec_get_id(ff_codec_rso_tags, id);
- if (codec == CODEC_ID_ADPCM_IMA_WAV) {
+ if (codec == AV_CODEC_ID_ADPCM_IMA_WAV) {
av_log(s, AV_LOG_ERROR, "ADPCM in RSO not implemented\n");
return AVERROR_PATCHWELCOME;
}