mirror of https://git.ffmpeg.org/ffmpeg.git
Move forgotton "AVCodec flv_encoder" over to flvenc.c.
Originally committed as revision 21052 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a0b0d75368
commit
6a14a15722
|
@ -82,3 +82,15 @@ void ff_flv2_encode_ac_esc(PutBitContext *pb, int slevel, int level, int run, in
|
|||
put_sbits(pb, 11, slevel);
|
||||
}
|
||||
}
|
||||
|
||||
AVCodec flv_encoder = {
|
||||
"flv",
|
||||
CODEC_TYPE_VIDEO,
|
||||
CODEC_ID_FLV1,
|
||||
sizeof(MpegEncContext),
|
||||
MPV_encode_init,
|
||||
MPV_encode_picture,
|
||||
MPV_encode_end,
|
||||
.pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
|
||||
.long_name= NULL_IF_CONFIG_SMALL("Flash Video (FLV) / Sorenson Spark / Sorenson H.263"),
|
||||
};
|
||||
|
|
|
@ -3781,18 +3781,6 @@ AVCodec h263p_encoder = {
|
|||
.long_name= NULL_IF_CONFIG_SMALL("H.263+ / H.263-1998 / H.263 version 2"),
|
||||
};
|
||||
|
||||
AVCodec flv_encoder = {
|
||||
"flv",
|
||||
CODEC_TYPE_VIDEO,
|
||||
CODEC_ID_FLV1,
|
||||
sizeof(MpegEncContext),
|
||||
MPV_encode_init,
|
||||
MPV_encode_picture,
|
||||
MPV_encode_end,
|
||||
.pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
|
||||
.long_name= NULL_IF_CONFIG_SMALL("Flash Video (FLV) / Sorenson Spark / Sorenson H.263"),
|
||||
};
|
||||
|
||||
AVCodec mpeg4_encoder = {
|
||||
"mpeg4",
|
||||
CODEC_TYPE_VIDEO,
|
||||
|
|
Loading…
Reference in New Issue