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
0648dec1
Commit
0648dec1
authored
Mar 16, 2017
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: Drop deprecated stream codec tag
Deprecated in 07/2015.
parent
94eed68a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
17 deletions
+3
-17
avcodec.h
libavcodec/avcodec.h
+0
-8
options_table.h
libavcodec/options_table.h
+0
-3
version.h
libavcodec/version.h
+1
-4
version.h
libavutil/version.h
+2
-2
No files found.
libavcodec/avcodec.h
View file @
0648dec1
...
...
@@ -1217,14 +1217,6 @@ typedef struct AVCodecContext {
*/
unsigned
int
codec_tag
;
#if FF_API_STREAM_CODEC_TAG
/**
* @deprecated this field is unused
*/
attribute_deprecated
unsigned
int
stream_codec_tag
;
#endif
void
*
priv_data
;
/**
...
...
libavcodec/options_table.h
View file @
0648dec1
...
...
@@ -233,9 +233,6 @@ static const AVOption avcodec_options[] = {
{
"simple"
,
"use mbcmp (default)"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_MB_DECISION_SIMPLE
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"mbd"
},
{
"bits"
,
"use fewest bits"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_MB_DECISION_BITS
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"mbd"
},
{
"rd"
,
"use best rate distortion"
,
0
,
AV_OPT_TYPE_CONST
,
{.
i64
=
FF_MB_DECISION_RD
},
INT_MIN
,
INT_MAX
,
V
|
E
,
"mbd"
},
#if FF_API_STREAM_CODEC_TAG
{
"stream_codec_tag"
,
NULL
,
OFFSET
(
stream_codec_tag
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
},
#endif
#if FF_API_PRIVATE_OPT
{
"sc_threshold"
,
"scene change threshold"
,
OFFSET
(
scenechange_threshold
),
AV_OPT_TYPE_INT
,
{.
i64
=
DEFAULT
},
INT_MIN
,
INT_MAX
,
V
|
E
},
#endif
...
...
libavcodec/version.h
View file @
0648dec1
...
...
@@ -47,11 +47,8 @@
* the public API and may change, break or disappear at any time.
*/
#ifndef FF_API_STREAM_CODEC_TAG
#define FF_API_STREAM_CODEC_TAG (LIBAVCODEC_VERSION_MAJOR < 58)
#endif
#ifndef FF_API_CODED_FRAME
#define FF_API_CODED_FRAME (LIBAVCODEC_VERSION_MAJOR < 5
8
)
#define FF_API_CODED_FRAME (LIBAVCODEC_VERSION_MAJOR < 5
9
)
#endif
#ifndef FF_API_SIDEDATA_ONLY_PKT
#define FF_API_SIDEDATA_ONLY_PKT (LIBAVCODEC_VERSION_MAJOR < 59)
...
...
libavutil/version.h
View file @
0648dec1
...
...
@@ -91,10 +91,10 @@
#define FF_API_CRYPTO_CONTEXT (LIBAVUTIL_VERSION_MAJOR < 57)
#endif
#ifndef FF_API_PLUS1_MINUS1
#define FF_API_PLUS1_MINUS1 (LIBAVUTIL_VERSION_MAJOR < 5
6
)
#define FF_API_PLUS1_MINUS1 (LIBAVUTIL_VERSION_MAJOR < 5
7
)
#endif
#ifndef FF_API_ERROR_FRAME
#define FF_API_ERROR_FRAME (LIBAVUTIL_VERSION_MAJOR < 5
6
)
#define FF_API_ERROR_FRAME (LIBAVUTIL_VERSION_MAJOR < 5
7
)
#endif
#ifndef FF_API_VAAPI
#define FF_API_VAAPI (LIBAVUTIL_VERSION_MAJOR < 57)
...
...
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