2010-01-31 00:24:23 +01:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* MPlayer is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2007-07-03 00:34:45 +02:00
|
|
|
#ifndef MPLAYER_SPUDEC_H
|
|
|
|
#define MPLAYER_SPUDEC_H
|
2001-04-21 17:38:01 +02:00
|
|
|
|
2003-02-28 20:21:45 +01:00
|
|
|
#include "libvo/video_out.h"
|
|
|
|
|
2002-01-10 18:17:05 +01:00
|
|
|
void spudec_heartbeat(void *this, unsigned int pts100);
|
2007-12-11 11:12:58 +01:00
|
|
|
void spudec_assemble(void *this, unsigned char *packet, unsigned int len, int pts100);
|
2010-07-11 14:56:52 +02:00
|
|
|
void spudec_draw(void *this, void (*draw_alpha)(void *ctx, int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride), void *ctx);
|
2008-04-04 05:36:36 +02:00
|
|
|
void spudec_draw_scaled(void *this, unsigned int dxs, unsigned int dys, void (*draw_alpha)(void *ctx, int x0,int y0, int w,int h, unsigned char* src, unsigned char *srca, int stride), void *ctx);
|
2002-04-03 20:14:21 +02:00
|
|
|
void spudec_update_palette(void *this, unsigned int *palette);
|
2008-10-27 23:51:22 +01:00
|
|
|
void *spudec_new_scaled(unsigned int *palette, unsigned int frame_width, unsigned int frame_height, uint8_t *extradata, int extradata_len);
|
2002-01-10 18:17:05 +01:00
|
|
|
void *spudec_new(unsigned int *palette);
|
2001-11-20 19:36:50 +01:00
|
|
|
void spudec_free(void *this);
|
2001-12-25 21:32:02 +01:00
|
|
|
void spudec_reset(void *this); // called after seek
|
2002-04-15 21:17:12 +02:00
|
|
|
int spudec_visible(void *this); // check if spu is visible
|
2002-05-18 01:47:27 +02:00
|
|
|
void spudec_set_font_factor(void * this, double factor); // sets the equivalent to ffactor
|
2008-04-03 05:25:41 +02:00
|
|
|
void spudec_set_hw_spu(void *this, struct vo *hw_spu);
|
2002-07-24 18:47:29 +02:00
|
|
|
int spudec_changed(void *this);
|
2002-08-14 23:28:18 +02:00
|
|
|
void spudec_calc_bbox(void *me, unsigned int dxs, unsigned int dys, unsigned int* bbox);
|
2003-09-21 16:21:43 +02:00
|
|
|
void spudec_set_forced_subs_only(void * const this, const unsigned int flag);
|
2010-07-10 15:45:09 +02:00
|
|
|
void spudec_set_paletted(void *this, const uint8_t *pal_img, int stride,
|
|
|
|
const void *palette,
|
|
|
|
int x, int y, int w, int h,
|
|
|
|
double pts, double endpts);
|
2001-11-28 15:55:56 +01:00
|
|
|
|
2007-12-31 17:15:50 +01:00
|
|
|
#endif /* MPLAYER_SPUDEC_H */
|