diff libtheoraenc.c @ 11560:8a4984c5cacc libavcodec

Define AVMediaType enum, and use it instead of enum CodecType, which is deprecated and will be dropped at the next major bump.
author stefano
date Tue, 30 Mar 2010 23:30:55 +0000
parents d569841bd1b7
children 92236ee7be0f
line wrap: on
line diff
--- a/libtheoraenc.c	Tue Mar 30 22:09:14 2010 +0000
+++ b/libtheoraenc.c	Tue Mar 30 23:30:55 2010 +0000
@@ -361,7 +361,7 @@
 /*! AVCodec struct exposed to libavcodec */
 AVCodec libtheora_encoder = {
     .name = "libtheora",
-    .type = CODEC_TYPE_VIDEO,
+    .type = AVMEDIA_TYPE_VIDEO,
     .id = CODEC_ID_THEORA,
     .priv_data_size = sizeof(TheoraContext),
     .init = encode_init,