comparison vp3.c @ 4342:26780fdda85a libavcodec

Unconditionally enable Theora decoder. It works fine now and there is no Theora support through libtheora in FFmpeg.
author diego
date Wed, 10 Jan 2007 14:19:33 +0000
parents 34fdffe98bd0
children 726deec26122
comparison
equal deleted inserted replaced
4341:5053e6b3ea45 4342:26780fdda85a
2641 vp3_decode_frame, 2641 vp3_decode_frame,
2642 0, 2642 0,
2643 NULL 2643 NULL
2644 }; 2644 };
2645 2645
2646 #ifndef CONFIG_LIBTHEORA
2647 AVCodec theora_decoder = { 2646 AVCodec theora_decoder = {
2648 "theora", 2647 "theora",
2649 CODEC_TYPE_VIDEO, 2648 CODEC_TYPE_VIDEO,
2650 CODEC_ID_THEORA, 2649 CODEC_ID_THEORA,
2651 sizeof(Vp3DecodeContext), 2650 sizeof(Vp3DecodeContext),
2654 vp3_decode_end, 2653 vp3_decode_end,
2655 vp3_decode_frame, 2654 vp3_decode_frame,
2656 0, 2655 0,
2657 NULL 2656 NULL
2658 }; 2657 };
2659 #endif