Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
f9d43669
Commit
f9d43669
authored
Dec 02, 2019
by
Zhao Zhili
Committed by
Nicolas George
Dec 02, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avfilter/buffersrc: remove write-only variable
parent
637742b4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
3 deletions
+0
-3
buffersrc.c
libavfilter/buffersrc.c
+0
-3
No files found.
libavfilter/buffersrc.c
View file @
f9d43669
...
...
@@ -47,7 +47,6 @@ typedef struct BufferSourceContext {
AVRational
time_base
;
///< time_base to set in the output link
AVRational
frame_rate
;
///< frame_rate to set in the output link
unsigned
nb_failed_requests
;
unsigned
warning_limit
;
/* video only */
int
w
,
h
;
...
...
@@ -292,7 +291,6 @@ static av_cold int init_video(AVFilterContext *ctx)
c
->
w
,
c
->
h
,
av_get_pix_fmt_name
(
c
->
pix_fmt
),
c
->
time_base
.
num
,
c
->
time_base
.
den
,
c
->
frame_rate
.
num
,
c
->
frame_rate
.
den
,
c
->
pixel_aspect
.
num
,
c
->
pixel_aspect
.
den
,
(
char
*
)
av_x_if_null
(
c
->
sws_param
,
""
));
c
->
warning_limit
=
100
;
return
0
;
}
...
...
@@ -379,7 +377,6 @@ static av_cold int init_audio(AVFilterContext *ctx)
"tb:%d/%d samplefmt:%s samplerate:%d chlayout:%s
\n
"
,
s
->
time_base
.
num
,
s
->
time_base
.
den
,
av_get_sample_fmt_name
(
s
->
sample_fmt
),
s
->
sample_rate
,
s
->
channel_layout_str
);
s
->
warning_limit
=
100
;
return
ret
;
}
...
...
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