mirror of
https://github.com/mpv-player/mpv
synced 2025-02-21 15:27:00 +00: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:
parent
f0c1de19ab
commit
06e08a02a4
@ -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 */
|
||||
|
@ -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 */
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user