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
01e59d48
Commit
01e59d48
authored
May 05, 2015
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vp9: add profile 2/3 to exported profiles.
parent
5c600d74
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
avcodec.h
libavcodec/avcodec.h
+2
-0
vp9.c
libavcodec/vp9.c
+2
-0
No files found.
libavcodec/avcodec.h
View file @
01e59d48
...
@@ -2914,6 +2914,8 @@ typedef struct AVCodecContext {
...
@@ -2914,6 +2914,8 @@ typedef struct AVCodecContext {
#define FF_PROFILE_VP9_0 0
#define FF_PROFILE_VP9_0 0
#define FF_PROFILE_VP9_1 1
#define FF_PROFILE_VP9_1 1
#define FF_PROFILE_VP9_2 2
#define FF_PROFILE_VP9_3 3
/**
/**
* level
* level
...
...
libavcodec/vp9.c
View file @
01e59d48
...
@@ -4089,6 +4089,8 @@ static int vp9_decode_update_thread_context(AVCodecContext *dst, const AVCodecCo
...
@@ -4089,6 +4089,8 @@ static int vp9_decode_update_thread_context(AVCodecContext *dst, const AVCodecCo
static
const
AVProfile
profiles
[]
=
{
static
const
AVProfile
profiles
[]
=
{
{
FF_PROFILE_VP9_0
,
"Profile 0"
},
{
FF_PROFILE_VP9_0
,
"Profile 0"
},
{
FF_PROFILE_VP9_1
,
"Profile 1"
},
{
FF_PROFILE_VP9_1
,
"Profile 1"
},
{
FF_PROFILE_VP9_2
,
"Profile 2"
},
{
FF_PROFILE_VP9_3
,
"Profile 3"
},
{
FF_PROFILE_UNKNOWN
},
{
FF_PROFILE_UNKNOWN
},
};
};
...
...
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