Mercurial > mplayer.hg
annotate libvo/vo_null.c @ 7729:36170c5a3c9a
liblzo realtime video codec support (decoding only)
patch by Tilmann Bitterberg <transcode@tibit.org>
author | arpi |
---|---|
date | Sun, 13 Oct 2002 21:40:10 +0000 |
parents | eca7dbad0166 |
children | 9fc45fe0d444 |
rev | line source |
---|---|
1 | 1 /* |
2 * video_out_null.c | |
3 * | |
4 * Copyright (C) Aaron Holtzman - June 2000 | |
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 | |
5607 | 24 #include <stdio.h> |
25 #include <stdlib.h> | |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
26 #include <errno.h> |
1 | 27 #include "config.h" |
28 #include "video_out.h" | |
29 #include "video_out_internal.h" | |
30 | |
31 LIBVO_EXTERN(null) | |
32 | |
33 | |
34 static vo_info_t vo_info = | |
35 { | |
36 "Null video output", | |
37 "null", | |
38 "Aaron Holtzman <aholtzma@ess.engr.uvic.ca>", | |
39 "" | |
40 }; | |
41 | |
42 static uint32_t image_width, image_height; | |
43 | |
44 //static uint32_t | |
45 static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) | |
46 //draw_slice(uint8_t *src[], uint32_t slice_num) | |
47 { | |
48 return 0; | |
49 } | |
50 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
31
diff
changeset
|
51 static void draw_osd(void) |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
31
diff
changeset
|
52 { |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
31
diff
changeset
|
53 } |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
31
diff
changeset
|
54 |
1 | 55 static void |
56 flip_page(void) | |
57 { | |
58 } | |
59 | |
60 static uint32_t | |
61 draw_frame(uint8_t *src[]) | |
62 { | |
63 return 0; | |
64 } | |
65 | |
66 static uint32_t | |
67 query_format(uint32_t format) | |
68 { | |
69 return 1; | |
70 } | |
71 | |
72 static uint32_t | |
7124
eca7dbad0166
finally removed query_vaa, bes_da and vo_tune_info - the obsoleted libvo api
alex
parents:
5607
diff
changeset
|
73 config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format) |
1 | 74 { |
75 image_width = width; | |
76 image_height = height; | |
77 return 0; | |
78 } | |
79 | |
80 static const vo_info_t* | |
81 get_info(void) | |
82 { | |
83 return &vo_info; | |
84 } | |
85 | |
86 static void | |
87 uninit(void) | |
88 { | |
89 } | |
90 | |
91 | |
31 | 92 static void check_events(void) |
93 { | |
94 } | |
1 | 95 |
4352 | 96 static uint32_t preinit(const char *arg) |
97 { | |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
98 if(arg) |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
99 { |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
100 printf("vo_null: Unknown subdevice: %s\n",arg); |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
101 return ENOSYS; |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
102 } |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
103 return 0; |
4352 | 104 } |
31 | 105 |
4596 | 106 static uint32_t control(uint32_t request, void *data, ...) |
4352 | 107 { |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
108 switch (request) { |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
109 case VOCTRL_QUERY_FORMAT: |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
110 return query_format(*((uint32_t*)data)); |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
111 } |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
112 return VO_NOTIMPL; |
4352 | 113 } |