26739
|
1 /*
|
|
2 * based on video_out_null.c from mpeg2dec
|
1
|
3 *
|
26739
|
4 * Copyright (C) Aaron Holtzman - June 2000
|
|
5 *
|
|
6 * This file is part of MPlayer.
|
1
|
7 *
|
26739
|
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.
|
|
12 *
|
|
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.
|
|
17 *
|
|
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.
|
1
|
21 */
|
|
22
|
5607
|
23 #include <stdio.h>
|
|
24 #include <stdlib.h>
|
8123
|
25 #include <string.h>
|
4737
|
26 #include <errno.h>
|
1
|
27 #include "config.h"
|
18234
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
diff
changeset
|
28 #include "mp_msg.h"
|
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
diff
changeset
|
29 #include "help_mp.h"
|
1
|
30 #include "video_out.h"
|
|
31 #include "video_out_internal.h"
|
|
32
|
29263
|
33 static const vo_info_t info =
|
1
|
34 {
|
|
35 "Null video output",
|
|
36 "null",
|
|
37 "Aaron Holtzman <aholtzma@ess.engr.uvic.ca>",
|
|
38 ""
|
|
39 };
|
|
40
|
25220
|
41 const LIBVO_EXTERN(null)
|
8148
|
42
|
1
|
43 static uint32_t image_width, image_height;
|
|
44
|
|
45 //static uint32_t
|
16171
|
46 static int draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y)
|
1
|
47 //draw_slice(uint8_t *src[], uint32_t slice_num)
|
|
48 {
|
|
49 return 0;
|
|
50 }
|
|
51
|
1501
|
52 static void draw_osd(void)
|
|
53 {
|
|
54 }
|
|
55
|
1
|
56 static void
|
|
57 flip_page(void)
|
|
58 {
|
|
59 }
|
|
60
|
16171
|
61 static int
|
1
|
62 draw_frame(uint8_t *src[])
|
|
63 {
|
|
64 return 0;
|
|
65 }
|
|
66
|
16171
|
67 static int
|
1
|
68 query_format(uint32_t format)
|
|
69 {
|
15212
|
70 return VFCAP_CSP_SUPPORTED;
|
1
|
71 }
|
|
72
|
16171
|
73 static int
|
15212
|
74 config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t flags, char *title, uint32_t format)
|
1
|
75 {
|
|
76 image_width = width;
|
|
77 image_height = height;
|
|
78 return 0;
|
|
79 }
|
|
80
|
|
81 static void
|
|
82 uninit(void)
|
|
83 {
|
|
84 }
|
|
85
|
|
86
|
31
|
87 static void check_events(void)
|
|
88 {
|
|
89 }
|
1
|
90
|
16171
|
91 static int preinit(const char *arg)
|
4352
|
92 {
|
29263
|
93 if(arg)
|
4737
|
94 {
|
18234
a107276371a8
Part 5 and final of otvos attila's oattila AT chello-hu mp_msg changes, with lots of corrections
reynaldo
diff
changeset
|
95 mp_msg(MSGT_VO,MSGL_WARN, MSGTR_LIBVO_NULL_UnknownSubdevice,arg);
|
4737
|
96 return ENOSYS;
|
|
97 }
|
|
98 return 0;
|
4352
|
99 }
|
31
|
100
|
16171
|
101 static int control(uint32_t request, void *data, ...)
|
4352
|
102 {
|
4592
|
103 switch (request) {
|
|
104 case VOCTRL_QUERY_FORMAT:
|
|
105 return query_format(*((uint32_t*)data));
|
|
106 }
|
|
107 return VO_NOTIMPL;
|
4352
|
108 }
|