Commit d236cc71 authored by michael's avatar michael

Disable encoders patch by (Gianluigi Tiesi <mplayer netfarm it>)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3797 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d24eed45
...@@ -1013,6 +1013,7 @@ static int h261_decode_end(AVCodecContext *avctx) ...@@ -1013,6 +1013,7 @@ static int h261_decode_end(AVCodecContext *avctx)
return 0; return 0;
} }
#ifdef CONFIG_ENCODERS
AVCodec h261_encoder = { AVCodec h261_encoder = {
"h261", "h261",
CODEC_TYPE_VIDEO, CODEC_TYPE_VIDEO,
...@@ -1022,6 +1023,7 @@ AVCodec h261_encoder = { ...@@ -1022,6 +1023,7 @@ AVCodec h261_encoder = {
MPV_encode_picture, MPV_encode_picture,
MPV_encode_end, MPV_encode_end,
}; };
#endif
AVCodec h261_decoder = { AVCodec h261_decoder = {
"h261", "h261",
......
...@@ -3005,6 +3005,7 @@ AVCodec snow_decoder = { ...@@ -3005,6 +3005,7 @@ AVCodec snow_decoder = {
NULL NULL
}; };
#ifdef CONFIG_ENCODERS
AVCodec snow_encoder = { AVCodec snow_encoder = {
"snow", "snow",
CODEC_TYPE_VIDEO, CODEC_TYPE_VIDEO,
...@@ -3014,6 +3015,7 @@ AVCodec snow_encoder = { ...@@ -3014,6 +3015,7 @@ AVCodec snow_encoder = {
encode_frame, encode_frame,
encode_end, encode_end,
}; };
#endif
#if 0 #if 0
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment