Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
5a9de38e
Commit
5a9de38e
authored
Apr 08, 2022
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/vf_waveform: copy props from input frame
parent
a700dc37
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vf_waveform.c
libavfilter/vf_waveform.c
+2
-2
No files found.
libavfilter/vf_waveform.c
View file @
5a9de38e
...
...
@@ -3399,8 +3399,6 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
av_frame_free
(
&
in
);
return
AVERROR
(
ENOMEM
);
}
out
->
pts
=
in
->
pts
;
out
->
color_range
=
AVCOL_RANGE_JPEG
;
for
(
k
=
0
;
k
<
s
->
dcomp
;
k
++
)
{
if
(
s
->
bits
<=
8
)
{
...
...
@@ -3484,6 +3482,8 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
}
s
->
graticulef
(
s
,
out
);
av_frame_copy_props
(
out
,
in
);
out
->
color_range
=
AVCOL_RANGE_JPEG
;
av_frame_free
(
&
in
);
out
->
sample_aspect_ratio
=
outlink
->
sample_aspect_ratio
;
return
ff_filter_frame
(
outlink
,
out
);
...
...
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