Merge "Updated the includes to relative paths."

This commit is contained in:
pascal massimino 2011-12-01 04:20:46 -08:00 committed by Gerrit Code Review
commit ccbaebfe30
19 changed files with 37 additions and 28 deletions

View File

@ -10,8 +10,9 @@
// Author: Skal (pascal.massimino@gmail.com)
#include <stdlib.h>
#include "vp8i.h"
#include "webpi.h"
#include "./vp8i.h"
#include "./webpi.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -13,8 +13,8 @@
#include <string.h>
#include <stdlib.h>
#include "webpi.h"
#include "vp8i.h"
#include "./webpi.h"
#include "./vp8i.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -11,7 +11,8 @@
#include <assert.h>
#include <stdlib.h>
#include "vp8i.h"
#include "./vp8i.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -9,7 +9,7 @@
//
// Author: Skal (pascal.massimino@gmail.com)
#include "vp8i.h"
#include "./vp8i.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -10,8 +10,9 @@
// Author: Skal (pascal.massimino@gmail.com)
#include <stdlib.h>
#include "vp8i.h"
#include "webpi.h"
#include "./vp8i.h"
#include "./webpi.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -10,8 +10,9 @@
// Author: Skal (pascal.massimino@gmail.com)
#include <stdlib.h>
#include "vp8i.h"
#include "webpi.h"
#include "./vp8i.h"
#include "./webpi.h"
#include "../webp/mux.h" // For 'ALPHA_FLAG'.
#if defined(__cplusplus) || defined(c_plusplus)

View File

@ -11,7 +11,8 @@
#include <assert.h>
#include <stdlib.h>
#include "vp8enci.h"
#include "./vp8enci.h"
#include "../utils/alpha.h"
#if defined(__cplusplus) || defined(c_plusplus)

View File

@ -13,8 +13,8 @@
#include <string.h>
#include <assert.h>
#include "vp8enci.h"
#include "cost.h"
#include "./vp8enci.h"
#include "./cost.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -11,7 +11,7 @@
#include <assert.h>
#include "cost.h"
#include "./cost.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -12,7 +12,7 @@
#ifndef WEBP_ENC_COST_H_
#define WEBP_ENC_COST_H_
#include "vp8enci.h"
#include "./vp8enci.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -10,7 +10,8 @@
// Author: somnath@google.com (Somnath Banerjee)
#include <math.h>
#include "vp8enci.h"
#include "./vp8enci.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -14,8 +14,8 @@
#include <assert.h>
#include <math.h>
#include "vp8enci.h"
#include "cost.h"
#include "./vp8enci.h"
#include "./cost.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -11,7 +11,8 @@
#include <stdlib.h>
#include <string.h>
#include "vp8enci.h"
#include "./vp8enci.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -11,7 +11,8 @@
#include <assert.h>
#include <stdlib.h>
#include "vp8enci.h"
#include "./vp8enci.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -11,7 +11,8 @@
#include <assert.h>
#include <stdlib.h>
#include "vp8enci.h"
#include "./vp8enci.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -12,8 +12,8 @@
#include <assert.h>
#include <math.h>
#include "vp8enci.h"
#include "cost.h"
#include "./vp8enci.h"
#include "./cost.h"
#define DO_TRELLIS_I4 1
#define DO_TRELLIS_I16 1 // not a huge gain, but ok at low bitrate.

View File

@ -9,7 +9,7 @@
//
// Author: Skal (pascal.massimino@gmail.com)
#include "vp8enci.h"
#include "./vp8enci.h"
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {

View File

@ -14,7 +14,7 @@
#include <string.h>
#include <math.h>
#include "vp8enci.h"
#include "./vp8enci.h"
// #define PRINT_MEMORY_INFO

View File

@ -12,9 +12,9 @@
#include <assert.h>
#include <stdlib.h>
#include "webp/mux.h"
#include "dec/vp8i.h"
#include "dec/webpi.h" // for chunk-size constants
#include "../webp/mux.h"
#include "../dec/vp8i.h"
#include "../dec/webpi.h" // for chunk-size constants
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {