diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-09-11 17:08:05 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-09-11 17:40:38 +0200 |
commit | 76fa7e09f18d5efa6b9c8ec5ef8d032a85e15865 (patch) | |
tree | 6e6a6dd65a5c36bef1054bfaf783d73a0819578c /libavcodec | |
parent | 676ea8fae217af95d8bf29dada15c755b40d3d86 (diff) | |
download | ffmpeg-76fa7e09f18d5efa6b9c8ec5ef8d032a85e15865.tar.gz |
utvideoenc: Add missing AV_ prefix to codec ID
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/utvideoenc.c | 2 |
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, |