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
0fe010a3
Commit
0fe010a3
authored
Jul 08, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vf_delogo: don't store two pointers to one AVFilterBufferRef.
parent
51a8049b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
vf_delogo.c
libavfilter/vf_delogo.c
+3
-4
No files found.
libavfilter/vf_delogo.c
View file @
0fe010a3
...
...
@@ -226,7 +226,7 @@ static void start_frame(AVFilterLink *inlink, AVFilterBufferRef *inpicref)
outpicref
->
video
->
w
=
outlink
->
w
;
outpicref
->
video
->
h
=
outlink
->
h
;
}
else
outpicref
=
inpicref
;
outpicref
=
avfilter_ref_buffer
(
inpicref
,
~
0
)
;
outlink
->
out_buf
=
outpicref
;
ff_start_frame
(
outlink
,
avfilter_ref_buffer
(
outpicref
,
~
0
));
...
...
@@ -240,7 +240,7 @@ static void end_frame(AVFilterLink *inlink)
AVFilterLink
*
outlink
=
inlink
->
dst
->
outputs
[
0
];
AVFilterBufferRef
*
inpicref
=
inlink
->
cur_buf
;
AVFilterBufferRef
*
outpicref
=
outlink
->
out_buf
;
int
direct
=
inpicref
==
outpicre
f
;
int
direct
=
inpicref
->
buf
==
outpicref
->
bu
f
;
int
hsub0
=
av_pix_fmt_descriptors
[
inlink
->
format
].
log2_chroma_w
;
int
vsub0
=
av_pix_fmt_descriptors
[
inlink
->
format
].
log2_chroma_h
;
int
plane
;
...
...
@@ -261,7 +261,6 @@ static void end_frame(AVFilterLink *inlink)
ff_draw_slice
(
outlink
,
0
,
inlink
->
h
,
1
);
ff_end_frame
(
outlink
);
avfilter_unref_buffer
(
inpicref
);
if
(
!
direct
)
avfilter_unref_buffer
(
outpicref
);
}
...
...
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