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:
@ -248,15 +248,13 @@ static av_cold int pcx_end(AVCodecContext *avctx) {
|
||||
}
|
||||
|
||||
AVCodec ff_pcx_decoder = {
|
||||
"pcx",
|
||||
AVMEDIA_TYPE_VIDEO,
|
||||
CODEC_ID_PCX,
|
||||
sizeof(PCXContext),
|
||||
pcx_init,
|
||||
NULL,
|
||||
pcx_end,
|
||||
pcx_decode_frame,
|
||||
CODEC_CAP_DR1,
|
||||
NULL,
|
||||
.name = "pcx",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.id = CODEC_ID_PCX,
|
||||
.priv_data_size = sizeof(PCXContext),
|
||||
.init = pcx_init,
|
||||
.close = pcx_end,
|
||||
.decode = pcx_decode_frame,
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("PC Paintbrush PCX image"),
|
||||
};
|
||||
|
Reference in New Issue
Block a user