view ac3-iec958.h @ 5270:870e932096ff

Support for cropping in mencoder. New options: -x0, -y0: upper-left corner of rectangle to be cut out -xsize, -ysize: Size of rectangle to cut out Cropping is done before scaling.
author ksorim
date Sat, 23 Mar 2002 13:13:12 +0000
parents 30b4f0c45b6e
children
line wrap: on
line source

#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