diff options
author | Dmitry Kovalev <dkovalev@google.com> | 2014-08-15 14:32:41 -0700 |
---|---|---|
committer | Dmitry Kovalev <dkovalev@google.com> | 2014-09-02 18:11:55 -0700 |
commit | 9cdaa3d72eade9ad162ef8f78a93bd8f85c6de10 (patch) | |
tree | 6b5b89feff2a0635ad757ece8e9f44c9619765a5 /examples/simple_encoder.c | |
parent | 0ecc75c81986a277d2e8e387117edfc21cb2fed0 (diff) | |
download | libvpx-9cdaa3d72eade9ad162ef8f78a93bd8f85c6de10.tar.gz libvpx-9cdaa3d72eade9ad162ef8f78a93bd8f85c6de10.tar.bz2 libvpx-9cdaa3d72eade9ad162ef8f78a93bd8f85c6de10.zip |
Removing legacy compatibility layer.
Change-Id: I6fdcea0e0faf42386dd2b8f972a3b3fb2c21b2c7
Diffstat (limited to 'examples/simple_encoder.c')
-rw-r--r-- | examples/simple_encoder.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/examples/simple_encoder.c b/examples/simple_encoder.c index 30bb73af0..f20c246da 100644 --- a/examples/simple_encoder.c +++ b/examples/simple_encoder.c @@ -28,9 +28,7 @@ // ----------------- // For encoders, you only have to include `vpx_encoder.h` and then any // header files for the specific codecs you use. In this case, we're using -// vp8. The `VPX_CODEC_DISABLE_COMPAT` macro can be defined to ensure -// strict compliance with the latest SDK by disabling some backwards -// compatibility features. Defining this macro is encouraged. +// vp8. // // Getting The Default Configuration // --------------------------------- @@ -101,7 +99,6 @@ #include <stdlib.h> #include <string.h> -#define VPX_CODEC_DISABLE_COMPAT 1 #include "vpx/vpx_encoder.h" #include "./tools_common.h" |