mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-02-04 06:08:26 +02:00
alac: change some data types to plain int
This commit is contained in:
parent
2aebac6918
commit
bae83f2c74
@ -263,8 +263,8 @@ static void lpc_prediction(int32_t *error_buffer, int32_t *buffer_out,
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void decorrelate_stereo(int32_t *buffer[2],
|
static void decorrelate_stereo(int32_t *buffer[2],
|
||||||
int nb_samples, uint8_t decorr_shift,
|
int nb_samples, int decorr_shift,
|
||||||
uint8_t decorr_left_weight)
|
int decorr_left_weight)
|
||||||
{
|
{
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
@ -298,10 +298,10 @@ static int decode_element(AVCodecContext *avctx, void *data, int ch_index,
|
|||||||
{
|
{
|
||||||
ALACContext *alac = avctx->priv_data;
|
ALACContext *alac = avctx->priv_data;
|
||||||
int has_size;
|
int has_size;
|
||||||
unsigned int bps;
|
int bps;
|
||||||
int is_compressed;
|
int is_compressed;
|
||||||
uint8_t decorr_shift;
|
int decorr_shift;
|
||||||
uint8_t decorr_left_weight;
|
int decorr_left_weight;
|
||||||
uint32_t output_samples;
|
uint32_t output_samples;
|
||||||
int i, ch, ret;
|
int i, ch, ret;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user