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
9d6cf81f
Commit
9d6cf81f
authored
Feb 23, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: remove disabled FF_API_COLOR_TABLE_ID cruft
parent
3b0f586f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
16 deletions
+0
-16
avcodec.h
libavcodec/avcodec.h
+0
-10
options_table.h
libavcodec/options_table.h
+0
-3
version.h
libavcodec/version.h
+0
-3
No files found.
libavcodec/avcodec.h
View file @
9d6cf81f
...
@@ -1501,16 +1501,6 @@ typedef struct AVCodecContext {
...
@@ -1501,16 +1501,6 @@ typedef struct AVCodecContext {
*/
*/
int
inter_quant_bias
;
int
inter_quant_bias
;
#if FF_API_COLOR_TABLE_ID
/**
* color table ID
* - encoding: unused
* - decoding: Which clrtable should be used for 8bit RGB images.
* Tables have to be stored somewhere. FIXME
*/
attribute_deprecated
int
color_table_id
;
#endif
/**
/**
* slice flags
* slice flags
* - encoding: unused
* - encoding: unused
...
...
libavcodec/options_table.h
View file @
9d6cf81f
...
@@ -263,9 +263,6 @@ static const AVOption options[]={
...
@@ -263,9 +263,6 @@ static const AVOption options[]={
{
"me_range"
,
"limit motion vectors range (1023 for DivX player)"
,
OFFSET
(
me_range
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
E
},
{
"me_range"
,
"limit motion vectors range (1023 for DivX player)"
,
OFFSET
(
me_range
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
E
},
{
"ibias"
,
"intra quant bias"
,
OFFSET
(
intra_quant_bias
),
AV_OPT_TYPE_INT
,
{.
i64
=
FF_DEFAULT_QUANT_BIAS
},
INT_MIN
,
INT_MAX
,
V
|
E
},
{
"ibias"
,
"intra quant bias"
,
OFFSET
(
intra_quant_bias
),
AV_OPT_TYPE_INT
,
{.
i64
=
FF_DEFAULT_QUANT_BIAS
},
INT_MIN
,
INT_MAX
,
V
|
E
},
{
"pbias"
,
"inter quant bias"
,
OFFSET
(
inter_quant_bias
),
AV_OPT_TYPE_INT
,
{.
i64
=
FF_DEFAULT_QUANT_BIAS
},
INT_MIN
,
INT_MAX
,
V
|
E
},
{
"pbias"
,
"inter quant bias"
,
OFFSET
(
inter_quant_bias
),
AV_OPT_TYPE_INT
,
{.
i64
=
FF_DEFAULT_QUANT_BIAS
},
INT_MIN
,
INT_MAX
,
V
|
E
},
#if FF_API_COLOR_TABLE_ID
{
"color_table_id"
,
NULL
,
OFFSET
(
color_table_id
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
},
#endif
{
"global_quality"
,
NULL
,
OFFSET
(
global_quality
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
A
|
E
},
{
"global_quality"
,
NULL
,
OFFSET
(
global_quality
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
A
|
E
},
{
"coder"
,
NULL
,
OFFSET
(
coder_type
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"coder"
},
{
"coder"
,
NULL
,
OFFSET
(
coder_type
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"coder"
},
{
"vlc"
,
"variable length coder / Huffman coder"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_CODER_TYPE_VLC
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"coder"
},
{
"vlc"
,
"variable length coder / Huffman coder"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_CODER_TYPE_VLC
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"coder"
},
...
...
libavcodec/version.h
View file @
9d6cf81f
...
@@ -49,9 +49,6 @@
...
@@ -49,9 +49,6 @@
#ifndef FF_API_REQUEST_CHANNELS
#ifndef FF_API_REQUEST_CHANNELS
#define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 56)
#define FF_API_REQUEST_CHANNELS (LIBAVCODEC_VERSION_MAJOR < 56)
#endif
#endif
#ifndef FF_API_COLOR_TABLE_ID
#define FF_API_COLOR_TABLE_ID (LIBAVCODEC_VERSION_MAJOR < 55)
#endif
#ifndef FF_API_INTER_THRESHOLD
#ifndef FF_API_INTER_THRESHOLD
#define FF_API_INTER_THRESHOLD (LIBAVCODEC_VERSION_MAJOR < 55)
#define FF_API_INTER_THRESHOLD (LIBAVCODEC_VERSION_MAJOR < 55)
#endif
#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