Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
7a629186
Commit
7a629186
authored
Aug 16, 2015
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prepare for removal of obsolete FF_IDCT_* members.
parent
9468207e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
4 deletions
+2
-4
avcodec.h
libavcodec/avcodec.h
+0
-2
avdct.c
libavcodec/avdct.c
+2
-0
options_table.h
libavcodec/options_table.h
+0
-2
No files found.
libavcodec/avcodec.h
View file @
7a629186
...
...
@@ -2947,9 +2947,7 @@ typedef struct AVCodecContext {
int
dct_algo
;
#define FF_DCT_AUTO 0
#define FF_DCT_FASTINT 1
#if FF_API_UNUSED_MEMBERS
#define FF_DCT_INT 2
#endif
/* FF_API_UNUSED_MEMBERS */
#define FF_DCT_MMX 3
#define FF_DCT_ALTIVEC 5
#define FF_DCT_FAAN 6
...
...
libavcodec/avdct.c
View file @
7a629186
...
...
@@ -58,7 +58,9 @@ static const AVOption avdct_options[] = {
#if FF_API_ARCH_ALPHA
{
"simplealpha"
,
"experimental / for debugging"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_IDCT_SIMPLEALPHA
},
INT_MIN
,
INT_MAX
,
V
|
E
|
D
,
"idct"
},
#endif
#if FF_API_UNUSED_MEMBERS
{
"ipp"
,
"experimental / for debugging"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_IDCT_IPP
},
INT_MIN
,
INT_MAX
,
V
|
E
|
D
,
"idct"
},
#endif
{
"xvid"
,
"experimental / for debugging"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_IDCT_XVID
},
INT_MIN
,
INT_MAX
,
V
|
E
|
D
,
"idct"
},
{
"xvidmmx"
,
"experimental / for debugging"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_IDCT_XVID
},
INT_MIN
,
INT_MAX
,
V
|
E
|
D
,
"idct"
},
{
"faani"
,
"floating point AAN IDCT (experimental / for debugging)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_IDCT_FAAN
},
INT_MIN
,
INT_MAX
,
V
|
D
|
E
,
"idct"
},
...
...
libavcodec/options_table.h
View file @
7a629186
...
...
@@ -201,9 +201,7 @@ static const AVOption avcodec_options[] = {
{
"dct"
,
"DCT algorithm"
,
OFFSET
(
dct_algo
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
0
,
INT_MAX
,
V
|
E
,
"dct"
},
{
"auto"
,
"autoselect a good one (default)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_AUTO
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
{
"fastint"
,
"fast integer"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_FASTINT
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
#if FF_API_UNUSED_MEMBERS
{
"int"
,
"accurate integer"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_INT
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
#endif
/* FF_API_UNUSED_MEMBERS */
{
"mmx"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_MMX
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
{
"altivec"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_ALTIVEC
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
{
"faan"
,
"floating point AAN DCT"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_DCT_FAAN
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"dct"
},
...
...
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