Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
external
ffmpeg
Commits
c1fadf50
Commit
c1fadf50
authored
Jun 30, 2008
by
Vitor Sessak
Browse files
Remove useless initialization
Originally committed as revision 14035 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
eec7ade2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
libavcodec/ra288.c
libavcodec/ra288.c
+1
-8
No files found.
libavcodec/ra288.c
View file @
c1fadf50
...
...
@@ -35,13 +35,6 @@ typedef struct {
float
lhist
[
10
];
}
Real288_internal
;
static
int
ra288_decode_init
(
AVCodecContext
*
avctx
)
{
Real288_internal
*
glob
=
avctx
->
priv_data
;
memset
(
glob
,
0
,
sizeof
(
Real288_internal
));
return
0
;
}
static
void
prodsum
(
float
*
tgt
,
float
*
src
,
int
len
,
int
n
);
static
void
co
(
int
n
,
int
i
,
int
j
,
float
*
in
,
float
*
out
,
float
*
st1
,
float
*
st2
,
const
float
*
table
);
static
int
pred
(
float
*
in
,
float
*
tgt
,
int
n
);
...
...
@@ -293,7 +286,7 @@ AVCodec ra_288_decoder =
CODEC_TYPE_AUDIO
,
CODEC_ID_RA_288
,
sizeof
(
Real288_internal
),
ra288_decode_init
,
NULL
,
NULL
,
NULL
,
ra288_decode_frame
,
...
...
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