Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
be4488dc
Commit
be4488dc
authored
May 15, 2008
by
Vitor Sessak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify rotate_block()
Originally committed as revision 13167 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
177fa453
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
13 deletions
+8
-13
ra144.c
libavcodec/ra144.c
+8
-13
No files found.
libavcodec/ra144.c
View file @
be4488dc
...
...
@@ -141,19 +141,14 @@ static void do_output_subblock(Real144_internal *glob, const unsigned short *gs
/* rotate block */
static
void
rotate_block
(
const
short
*
source
,
short
*
target
,
int
offset
)
{
short
*
end
;
const
short
*
ptr1
;
const
short
*
ptr2
;
const
short
*
ptr3
;
ptr2
=
source
+
BUFFERSIZE
;
ptr3
=
ptr1
=
ptr2
-
offset
;
end
=
target
+
BLOCKSIZE
;
while
(
target
<
end
)
{
*
(
target
++
)
=
*
(
ptr3
++
);
if
(
ptr3
==
ptr2
)
ptr3
=
ptr1
;
int
i
=
0
,
k
=
0
;
const
short
*
ptr1
=
source
+
BUFFERSIZE
-
offset
;
while
(
i
<
BLOCKSIZE
)
{
target
[
i
++
]
=
ptr1
[
k
++
];
if
(
k
==
offset
)
k
=
0
;
}
}
...
...
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