blob: 222ead11b6d66dbee07b216b9a29564aa58e1344 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef _XXMC_H
#define _XXMC_H
#include "accel_xvmc.h"
extern void mpeg2_xxmc_slice( mpeg2dec_t *mpeg2dec, picture_t *picture,
int code, uint8_t *buffer);
extern void mpeg2_xxmc_choose_coding(mpeg2dec_t *mpeg2dec, picture_t *picture,
double aspect_ratio, int flags);
extern void mpeg2_xxmc_vld_frame_complete(mpeg2dec_t *mpeg2dec, picture_t *picture, int code);
#endif
|