mirror of
https://github.com/mpv-player/mpv
synced 2025-02-23 00:06:56 +00:00
Use the system liba52 headers when internal liba52 is disabled, fixes:
libmpdemux/muxer_mpeg.c:2121: warning: implicit declaration of function 'a52_syncinfo' git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31146 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
8d0afdaa88
commit
3921b71706
@ -38,7 +38,12 @@
|
||||
#include "aac_hdr.h"
|
||||
#include "mpeg_hdr.h"
|
||||
#include "mp3_hdr.h"
|
||||
|
||||
#ifdef CONFIG_LIBA52
|
||||
#include <a52dec/a52.h>
|
||||
#else
|
||||
#include "liba52/a52.h"
|
||||
#endif
|
||||
|
||||
#define PACK_HEADER_START_CODE 0x01ba
|
||||
#define SYSTEM_HEADER_START_CODE 0x01bb
|
||||
|
Loading…
Reference in New Issue
Block a user