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
2d591595
Commit
2d591595
authored
Oct 14, 2015
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: AV-prefix a few left out capabilities
parent
9ef74817
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
libx264.c
libavcodec/libx264.c
+1
-1
mpeg12dec.c
libavcodec/mpeg12dec.c
+1
-1
qsvdec_h2645.c
libavcodec/qsvdec_h2645.c
+1
-1
qsvdec_mpeg2.c
libavcodec/qsvdec_mpeg2.c
+1
-1
qsvenc_hevc.c
libavcodec/qsvenc_hevc.c
+1
-1
qsvenc_mpeg2.c
libavcodec/qsvenc_mpeg2.c
+1
-1
No files found.
libavcodec/libx264.c
View file @
2d591595
...
...
@@ -786,7 +786,7 @@ AVCodec ff_libx262_encoder = {
.
init
=
X264_init
,
.
encode2
=
X264_frame
,
.
close
=
X264_close
,
.
capabilities
=
CODEC_CAP_DELAY
|
CODEC_CAP_AUTO_THREADS
,
.
capabilities
=
AV_CODEC_CAP_DELAY
|
AV_
CODEC_CAP_AUTO_THREADS
,
.
priv_class
=
&
X262_class
,
.
defaults
=
x264_defaults
,
.
pix_fmts
=
pix_fmts_8bit
,
...
...
libavcodec/mpeg12dec.c
View file @
2d591595
...
...
@@ -2753,7 +2753,7 @@ AVCodec ff_mpeg_xvmc_decoder = {
.
close
=
mpeg_decode_end
,
.
decode
=
mpeg_decode_frame
,
.
capabilities
=
AV_CODEC_CAP_DRAW_HORIZ_BAND
|
AV_CODEC_CAP_DR1
|
AV_CODEC_CAP_TRUNCATED
|
CODEC_CAP_HWACCEL
|
AV_CODEC_CAP_TRUNCATED
|
AV_
CODEC_CAP_HWACCEL
|
AV_CODEC_CAP_DELAY
,
.
flush
=
flush
,
};
...
...
libavcodec/qsvdec_h2645.c
View file @
2d591595
...
...
@@ -241,7 +241,7 @@ AVCodec ff_hevc_qsv_decoder = {
.
decode
=
qsv_decode_frame
,
.
flush
=
qsv_decode_flush
,
.
close
=
qsv_decode_close
,
.
capabilities
=
CODEC_CAP_DELAY
|
CODEC_CAP_DR1
,
.
capabilities
=
AV_CODEC_CAP_DELAY
|
AV_
CODEC_CAP_DR1
,
.
priv_class
=
&
hevc_class
,
.
pix_fmts
=
(
const
enum
AVPixelFormat
[]){
AV_PIX_FMT_NV12
,
AV_PIX_FMT_QSV
,
...
...
libavcodec/qsvdec_mpeg2.c
View file @
2d591595
...
...
@@ -173,7 +173,7 @@ AVCodec ff_mpeg2_qsv_decoder = {
.
decode
=
qsv_decode_frame
,
.
flush
=
qsv_decode_flush
,
.
close
=
qsv_decode_close
,
.
capabilities
=
CODEC_CAP_DELAY
|
CODEC_CAP_DR1
,
.
capabilities
=
AV_CODEC_CAP_DELAY
|
AV_
CODEC_CAP_DR1
,
.
priv_class
=
&
class
,
.
pix_fmts
=
(
const
enum
AVPixelFormat
[]){
AV_PIX_FMT_NV12
,
AV_PIX_FMT_QSV
,
...
...
libavcodec/qsvenc_hevc.c
View file @
2d591595
...
...
@@ -263,7 +263,7 @@ AVCodec ff_hevc_qsv_encoder = {
.
init
=
qsv_enc_init
,
.
encode2
=
qsv_enc_frame
,
.
close
=
qsv_enc_close
,
.
capabilities
=
CODEC_CAP_DELAY
,
.
capabilities
=
AV_
CODEC_CAP_DELAY
,
.
pix_fmts
=
(
const
enum
AVPixelFormat
[]){
AV_PIX_FMT_NV12
,
AV_PIX_FMT_QSV
,
AV_PIX_FMT_NONE
},
...
...
libavcodec/qsvenc_mpeg2.c
View file @
2d591595
...
...
@@ -108,7 +108,7 @@ AVCodec ff_mpeg2_qsv_encoder = {
.
init
=
qsv_enc_init
,
.
encode2
=
qsv_enc_frame
,
.
close
=
qsv_enc_close
,
.
capabilities
=
CODEC_CAP_DELAY
,
.
capabilities
=
AV_
CODEC_CAP_DELAY
,
.
pix_fmts
=
(
const
enum
AVPixelFormat
[]){
AV_PIX_FMT_NV12
,
AV_PIX_FMT_QSV
,
AV_PIX_FMT_NONE
},
...
...
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