mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
Disable encoders patch by (Gianluigi Tiesi <mplayer netfarm it>)
Originally committed as revision 3797 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
119cebf429
commit
8ff53f5b07
@ -1013,6 +1013,7 @@ static int h261_decode_end(AVCodecContext *avctx)
|
||||
return 0;
|
||||
}
|
||||
|
||||
#ifdef CONFIG_ENCODERS
|
||||
AVCodec h261_encoder = {
|
||||
"h261",
|
||||
CODEC_TYPE_VIDEO,
|
||||
@ -1022,6 +1023,7 @@ AVCodec h261_encoder = {
|
||||
MPV_encode_picture,
|
||||
MPV_encode_end,
|
||||
};
|
||||
#endif
|
||||
|
||||
AVCodec h261_decoder = {
|
||||
"h261",
|
||||
|
@ -3005,6 +3005,7 @@ AVCodec snow_decoder = {
|
||||
NULL
|
||||
};
|
||||
|
||||
#ifdef CONFIG_ENCODERS
|
||||
AVCodec snow_encoder = {
|
||||
"snow",
|
||||
CODEC_TYPE_VIDEO,
|
||||
@ -3014,6 +3015,7 @@ AVCodec snow_encoder = {
|
||||
encode_frame,
|
||||
encode_end,
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
#if 0
|
||||
|
Loading…
Reference in New Issue
Block a user