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
f7191cca
Commit
f7191cca
authored
Jan 12, 2017
by
Nicolas George
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavfi: remove stray semicolons.
Hopefully fix compilation with suncc.
parent
f31bac59
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
asrc_anoisesrc.c
libavfilter/asrc_anoisesrc.c
+1
-1
buffersink.c
libavfilter/buffersink.c
+11
-11
No files found.
libavfilter/asrc_anoisesrc.c
View file @
f7191cca
...
...
@@ -103,7 +103,7 @@ static av_cold int query_formats(AVFilterContext *ctx)
static
double
white_filter
(
double
white
,
double
*
buf
)
{
return
white
;
}
;
}
static
double
pink_filter
(
double
white
,
double
*
buf
)
{
...
...
libavfilter/buffersink.c
View file @
f7191cca
...
...
@@ -186,20 +186,20 @@ type av_buffersink_get_##field(const AVFilterContext *ctx) { \
return ctx->inputs[0]->field; \
}
MAKE_AVFILTERLINK_ACCESSOR
(
enum
AVMediaType
,
type
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
AVRational
,
time_base
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
int
,
format
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
enum
AVMediaType
,
type
)
MAKE_AVFILTERLINK_ACCESSOR
(
AVRational
,
time_base
)
MAKE_AVFILTERLINK_ACCESSOR
(
int
,
format
)
MAKE_AVFILTERLINK_ACCESSOR
(
AVRational
,
frame_rate
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
int
,
w
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
int
,
h
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
AVRational
,
sample_aspect_ratio
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
AVRational
,
frame_rate
)
MAKE_AVFILTERLINK_ACCESSOR
(
int
,
w
)
MAKE_AVFILTERLINK_ACCESSOR
(
int
,
h
)
MAKE_AVFILTERLINK_ACCESSOR
(
AVRational
,
sample_aspect_ratio
)
MAKE_AVFILTERLINK_ACCESSOR
(
int
,
channels
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
uint64_t
,
channel_layout
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
int
,
sample_rate
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
int
,
channels
)
MAKE_AVFILTERLINK_ACCESSOR
(
uint64_t
,
channel_layout
)
MAKE_AVFILTERLINK_ACCESSOR
(
int
,
sample_rate
)
MAKE_AVFILTERLINK_ACCESSOR
(
AVBufferRef
*
,
hw_frames_ctx
)
;
MAKE_AVFILTERLINK_ACCESSOR
(
AVBufferRef
*
,
hw_frames_ctx
)
static
av_cold
int
vsink_init
(
AVFilterContext
*
ctx
,
void
*
opaque
)
{
...
...
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