|
|
|
@ -4628,45 +4628,3 @@ const AVCodec ff_h263p_encoder = { |
|
|
|
|
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE }, |
|
|
|
|
.priv_class = &h263p_class, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const AVCodec ff_msmpeg4v2_encoder = { |
|
|
|
|
.name = "msmpeg4v2", |
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("MPEG-4 part 2 Microsoft variant version 2"), |
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO, |
|
|
|
|
.id = AV_CODEC_ID_MSMPEG4V2, |
|
|
|
|
.priv_class = &ff_mpv_enc_class, |
|
|
|
|
.priv_data_size = sizeof(MpegEncContext), |
|
|
|
|
.init = ff_mpv_encode_init, |
|
|
|
|
.encode2 = ff_mpv_encode_picture, |
|
|
|
|
.close = ff_mpv_encode_end, |
|
|
|
|
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP, |
|
|
|
|
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE }, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const AVCodec ff_msmpeg4v3_encoder = { |
|
|
|
|
.name = "msmpeg4", |
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("MPEG-4 part 2 Microsoft variant version 3"), |
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO, |
|
|
|
|
.id = AV_CODEC_ID_MSMPEG4V3, |
|
|
|
|
.priv_class = &ff_mpv_enc_class, |
|
|
|
|
.priv_data_size = sizeof(MpegEncContext), |
|
|
|
|
.init = ff_mpv_encode_init, |
|
|
|
|
.encode2 = ff_mpv_encode_picture, |
|
|
|
|
.close = ff_mpv_encode_end, |
|
|
|
|
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP, |
|
|
|
|
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE }, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
const AVCodec ff_wmv1_encoder = { |
|
|
|
|
.name = "wmv1", |
|
|
|
|
.long_name = NULL_IF_CONFIG_SMALL("Windows Media Video 7"), |
|
|
|
|
.type = AVMEDIA_TYPE_VIDEO, |
|
|
|
|
.id = AV_CODEC_ID_WMV1, |
|
|
|
|
.priv_class = &ff_mpv_enc_class, |
|
|
|
|
.priv_data_size = sizeof(MpegEncContext), |
|
|
|
|
.init = ff_mpv_encode_init, |
|
|
|
|
.encode2 = ff_mpv_encode_picture, |
|
|
|
|
.close = ff_mpv_encode_end, |
|
|
|
|
.caps_internal = FF_CODEC_CAP_INIT_THREADSAFE | FF_CODEC_CAP_INIT_CLEANUP, |
|
|
|
|
.pix_fmts = (const enum AVPixelFormat[]){ AV_PIX_FMT_YUV420P, AV_PIX_FMT_NONE }, |
|
|
|
|
}; |
|
|
|
|