summaryrefslogtreecommitdiff
path: root/warnings.h
diff options
context:
space:
mode:
authorTom Finegan <tomfinegan@google.com>2013-11-25 12:05:19 -0800
committerTom Finegan <tomfinegan@google.com>2013-11-25 12:05:45 -0800
commit249366b1ac5f5c2abae334142183c9cb52271526 (patch)
tree73cc732dab92b95369b07759273e8d50c8598616 /warnings.h
parent939b297ac734bd74e6dd80eb129f90cf342ed790 (diff)
downloadlibvpx-249366b1ac5f5c2abae334142183c9cb52271526.tar.gz
vpxenc: Move config check code into its own source files.
- Add command line args that allow display of warnings without prompting for user input. - Extend warning code to make it somewhat scalable. Change-Id: I2bad8f9315f6eed120c2e1bbe0a2a5ede15fbf35
Diffstat (limited to 'warnings.h')
-rw-r--r--warnings.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/warnings.h b/warnings.h
new file mode 100644
index 000000000..ac3a4b63e
--- /dev/null
+++ b/warnings.h
@@ -0,0 +1,25 @@
+/*
+ * Copyright (c) 2013 The WebM project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+#ifndef WARNINGS_H_
+#define WARNINGS_H_
+
+struct vpx_codec_enc_cfg;
+struct VpxEncoderConfig;
+
+/*
+ * Checks config for improperly used settings. Warns user upon encountering
+ * settings that will lead to poor output quality. Prompts user to continue
+ * when warnings are issued.
+ */
+void check_encoder_config(int disable_prompt,
+ const struct VpxEncoderConfig *global_config,
+ const struct vpx_codec_enc_cfg *stream_config);
+
+#endif // WARNINGS_H_