Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
fda767bb
Commit
fda767bb
authored
17 years ago
by
Kostya Shishkov
Browse files
Options
Downloads
Patches
Plain Diff
Rename function to reflect its action
Originally committed as revision 11146 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
890d2799
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavcodec/simple_idct.c
+3
-3
3 additions, 3 deletions
libavcodec/simple_idct.c
with
3 additions
and
3 deletions
libavcodec/simple_idct.c
+
3
−
3
View file @
fda767bb
...
...
@@ -428,7 +428,7 @@ void simple_idct(DCTELEM *block)
and the butterfly must be multiplied by 0.5 * sqrt(2.0) */
#define C_SHIFT (4+1+12)
static
inline
void
idct4col
(
uint8_t
*
dest
,
int
line_size
,
const
DCTELEM
*
col
)
static
inline
void
idct4col
_put
(
uint8_t
*
dest
,
int
line_size
,
const
DCTELEM
*
col
)
{
int
c0
,
c1
,
c2
,
c3
,
a0
,
a1
,
a2
,
a3
;
const
uint8_t
*
cm
=
ff_cropTbl
+
MAX_NEG_CROP
;
...
...
@@ -491,8 +491,8 @@ void simple_idct248_put(uint8_t *dest, int line_size, DCTELEM *block)
/* IDCT4 and store */
for
(
i
=
0
;
i
<
8
;
i
++
)
{
idct4col
(
dest
+
i
,
2
*
line_size
,
block
+
i
);
idct4col
(
dest
+
line_size
+
i
,
2
*
line_size
,
block
+
8
+
i
);
idct4col
_put
(
dest
+
i
,
2
*
line_size
,
block
+
i
);
idct4col
_put
(
dest
+
line_size
+
i
,
2
*
line_size
,
block
+
8
+
i
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment