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

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/vcr1.c')
-rw-r--r--libavcodec/vcr1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vcr1.c b/libavcodec/vcr1.c
index a5e1bc6577..5403c1be64 100644
--- a/libavcodec/vcr1.c
+++ b/libavcodec/vcr1.c
@@ -145,7 +145,7 @@ static int vcr1_decode_frame(AVCodecContext *avctx, void *data,
AVCodec ff_vcr1_decoder = {
.name = "vcr1",
.type = AVMEDIA_TYPE_VIDEO,
- .id = CODEC_ID_VCR1,
+ .id = AV_CODEC_ID_VCR1,
.priv_data_size = sizeof(VCR1Context),
.init = vcr1_decode_init,
.close = vcr1_decode_end,
@@ -185,7 +185,7 @@ static int vcr1_encode_frame(AVCodecContext *avctx, unsigned char *buf,
AVCodec ff_vcr1_encoder = {
.name = "vcr1",
.type = AVMEDIA_TYPE_VIDEO,
- .id = CODEC_ID_VCR1,
+ .id = AV_CODEC_ID_VCR1,
.priv_data_size = sizeof(VCR1Context),
.init = vcr1_common_init,
.encode = vcr1_encode_frame,