mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 21:20:41 +00:00
const
Originally committed as revision 11771 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
0179178666
commit
96c5ba1584
@ -251,7 +251,7 @@ static void final(Real144_internal *glob, short *i1, short *i2, void *out, int *
|
||||
}
|
||||
|
||||
/* Decode 20-byte input */
|
||||
static void unpack_input(unsigned char *input, unsigned int *output)
|
||||
static void unpack_input(const unsigned char *input, unsigned int *output)
|
||||
{
|
||||
unsigned int outbuffer[28];
|
||||
unsigned short inbuffer[10];
|
||||
@ -427,7 +427,7 @@ static void dec2(Real144_internal *glob, int *data, int *inp, int n, int f, int
|
||||
/* Uncompress one block (20 bytes -> 160*2 bytes) */
|
||||
static int ra144_decode_frame(AVCodecContext * avctx,
|
||||
void *vdata, int *data_size,
|
||||
uint8_t * buf, int buf_size)
|
||||
const uint8_t * buf, int buf_size)
|
||||
{
|
||||
unsigned int a,b,c;
|
||||
signed short *shptr;
|
||||
|
Loading…
Reference in New Issue
Block a user