2 * based on video_out_null.c from mpeg2dec
4 * Copyright (C) Aaron Holtzman - June 2000
6 * This file is part of MPlayer.
8 * MPlayer 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 of the License, or
11 * (at your option) any later version.
13 * MPlayer 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.
18 * You should have received a copy of the GNU General Public License along
19 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
30 #include "video_out.h"
31 #include "video_out_internal.h"
33 static const vo_info_t info
=
37 "Aaron Holtzman <aholtzma@ess.engr.uvic.ca>",
41 const LIBVO_EXTERN(null
)
43 static uint32_t image_width
, image_height
;
46 static int draw_slice(uint8_t *image
[], int stride
[], int w
,int h
,int x
,int y
)
47 //draw_slice(uint8_t *src[], uint32_t slice_num)
52 static void draw_osd(void)
62 draw_frame(uint8_t *src
[])
68 query_format(uint32_t format
)
70 return VFCAP_CSP_SUPPORTED
;
74 config(uint32_t width
, uint32_t height
, uint32_t d_width
, uint32_t d_height
, uint32_t flags
, char *title
, uint32_t format
)
77 image_height
= height
;
87 static void check_events(void)
91 static int preinit(const char *arg
)
95 mp_tmsg(MSGT_VO
,MSGL_WARN
, "[VO_NULL] Unknown subdevice: %s.\n",arg
);
101 static int control(uint32_t request
, void *data
)
104 case VOCTRL_QUERY_FORMAT
:
105 return query_format(*((uint32_t*)data
));