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
7b607eb5
Commit
7b607eb5
authored
Aug 31, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfiltergraph: use avcodec_find_best_pix_fmt_of_2()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
704a5a06
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
avfiltergraph.c
libavfilter/avfiltergraph.c
+2
-2
No files found.
libavfilter/avfiltergraph.c
View file @
7b607eb5
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
#include "libavutil/audioconvert.h"
#include "libavutil/audioconvert.h"
#include "libavutil/avassert.h"
#include "libavutil/avassert.h"
#include "libavutil/pixdesc.h"
#include "libavutil/pixdesc.h"
#include "libavcodec/avcodec.h" // avcodec_find_best_pix_fmt2()
#include "libavcodec/avcodec.h" // avcodec_find_best_pix_fmt
_of_
2()
#include "avfilter.h"
#include "avfilter.h"
#include "avfiltergraph.h"
#include "avfiltergraph.h"
#include "formats.h"
#include "formats.h"
...
@@ -429,7 +429,7 @@ static int pick_format(AVFilterLink *link, AVFilterLink *ref)
...
@@ -429,7 +429,7 @@ static int pick_format(AVFilterLink *link, AVFilterLink *ref)
int
i
;
int
i
;
for
(
i
=
0
;
i
<
link
->
in_formats
->
format_count
;
i
++
)
{
for
(
i
=
0
;
i
<
link
->
in_formats
->
format_count
;
i
++
)
{
enum
PixelFormat
p
=
link
->
in_formats
->
formats
[
i
];
enum
PixelFormat
p
=
link
->
in_formats
->
formats
[
i
];
best
=
avcodec_find_best_pix_fmt2
(
best
,
p
,
ref
->
format
,
has_alpha
,
NULL
);
best
=
avcodec_find_best_pix_fmt
_of_
2
(
best
,
p
,
ref
->
format
,
has_alpha
,
NULL
);
}
}
av_log
(
link
->
src
,
AV_LOG_DEBUG
,
"picking %s out of %d ref:%s alpha:%d
\n
"
,
av_log
(
link
->
src
,
AV_LOG_DEBUG
,
"picking %s out of %d ref:%s alpha:%d
\n
"
,
av_get_pix_fmt_name
(
best
),
link
->
in_formats
->
format_count
,
av_get_pix_fmt_name
(
best
),
link
->
in_formats
->
format_count
,
...
...
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