Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
3cc89383
Commit
3cc89383
authored
Feb 01, 2008
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
const
Originally committed as revision 11772 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
96c5ba15
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ra288.c
libavcodec/ra288.c
+3
-3
No files found.
libavcodec/ra288.c
View file @
3cc89383
...
...
@@ -49,7 +49,7 @@ static void colmult(float *tgt, float *m1, const float *m2, int n);
/* initial decode */
static
void
unpack
(
unsigned
short
*
tgt
,
unsigned
char
*
src
,
unsigned
int
len
)
static
void
unpack
(
unsigned
short
*
tgt
,
const
unsigned
char
*
src
,
unsigned
int
len
)
{
int
x
,
y
,
z
;
int
n
,
temp
;
...
...
@@ -208,7 +208,7 @@ static void prodsum(float *tgt, float *src, int len, int n)
}
}
static
void
*
decode_block
(
AVCodecContext
*
avctx
,
unsigned
char
*
in
,
signed
short
int
*
out
,
unsigned
len
)
static
void
*
decode_block
(
AVCodecContext
*
avctx
,
const
unsigned
char
*
in
,
signed
short
int
*
out
,
unsigned
len
)
{
int
x
,
y
;
Real288_internal
*
glob
=
avctx
->
priv_data
;
...
...
@@ -228,7 +228,7 @@ static void * decode_block(AVCodecContext * avctx, unsigned char *in, signed sho
/* Decode a block (celp) */
static
int
ra288_decode_frame
(
AVCodecContext
*
avctx
,
void
*
data
,
int
*
data_size
,
uint8_t
*
buf
,
int
buf_size
)
const
uint8_t
*
buf
,
int
buf_size
)
{
void
*
datao
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment