1 #ifndef CLIB_MPEGA_PROTOS_H
2 #define CLIB_MPEGA_PROTOS_H
6 ** $VER: mpega_protos.h 1.0 (01.04.2010)
8 ** C prototypes. For use with 32 bit integers only.
11 ** All Rights Reserved
14 #ifndef LIBRARIES_MPEGA_H
15 #include <libraries/mpega.h>
18 MPEGA_STREAM
* MPEGA_open(char * filename
, MPEGA_CTRL
* ctrl
);
19 void MPEGA_close(MPEGA_STREAM
* mpds
);
20 LONG
MPEGA_decode_frame(MPEGA_STREAM
* mpds
, WORD
** pcm
);
21 LONG
MPEGA_seek(MPEGA_STREAM
* mpds
, ULONG ms_time_position
);
22 LONG
MPEGA_time(MPEGA_STREAM
* mpds
, ULONG
* ms_time_position
);
23 LONG
MPEGA_find_sync(BYTE
* buffer
, LONG buffer_size
);
24 LONG
MPEGA_scale(MPEGA_STREAM
* mpds
, LONG scale_percent
);
26 #endif /* CLIB_MPEGA_PROTOS_H */