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
c0bce367
Commit
c0bce367
authored
Apr 19, 2018
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: Fix AVClass .version
Signed-off-by:
Michael Niedermayer
<
michael@niedermayer.cc
>
parent
3dfe3436
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
dump_extradata_bsf.c
libavcodec/dump_extradata_bsf.c
+1
-1
hapqa_extract_bsf.c
libavcodec/hapqa_extract_bsf.c
+1
-1
mediacodec_wrapper.c
libavcodec/mediacodec_wrapper.c
+2
-2
No files found.
libavcodec/dump_extradata_bsf.c
View file @
c0bce367
...
...
@@ -93,7 +93,7 @@ static const AVClass dump_extradata_class = {
.
class_name
=
"dump_extradata bsf"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_
MAJOR
,
.
version
=
LIBAVUTIL_VERSION_
INT
,
};
const
AVBitStreamFilter
ff_dump_extradata_bsf
=
{
...
...
libavcodec/hapqa_extract_bsf.c
View file @
c0bce367
...
...
@@ -122,7 +122,7 @@ static const AVClass hapqa_extract_class = {
.
class_name
=
"hapqa_extract_bsf"
,
.
item_name
=
av_default_item_name
,
.
option
=
options
,
.
version
=
LIBAVUTIL_VERSION_
MAJOR
,
.
version
=
LIBAVUTIL_VERSION_
INT
,
};
const
AVBitStreamFilter
ff_hapqa_extract_bsf
=
{
...
...
libavcodec/mediacodec_wrapper.c
View file @
c0bce367
...
...
@@ -156,7 +156,7 @@ static const struct FFJniField jni_amediaformat_mapping[] = {
static
const
AVClass
amediaformat_class
=
{
.
class_name
=
"amediaformat"
,
.
item_name
=
av_default_item_name
,
.
version
=
LIBAV
CODEC
_VERSION_INT
,
.
version
=
LIBAV
UTIL
_VERSION_INT
,
};
struct
FFAMediaFormat
{
...
...
@@ -268,7 +268,7 @@ static const struct FFJniField jni_amediacodec_mapping[] = {
static
const
AVClass
amediacodec_class
=
{
.
class_name
=
"amediacodec"
,
.
item_name
=
av_default_item_name
,
.
version
=
LIBAV
CODEC
_VERSION_INT
,
.
version
=
LIBAV
UTIL
_VERSION_INT
,
};
struct
FFAMediaCodec
{
...
...
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