shithub: openh264

Download patch

ref: 99c61310046f71cabf2b12ecf6f242edbdb8de8b
parent: d3fab249b2c257e9899533d311207600b48f78f7
author: Martin Storsjö <martin@martin.st>
date: Fri Apr 11 05:42:30 EDT 2014

Remove some unnecessary ifdefs

These headers are standard headers that are available in MSVC as well.
There's nothing ifdeffed in the implementation of this file that would
explain why these headers only are required in these configurations.

--- a/codec/console/dec/src/read_config.cpp
+++ b/codec/console/dec/src/read_config.cpp
@@ -37,10 +37,9 @@
  *      08/18/2008 Created
  *
  *****************************************************************************/
-#if !defined(_WIN32) || !defined(_MSC_VER)
+
 #include <string.h>
 #include <stdio.h>
-#endif