Audio codecs to include webrtc/typedefs.h

Will easy merge of webrtc/typedefs.h and webrtc/base/basictypes.h

CL Generated with:
$ git grep -l \"typedefs.h\" | xargs sed -i "s/typedefs.h/webrtc\/typedefs.h/g"

BUG=3777
R=henrik.lundin@webrtc.org, tina.legrand@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/14329004

git-svn-id: http://webrtc.googlecode.com/svn/trunk@7041 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
andresp@webrtc.org
2014-09-03 14:37:18 +00:00
parent 0372b93118
commit 9730d3aae9
42 changed files with 53 additions and 61 deletions

View File

@ -34,13 +34,12 @@
#include <config.h>
#endif
#include <stdio.h>
#include <memory.h>
#include <stdio.h>
#include <stdlib.h>
#include "typedefs.h"
#include "g722_enc_dec.h"
#include "webrtc/typedefs.h"
#if !defined(FALSE)
#define FALSE 0

View File

@ -31,6 +31,8 @@
#if !defined(_G722_ENC_DEC_H_)
#define _G722_ENC_DEC_H_
#include "webrtc/typedefs.h"
/*! \page g722_page G.722 encoding and decoding
\section g722_page_sec_1 What does it do?
The G.722 module is a bit exact implementation of the ITU G.722 specification for all three

View File

@ -34,12 +34,12 @@
#include <config.h>
#endif
#include <stdio.h>
#include <memory.h>
#include <stdio.h>
#include <stdlib.h>
#include "typedefs.h"
#include "g722_enc_dec.h"
#include "webrtc/typedefs.h"
#if !defined(FALSE)
#define FALSE 0

View File

@ -12,10 +12,9 @@
#include <stdlib.h>
#include <string.h>
#include "g722_interface.h"
#include "g722_enc_dec.h"
#include "typedefs.h"
#include "g722_interface.h"
#include "webrtc/typedefs.h"
int16_t WebRtcG722_CreateEncoder(G722EncInst **G722enc_inst)
{

View File

@ -11,7 +11,7 @@
#ifndef MODULES_AUDIO_CODING_CODECS_G722_MAIN_INTERFACE_G722_INTERFACE_H_
#define MODULES_AUDIO_CODING_CODECS_G722_MAIN_INTERFACE_G722_INTERFACE_H_
#include "typedefs.h"
#include "webrtc/typedefs.h"
/*
* Solution to support multiple instances

View File

@ -15,7 +15,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "typedefs.h"
#include "webrtc/typedefs.h"
/* include API */
#include "g722_interface.h"