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
5012cf88
Commit
5012cf88
authored
May 25, 2008
by
Vitor Sessak
Browse files
Merge two if's
Originally committed as revision 13401 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
9d3c35fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
5 deletions
+3
-5
libavcodec/ra144.c
libavcodec/ra144.c
+3
-5
No files found.
libavcodec/ra144.c
View file @
5012cf88
...
...
@@ -214,16 +214,14 @@ static void do_output_subblock(Real144_internal *glob,
if
(
a
)
{
a
+=
HALFBLOCK
-
1
;
rotate_block
(
glob
->
buffer_2
,
buffer_a
,
a
);
m
[
0
]
=
irms
(
buffer_a
,
gval
)
>>
12
;
}
else
{
m
[
0
]
=
0
;
}
m
[
1
]
=
((
ftable1
[
b
]
>>
4
)
*
gval
)
>>
8
;
m
[
2
]
=
((
ftable2
[
c
]
>>
4
)
*
gval
)
>>
8
;
if
(
a
)
m
[
0
]
=
irms
(
buffer_a
,
gval
)
>>
12
;
else
m
[
0
]
=
0
;
memmove
(
glob
->
buffer_2
,
glob
->
buffer_2
+
BLOCKSIZE
,
(
BUFFERSIZE
-
BLOCKSIZE
)
*
2
);
...
...
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