shithub: libvpx

Download patch

ref: bce23ab36b6aa0e5741f60e858a299971526d8d8
parent: 421f376568b2b07a43a93fb055f7e2c48d111a0a
author: Johann <johannkoenig@google.com>
date: Tue Sep 13 10:03:23 EDT 2016

webmenc: remove unused 'fps' parameter

Cleans -Wextra/-Wunused-parameter warning:
warning: unused parameter ‘fps’

Change-Id: Ia5f9338f11ae8d0708a87c6d4e7d7e924fc3b19b

--- a/vpxenc.c
+++ b/vpxenc.c
@@ -1432,9 +1432,8 @@
 #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;
--- a/webmenc.cc
+++ b/webmenc.cc
@@ -22,7 +22,6 @@
 
 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);
--- a/webmenc.h
+++ b/webmenc.h
@@ -39,7 +39,6 @@
 
 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);