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
0c7986df
Commit
0c7986df
authored
Dec 05, 2016
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: Drop deprecated workaround bugs options
Illegal ac_vlc and old msmpeg4 detection deprecated in 10/2013.
parent
8933ac20
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
18 deletions
+0
-18
avcodec.h
libavcodec/avcodec.h
+0
-6
options_table.h
libavcodec/options_table.h
+0
-6
version.h
libavcodec/version.h
+0
-6
No files found.
libavcodec/avcodec.h
View file @
0c7986df
...
...
@@ -2596,16 +2596,10 @@ typedef struct AVCodecContext {
*/
int
workaround_bugs
;
#define FF_BUG_AUTODETECT 1 ///< autodetection
#if FF_API_OLD_MSMPEG4
#define FF_BUG_OLD_MSMPEG4 2
#endif
#define FF_BUG_XVID_ILACE 4
#define FF_BUG_UMP4 8
#define FF_BUG_NO_PADDING 16
#define FF_BUG_AMV 32
#if FF_API_AC_VLC
#define FF_BUG_AC_VLC 0 ///< Will be removed, libavcodec can now handle these non-compliant files by default.
#endif
#define FF_BUG_QPEL_CHROMA 64
#define FF_BUG_STD_QPEL 128
#define FF_BUG_QPEL_CHROMA2 256
...
...
libavcodec/options_table.h
View file @
0c7986df
...
...
@@ -135,16 +135,10 @@ static const AVOption avcodec_options[] = {
{
"codec_tag"
,
NULL
,
OFFSET
(
codec_tag
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
},
{
"bug"
,
"work around not autodetected encoder bugs"
,
OFFSET
(
workaround_bugs
),
AV_OPT_TYPE_FLAGS
,
{.
i64
=
FF_BUG_AUTODETECT
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
{
"autodetect"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_BUG_AUTODETECT
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
#if FF_API_OLD_MSMPEG4
{
"old_msmpeg4"
,
"some old lavc-generated MSMPEG4v3 files (no autodetection)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_BUG_OLD_MSMPEG4
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
#endif
{
"xvid_ilace"
,
"Xvid interlacing bug (autodetected if FOURCC == XVIX)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_BUG_XVID_ILACE
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
{
"ump4"
,
"(autodetected if FOURCC == UMP4)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_BUG_UMP4
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
{
"no_padding"
,
"padding bug (autodetected)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_BUG_NO_PADDING
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
{
"amv"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_BUG_AMV
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
#if FF_API_AC_VLC
{
"ac_vlc"
,
"illegal VLC bug (autodetected per FOURCC)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_BUG_AC_VLC
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
#endif
{
"qpel_chroma"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_BUG_QPEL_CHROMA
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
{
"std_qpel"
,
"old standard qpel (autodetected per FOURCC/version)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_BUG_STD_QPEL
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
{
"qpel_chroma2"
,
NULL
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_BUG_QPEL_CHROMA2
},
INT_MIN
,
INT_MAX
,
V
|
D
,
"bug"
},
...
...
libavcodec/version.h
View file @
0c7986df
...
...
@@ -47,12 +47,6 @@
* the public API and may change, break or disappear at any time.
*/
#ifndef FF_API_AC_VLC
#define FF_API_AC_VLC (LIBAVCODEC_VERSION_MAJOR < 58)
#endif
#ifndef FF_API_OLD_MSMPEG4
#define FF_API_OLD_MSMPEG4 (LIBAVCODEC_VERSION_MAJOR < 58)
#endif
#ifndef FF_API_ASPECT_EXTENDED
#define FF_API_ASPECT_EXTENDED (LIBAVCODEC_VERSION_MAJOR < 58)
#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