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
fc40cdbf
Commit
fc40cdbf
authored
Jul 01, 2015
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_extractplanes: rename misleading variable
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
be35b8b9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
vf_extractplanes.c
libavfilter/vf_extractplanes.c
+3
-3
No files found.
libavfilter/vf_extractplanes.c
View file @
fc40cdbf
...
...
@@ -39,7 +39,7 @@ typedef struct {
int
requested_planes
;
int
map
[
4
];
int
linesize
[
4
];
int
is_packed
_rgb
;
int
is_packed
;
int
depth
;
int
step
;
}
ExtractPlanesContext
;
...
...
@@ -154,7 +154,7 @@ static int config_input(AVFilterLink *inlink)
s
->
depth
=
(
desc
->
comp
[
0
].
depth_minus1
+
1
)
>>
3
;
s
->
step
=
av_get_padded_bits_per_pixel
(
desc
)
>>
3
;
s
->
is_packed
_rgb
=
!
(
desc
->
flags
&
AV_PIX_FMT_FLAG_PLANAR
);
s
->
is_packed
=
!
(
desc
->
flags
&
AV_PIX_FMT_FLAG_PLANAR
);
if
(
desc
->
flags
&
AV_PIX_FMT_FLAG_RGB
)
{
ff_fill_rgba_map
(
rgba_map
,
inlink
->
format
);
for
(
i
=
0
;
i
<
4
;
i
++
)
...
...
@@ -226,7 +226,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame)
}
av_frame_copy_props
(
out
,
frame
);
if
(
s
->
is_packed
_rgb
)
{
if
(
s
->
is_packed
)
{
extract_from_packed
(
out
->
data
[
0
],
out
->
linesize
[
0
],
frame
->
data
[
0
],
frame
->
linesize
[
0
],
outlink
->
w
,
outlink
->
h
,
...
...
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