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/qcp.c')
-rw-r--r--libavformat/qcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/qcp.c b/libavformat/qcp.c
index 4d91c05e6e..11fc71a466 100644
--- a/libavformat/qcp.c
+++ b/libavformat/qcp.c
@@ -98,7 +98,7 @@ static int qcp_read_header(AVFormatContext *s)
st->codec->channels = 1;
avio_read(pb, buf, 16);
if (is_qcelp_13k_guid(buf)) {
- st->codec->codec_id = CODEC_ID_QCELP;
+ st->codec->codec_id = AV_CODEC_ID_QCELP;
} else if (!memcmp(buf, guid_evrc, 16)) {
av_log(s, AV_LOG_ERROR, "EVRC codec is not supported.\n");
return AVERROR_PATCHWELCOME;