Mercurial > mplayer.hg
view ac3-iec958.h @ 2833:1b6c207c0410
Enable MMX stuff
I don't know why Michael Niedermayer disabled it but:
my benchmarks of 25 frames for TIMER+SUBTITLE (measured by RDTSC):
Non-MMX stuff:
total=306142159
MMX stuff:
total=159534150
author | nick |
---|---|
date | Sun, 11 Nov 2001 14:42:10 +0000 |
parents | a444bd456fcc |
children | 30b4f0c45b6e |
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; }; void 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