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:
commit
faba79e080
202 changed files with 1882 additions and 2171 deletions
|
|
@ -406,13 +406,11 @@ static int mpc8_decode_frame(AVCodecContext * avctx,
|
|||
}
|
||||
|
||||
AVCodec ff_mpc8_decoder = {
|
||||
"mpc8",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
CODEC_ID_MUSEPACK8,
|
||||
sizeof(MPCContext),
|
||||
mpc8_decode_init,
|
||||
NULL,
|
||||
NULL,
|
||||
mpc8_decode_frame,
|
||||
.name = "mpc8",
|
||||
.type = AVMEDIA_TYPE_AUDIO,
|
||||
.id = CODEC_ID_MUSEPACK8,
|
||||
.priv_data_size = sizeof(MPCContext),
|
||||
.init = mpc8_decode_init,
|
||||
.decode = mpc8_decode_frame,
|
||||
.long_name = NULL_IF_CONFIG_SMALL("Musepack SV8"),
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue