From bce23ab36b6aa0e5741f60e858a299971526d8d8 Mon Sep 17 00:00:00 2001 From: Johann Date: Tue, 13 Sep 2016 14:03:23 -0700 Subject: webmenc: remove unused 'fps' parameter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cleans -Wextra/-Wunused-parameter warning: warning: unused parameter ‘fps’ Change-Id: Ia5f9338f11ae8d0708a87c6d4e7d7e924fc3b19b --- vpxenc.c | 5 ++--- webmenc.cc | 1 - webmenc.h | 1 - 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/vpxenc.c b/vpxenc.c index baae87230..c7b4f08ff 100644 --- a/vpxenc.c +++ b/vpxenc.c @@ -1432,9 +1432,8 @@ static void open_output_file(struct stream_state *stream, #if CONFIG_WEBM_IO if (stream->config.write_webm) { stream->webm_ctx.stream = stream->file; - write_webm_file_header(&stream->webm_ctx, cfg, &global->framerate, - stream->config.stereo_fmt, global->codec->fourcc, - pixel_aspect_ratio); + write_webm_file_header(&stream->webm_ctx, cfg, stream->config.stereo_fmt, + global->codec->fourcc, pixel_aspect_ratio); } #else (void)pixel_aspect_ratio; diff --git a/webmenc.cc b/webmenc.cc index 52516a6ae..66606674b 100644 --- a/webmenc.cc +++ b/webmenc.cc @@ -22,7 +22,6 @@ const int kVideoTrackNumber = 1; void write_webm_file_header(struct WebmOutputContext *webm_ctx, const vpx_codec_enc_cfg_t *cfg, - const struct vpx_rational *fps, stereo_format_t stereo_fmt, unsigned int fourcc, const struct VpxRational *par) { mkvmuxer::MkvWriter *const writer = new mkvmuxer::MkvWriter(webm_ctx->stream); diff --git a/webmenc.h b/webmenc.h index 1ae7786cd..b4a9e357b 100644 --- a/webmenc.h +++ b/webmenc.h @@ -39,7 +39,6 @@ typedef enum stereo_format { void write_webm_file_header(struct WebmOutputContext *webm_ctx, const vpx_codec_enc_cfg_t *cfg, - const struct vpx_rational *fps, stereo_format_t stereo_fmt, unsigned int fourcc, const struct VpxRational *par); -- cgit v1.2.3