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
8f271177
Commit
8f271177
authored
Oct 07, 2008
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sync cosmetics from upstream.
Originally committed as revision 15576 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
fbdae895
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
idct_mmx.c
libavcodec/i386/idct_mmx.c
+3
-0
No files found.
libavcodec/i386/idct_mmx.c
View file @
8f271177
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
* Copyright (C) 1999-2001 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
* Copyright (C) 1999-2001 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
*
*
* This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
* This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
* See http://libmpeg2.sourceforge.net/ for updates.
*
*
* mpeg2dec is free software; you can redistribute it and/or modify
* mpeg2dec is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* it under the terms of the GNU General Public License as published by
...
@@ -32,6 +33,7 @@
...
@@ -32,6 +33,7 @@
#define round(bias) ((int)(((bias)+0.5) * (1<<ROW_SHIFT)))
#define round(bias) ((int)(((bias)+0.5) * (1<<ROW_SHIFT)))
#define rounder(bias) {round (bias), round (bias)}
#define rounder(bias) {round (bias), round (bias)}
#if 0
#if 0
/* C row IDCT - it is just here to document the MMXEXT and MMX versions */
/* C row IDCT - it is just here to document the MMXEXT and MMX versions */
static inline void idct_row (int16_t * row, int offset,
static inline void idct_row (int16_t * row, int offset,
...
@@ -533,6 +535,7 @@ static inline void idct_col (int16_t * col, int offset)
...
@@ -533,6 +535,7 @@ static inline void idct_col (int16_t * col, int offset)
#undef C4
#undef C4
}
}
static
const
int32_t
rounder0
[]
ATTR_ALIGN
(
8
)
=
static
const
int32_t
rounder0
[]
ATTR_ALIGN
(
8
)
=
rounder
((
1
<<
(
COL_SHIFT
-
1
))
-
0
.
5
);
rounder
((
1
<<
(
COL_SHIFT
-
1
))
-
0
.
5
);
static
const
int32_t
rounder4
[]
ATTR_ALIGN
(
8
)
=
rounder
(
0
);
static
const
int32_t
rounder4
[]
ATTR_ALIGN
(
8
)
=
rounder
(
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