mirror of
https://github.com/mpv-player/mpv
synced 2024-10-30 04:46:41 +01:00
a1ec9d7894
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3830 b3059339-0415-0410-9bf9-f77b7e298cf2
14 lines
366 B
C
14 lines
366 B
C
#ifndef _AC3_IEC958_H
|
|
#define _AC3_IEC958_H
|
|
|
|
#define IEC61937_DATA_TYPE_AC3 1
|
|
|
|
struct hwac3info {
|
|
int bitrate, framesize, samplerate, bsmod;
|
|
};
|
|
|
|
int ac3_iec958_build_burst(int length, int data_type, int big_endian, unsigned char * data, unsigned char * out);
|
|
int ac3_iec958_parse_syncinfo(unsigned char *buf, int size, struct hwac3info *ai, int *skipped);
|
|
|
|
#endif
|