comparison libvo/video_out_internal.h @ 1:3b5f5d1c5041

Initial revision
author arpi_esp
date Sat, 24 Feb 2001 20:28:24 +0000
parents
children 1fc618eba830
comparison
equal deleted inserted replaced
0:c1bb2c071d63 1:3b5f5d1c5041
1 /*
2 * video_out_internal.h
3 *
4 * Copyright (C) Aaron Holtzman - Aug 1999
5 *
6 * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
7 *
8 * mpeg2dec is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2, or (at your option)
11 * any later version.
12 *
13 * mpeg2dec is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with GNU Make; see the file COPYING. If not, write to
20 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
22 */
23
24 static uint32_t init(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format);
25 static const vo_info_t* get_info(void);
26 static uint32_t draw_frame(uint8_t *src[]);
27 //static uint32_t draw_slice(uint8_t *src[], uint32_t slice_num);
28 static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y);
29 static void flip_page(void);
30 static void uninit(void);
31 static uint32_t query_format(uint32_t format);
32
33 #define LIBVO_EXTERN(x) vo_functions_t video_out_##x =\
34 {\
35 init,\
36 query_format,\
37 get_info,\
38 draw_frame,\
39 draw_slice,\
40 flip_page,\
41 uninit,\
42 };
43