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
998fdcff
Commit
998fdcff
authored
Dec 08, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: replace some forgotten instances of PixelFormat with AVPixelFormat
parent
84a08066
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
asvenc.c
libavcodec/asvenc.c
+4
-2
svq1dec.c
libavcodec/svq1dec.c
+2
-2
No files found.
libavcodec/asvenc.c
View file @
998fdcff
...
...
@@ -269,7 +269,8 @@ AVCodec ff_asv1_encoder = {
.
priv_data_size
=
sizeof
(
ASV1Context
),
.
init
=
encode_init
,
.
encode2
=
encode_frame
,
.
pix_fmts
=
(
const
enum
PixelFormat
[]){
AV_PIX_FMT_YUV420P
,
AV_PIX_FMT_NONE
},
.
pix_fmts
=
(
const
enum
AVPixelFormat
[]){
AV_PIX_FMT_YUV420P
,
AV_PIX_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"ASUS V1"
),
};
#endif
...
...
@@ -282,7 +283,8 @@ AVCodec ff_asv2_encoder = {
.
priv_data_size
=
sizeof
(
ASV1Context
),
.
init
=
encode_init
,
.
encode2
=
encode_frame
,
.
pix_fmts
=
(
const
enum
PixelFormat
[]){
AV_PIX_FMT_YUV420P
,
AV_PIX_FMT_NONE
},
.
pix_fmts
=
(
const
enum
AVPixelFormat
[]){
AV_PIX_FMT_YUV420P
,
AV_PIX_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"ASUS V2"
),
};
#endif
libavcodec/svq1dec.c
View file @
998fdcff
...
...
@@ -827,7 +827,7 @@ AVCodec ff_svq1_decoder = {
.
decode
=
svq1_decode_frame
,
.
capabilities
=
CODEC_CAP_DR1
,
.
flush
=
svq1_flush
,
.
pix_fmts
=
(
const
enum
PixelFormat
[])
{
AV_PIX_FMT_YUV410P
,
AV_PIX_FMT_NONE
},
.
pix_fmts
=
(
const
enum
AV
PixelFormat
[])
{
AV_PIX_FMT_YUV410P
,
AV_PIX_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Sorenson Vector Quantizer 1 / Sorenson Video 1 / SVQ1"
),
};
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