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
7831a7e4
Commit
7831a7e4
authored
Jan 22, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: remove disabled FF_API_ANTIALIAS_ALGO cruft.
parent
62dfea65
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
23 deletions
+0
-23
avcodec.h
libavcodec/avcodec.h
+0
-13
options.c
libavcodec/options.c
+0
-7
version.h
libavcodec/version.h
+0
-3
No files found.
libavcodec/avcodec.h
View file @
7831a7e4
...
...
@@ -2271,19 +2271,6 @@ typedef struct AVCodecContext {
*/
int
error_rate
;
#if FF_API_ANTIALIAS_ALGO
/**
* MP3 antialias algorithm, see FF_AA_* below.
* - encoding: unused
* - decoding: Set by user.
*/
attribute_deprecated
int
antialias_algo
;
#define FF_AA_AUTO 0
#define FF_AA_FASTINT 1 //not implemented yet
#define FF_AA_INT 2
#define FF_AA_FLOAT 3
#endif
/**
* quantizer noise shaping
* - encoding: Set by user.
...
...
libavcodec/options.c
View file @
7831a7e4
...
...
@@ -336,13 +336,6 @@ static const AVOption options[]={
#endif
{
"flags2"
,
NULL
,
OFFSET
(
flags2
),
AV_OPT_TYPE_FLAGS
,
{.
dbl
=
LAME_DEFAULTS
},
0
,
UINT_MAX
,
V
|
A
|
E
|
D
,
"flags2"
},
{
"error"
,
NULL
,
OFFSET
(
error_rate
),
AV_OPT_TYPE_INT
,
{.
dbl
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
E
},
#if FF_API_ANTIALIAS_ALGO
{
"antialias"
,
"MP3 antialias algorithm"
,
OFFSET
(
antialias_algo
),
AV_OPT_TYPE_INT
,
{.
dbl
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"aa"
},
{
"auto"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
FF_AA_AUTO
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"aa"
},
{
"fastint"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
FF_AA_FASTINT
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"aa"
},
{
"int"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
FF_AA_INT
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"aa"
},
{
"float"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
FF_AA_FLOAT
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"aa"
},
#endif
{
"qns"
,
"quantizer noise shaping"
,
OFFSET
(
quantizer_noise_shaping
),
AV_OPT_TYPE_INT
,
{.
dbl
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
E
},
{
"threads"
,
NULL
,
OFFSET
(
thread_count
),
AV_OPT_TYPE_INT
,
{.
dbl
=
1
},
0
,
INT_MAX
,
V
|
E
|
D
,
"threads"
},
{
"auto"
,
"detect a good number of threads"
,
0
,
AV_OPT_TYPE_CONST
,
{.
dbl
=
0
},
INT_MIN
,
INT_MAX
,
V
|
E
|
D
,
"threads"
},
...
...
libavcodec/version.h
View file @
7831a7e4
...
...
@@ -38,9 +38,6 @@
* Those FF_API_* defines are not part of public API.
* They may change, break or disappear at any time.
*/
#ifndef FF_API_ANTIALIAS_ALGO
#define FF_API_ANTIALIAS_ALGO (LIBAVCODEC_VERSION_MAJOR < 54)
#endif
#ifndef FF_API_REQUEST_CHANNELS
#define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 55)
#endif
...
...
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