1
mirror of https://github.com/mpv-player/mpv synced 2024-09-12 23:45:53 +02:00

Add multiple inclusion guards.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25895 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-01-27 23:09:03 +00:00
parent f0c1de19ab
commit 06e08a02a4
3 changed files with 11 additions and 2 deletions

View File

@ -21,6 +21,9 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef RTJPEGN_H
#define RTJPEGN_H
#define __u8 uint8_t
#define __u16 uint16_t
#define __u32 uint32_t
@ -52,5 +55,5 @@ extern void RTjpeg_yuvrgb8(__u8 *buf, __u8 *rgb, int stride);
extern void RTjpeg_yuvrgb16(__u8 *buf, __u8 *rgb, int stride);
extern void RTjpeg_yuvrgb24(__u8 *buf, __u8 *rgb, int stride);
extern void RTjpeg_yuvrgb32(__u8 *buf, __u8 *rgb, int stride);
#endif /* RTJPEGN_H */

View File

@ -1,6 +1,8 @@
#ifndef XA_GSM_H
#define XA_GSM_H
void XA_MSGSM_Decoder(unsigned char *ibuf,unsigned short *obuf);
void XA_GSM_Decoder(unsigned char *ibuf,unsigned short *obuf);
void GSM_Init(void);
#endif /* XA_GSM_H */

View File

@ -22,6 +22,9 @@
*
********************************************************************/
#ifndef XA_GSM_INT_H
#define XA_GSM_INT_H
#include "xa_gsm.h"
@ -128,3 +131,4 @@ typedef struct {
*/
#endif /* XA_GSM_INT_H */