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
bde04604
Commit
bde04604
authored
Nov 28, 2016
by
Mark Thompson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vaapi_encode: Add VP9 support
(cherry picked from commit
0fd91e4b
)
parent
49419925
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
319 additions
and
1 deletion
+319
-1
configure
configure
+3
-0
Makefile
libavcodec/Makefile
+1
-0
allcodecs.c
libavcodec/allcodecs.c
+1
-0
vaapi_encode_vp9.c
libavcodec/vaapi_encode_vp9.c
+313
-0
version.h
libavcodec/version.h
+1
-1
No files found.
configure
View file @
bde04604
...
...
@@ -2797,6 +2797,8 @@ vp8_vaapi_encoder_deps="VAEncPictureParameterBufferVP8"
vp8_vaapi_encoder_select
=
"vaapi_encode"
vp9_cuvid_decoder_deps
=
"cuda cuvid"
vp9_mediacodec_decoder_deps
=
"mediacodec"
vp9_vaapi_encoder_deps
=
"VAEncPictureParameterBufferVP9"
vp9_vaapi_encoder_select
=
"vaapi_encode"
wmv3_crystalhd_decoder_select
=
"crystalhd"
wmv3_vdpau_decoder_select
=
"vc1_vdpau_decoder"
...
...
@@ -5725,6 +5727,7 @@ check_type "va/va.h va/va_enc_hevc.h" "VAEncPictureParameterBufferHEVC"
check_type
"va/va.h va/va_enc_jpeg.h"
"VAEncPictureParameterBufferJPEG"
check_type
"va/va.h va/va_enc_mpeg2.h"
"VAEncPictureParameterBufferMPEG2"
check_type
"va/va.h va/va_enc_vp8.h"
"VAEncPictureParameterBufferVP8"
check_type
"va/va.h va/va_enc_vp9.h"
"VAEncPictureParameterBufferVP9"
check_type
"vdpau/vdpau.h"
"VdpPictureInfoHEVC"
...
...
libavcodec/Makefile
View file @
bde04604
...
...
@@ -627,6 +627,7 @@ OBJS-$(CONFIG_VP9_DECODER) += vp9.o vp9data.o vp9dsp.o vp9lpf.o vp9r
vp9dsp_8bpp.o
vp9dsp_10bpp.o
vp9dsp_12bpp.o
OBJS-$(CONFIG_VP9_CUVID_DECODER)
+=
cuvid.o
OBJS-$(CONFIG_VP9_MEDIACODEC_DECODER)
+=
mediacodecdec.o
OBJS-$(CONFIG_VP9_VAAPI_ENCODER)
+=
vaapi_encode_vp9.o
OBJS-$(CONFIG_VPLAYER_DECODER)
+=
textdec.o
ass.o
OBJS-$(CONFIG_VQA_DECODER)
+=
vqavideo.o
OBJS-$(CONFIG_WAVPACK_DECODER)
+=
wavpack.o
...
...
libavcodec/allcodecs.c
View file @
bde04604
...
...
@@ -680,6 +680,7 @@ static void register_all(void)
REGISTER_ENCODER
(
VP8_VAAPI
,
vp8_vaapi
);
REGISTER_DECODER
(
VP9_CUVID
,
vp9_cuvid
);
REGISTER_DECODER
(
VP9_MEDIACODEC
,
vp9_mediacodec
);
REGISTER_ENCODER
(
VP9_VAAPI
,
vp9_vaapi
);
/* parsers */
REGISTER_PARSER
(
AAC
,
aac
);
...
...
libavcodec/vaapi_encode_vp9.c
0 → 100644
View file @
bde04604
This diff is collapsed.
Click to expand it.
libavcodec/version.h
View file @
bde04604
...
...
@@ -29,7 +29,7 @@
#define LIBAVCODEC_VERSION_MAJOR 57
#define LIBAVCODEC_VERSION_MINOR 99
#define LIBAVCODEC_VERSION_MICRO 10
1
#define LIBAVCODEC_VERSION_MICRO 10
2
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
...
...
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