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:
@@ -509,14 +509,13 @@ static av_cold int lag_decode_end(AVCodecContext *avctx)
|
||||
}
|
||||
|
||||
AVCodec ff_lagarith_decoder = {
|
||||
"lagarith",
|
||||
AVMEDIA_TYPE_VIDEO,
|
||||
CODEC_ID_LAGARITH,
|
||||
sizeof(LagarithContext),
|
||||
lag_decode_init,
|
||||
NULL,
|
||||
lag_decode_end,
|
||||
lag_decode_frame,
|
||||
CODEC_CAP_DR1,
|
||||
.name = "lagarith",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.id = CODEC_ID_LAGARITH,
|
||||
.priv_data_size = sizeof(LagarithContext),
|
||||
.init = lag_decode_init,
|
||||
.close = lag_decode_end,
|
||||
.decode = lag_decode_frame,
|
||||
.capabilities = CODEC_CAP_DR1,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Lagarith lossless"),
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user