mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-06 07:40:00 +08:00
Merge remote-tracking branch 'qatar/master'
* qatar/master: mxfdec: Include FF_INPUT_BUFFER_PADDING_SIZE when allocating extradata. H.264: tweak some other x86 asm for Atom probe: Fix insane flow control. mpegts: remove invalid error check s302m: use nondeprecated audio sample format API lavc: use designated initialisers for all codecs. x86: cabac: add operand size suffixes missing from 6c32576 Conflicts: libavcodec/ac3enc_float.c libavcodec/flacenc.c libavcodec/frwu.c libavcodec/pictordec.c libavcodec/qtrleenc.c libavcodec/v210enc.c libavcodec/wmv2dec.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -546,15 +546,14 @@ static int vp8_encode(AVCodecContext *avctx, uint8_t *buf, int buf_size,
|
||||
}
|
||||
|
||||
AVCodec ff_libvpx_encoder = {
|
||||
"libvpx",
|
||||
AVMEDIA_TYPE_VIDEO,
|
||||
CODEC_ID_VP8,
|
||||
sizeof(VP8Context),
|
||||
vp8_init,
|
||||
vp8_encode,
|
||||
vp8_free,
|
||||
NULL,
|
||||
CODEC_CAP_DELAY,
|
||||
.name = "libvpx",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.id = CODEC_ID_VP8,
|
||||
.priv_data_size = sizeof(VP8Context),
|
||||
.init = vp8_init,
|
||||
.encode = vp8_encode,
|
||||
.close = vp8_free,
|
||||
.capabilities = CODEC_CAP_DELAY,
|
||||
.pix_fmts = (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
|
||||
.long_name = NULL_IF_CONFIG_SMALL("libvpx VP8"),
|
||||
.priv_class= &class,
|
||||
|
Reference in New Issue
Block a user