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
105ab61c
Commit
105ab61c
authored
Nov 22, 2011
by
Alex Converse
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avconv: Consistently use PIX_FMT_NONE.
Use PIX_FMT_NONE instead of -1 when dealing with PixelFormat variables.
parent
0e8fdd41
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
avconv.c
avconv.c
+2
-2
No files found.
avconv.c
View file @
105ab61c
...
@@ -673,11 +673,11 @@ static void choose_pixel_fmt(AVStream *st, AVCodec *codec)
...
@@ -673,11 +673,11 @@ static void choose_pixel_fmt(AVStream *st, AVCodec *codec)
p
=
(
const
enum
PixelFormat
[]){
PIX_FMT_YUVJ420P
,
PIX_FMT_YUVJ422P
,
PIX_FMT_YUVJ444P
,
PIX_FMT_YUV420P
,
PIX_FMT_YUV422P
,
PIX_FMT_YUV444P
,
PIX_FMT_BGRA
,
PIX_FMT_NONE
};
p
=
(
const
enum
PixelFormat
[]){
PIX_FMT_YUVJ420P
,
PIX_FMT_YUVJ422P
,
PIX_FMT_YUVJ444P
,
PIX_FMT_YUV420P
,
PIX_FMT_YUV422P
,
PIX_FMT_YUV444P
,
PIX_FMT_BGRA
,
PIX_FMT_NONE
};
}
}
}
}
for
(;
*
p
!=-
1
;
p
++
)
{
for
(;
*
p
!=
PIX_FMT_NONE
;
p
++
)
{
if
(
*
p
==
st
->
codec
->
pix_fmt
)
if
(
*
p
==
st
->
codec
->
pix_fmt
)
break
;
break
;
}
}
if
(
*
p
==
-
1
)
{
if
(
*
p
==
PIX_FMT_NONE
)
{
if
(
st
->
codec
->
pix_fmt
!=
PIX_FMT_NONE
)
if
(
st
->
codec
->
pix_fmt
!=
PIX_FMT_NONE
)
av_log
(
NULL
,
AV_LOG_WARNING
,
av_log
(
NULL
,
AV_LOG_WARNING
,
"Incompatible pixel format '%s' for codec '%s', auto-selecting format '%s'
\n
"
,
"Incompatible pixel format '%s' for codec '%s', auto-selecting format '%s'
\n
"
,
...
...
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