summaryrefslogtreecommitdiff
path: root/libavcodec/utvideoenc.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-09-11 17:08:05 +0200
committerDiego Biurrun <diego@biurrun.de>2012-09-11 17:40:38 +0200
commit76fa7e09f18d5efa6b9c8ec5ef8d032a85e15865 (patch)
tree6e6a6dd65a5c36bef1054bfaf783d73a0819578c /libavcodec/utvideoenc.c
parent676ea8fae217af95d8bf29dada15c755b40d3d86 (diff)
utvideoenc: Add missing AV_ prefix to codec ID
Diffstat (limited to 'libavcodec/utvideoenc.c')
-rw-r--r--libavcodec/utvideoenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utvideoenc.c b/libavcodec/utvideoenc.c
index 335e79b4a8..18bdec56a4 100644
--- a/libavcodec/utvideoenc.c
+++ b/libavcodec/utvideoenc.c
@@ -614,7 +614,7 @@ static int utvideo_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
AVCodec ff_utvideo_encoder = {
.name = "utvideo",
.type = AVMEDIA_TYPE_VIDEO,
- .id = CODEC_ID_UTVIDEO,
+ .id = AV_CODEC_ID_UTVIDEO,
.priv_data_size = sizeof(UtvideoContext),
.init = utvideo_encode_init,
.encode2 = utvideo_encode_frame,