summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorNicolas George <george@nsup.org>2017-01-12 14:43:51 +0100
committerNicolas George <george@nsup.org>2017-01-12 15:07:18 +0100
commitf7191ccad663530c3fedbbefb9194a5c40fe927f (patch)
treeef5ae208fe28dd432428e4ebccb70dce94d82dc1 /libavfilter
parentf31bac596f93e02b49d04733e57770e183a3d0c8 (diff)
lavfi: remove stray semicolons.
Hopefully fix compilation with suncc.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/asrc_anoisesrc.c2
-rw-r--r--libavfilter/buffersink.c22
2 files changed, 12 insertions, 12 deletions
diff --git a/libavfilter/asrc_anoisesrc.c b/libavfilter/asrc_anoisesrc.c
index e4d4013749..709224c4cb 100644
--- a/libavfilter/asrc_anoisesrc.c
+++ b/libavfilter/asrc_anoisesrc.c
@@ -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)
{
diff --git a/libavfilter/buffersink.c b/libavfilter/buffersink.c
index b301e9f5ee..0f87b5439a 100644
--- a/libavfilter/buffersink.c
+++ b/libavfilter/buffersink.c
@@ -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)
{