Mercurial > mplayer.hg
annotate libvo/vo_null.c @ 5252:5c2a8e6e860c
insert mpeg4 video header into the first chunk
author | arpi |
---|---|
date | Thu, 21 Mar 2002 20:43:43 +0000 |
parents | 32e1f5042f65 |
children | 1972c3475d93 |
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 | |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
24 #include <errno.h> |
1 | 25 #include "config.h" |
26 #include "video_out.h" | |
27 #include "video_out_internal.h" | |
28 | |
29 LIBVO_EXTERN(null) | |
30 | |
31 | |
32 static vo_info_t vo_info = | |
33 { | |
34 "Null video output", | |
35 "null", | |
36 "Aaron Holtzman <aholtzma@ess.engr.uvic.ca>", | |
37 "" | |
38 }; | |
39 | |
40 static uint32_t image_width, image_height; | |
41 | |
42 //static uint32_t | |
43 static uint32_t draw_slice(uint8_t *image[], int stride[], int w,int h,int x,int y) | |
44 //draw_slice(uint8_t *src[], uint32_t slice_num) | |
45 { | |
46 return 0; | |
47 } | |
48 | |
1501
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
31
diff
changeset
|
49 static void draw_osd(void) |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
31
diff
changeset
|
50 { |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
31
diff
changeset
|
51 } |
d40f2b686846
changes according to -utf8 option, draw_osd() function added
atlka
parents:
31
diff
changeset
|
52 |
1 | 53 static void |
54 flip_page(void) | |
55 { | |
56 } | |
57 | |
58 static uint32_t | |
59 draw_frame(uint8_t *src[]) | |
60 { | |
61 return 0; | |
62 } | |
63 | |
64 static uint32_t | |
65 query_format(uint32_t format) | |
66 { | |
67 return 1; | |
68 } | |
69 | |
70 static uint32_t | |
4433 | 71 config(uint32_t width, uint32_t height, uint32_t d_width, uint32_t d_height, uint32_t fullscreen, char *title, uint32_t format,const vo_tune_info_t *info) |
1 | 72 { |
73 image_width = width; | |
74 image_height = height; | |
75 return 0; | |
76 } | |
77 | |
78 static const vo_info_t* | |
79 get_info(void) | |
80 { | |
81 return &vo_info; | |
82 } | |
83 | |
84 static void | |
85 uninit(void) | |
86 { | |
87 } | |
88 | |
89 | |
31 | 90 static void check_events(void) |
91 { | |
92 } | |
1 | 93 |
4352 | 94 static uint32_t preinit(const char *arg) |
95 { | |
4737
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
96 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
|
97 { |
32e1f5042f65
I don't like such reports: '-vo dga:vidix or -vo x11:vidix works fine for me'
nick
parents:
4596
diff
changeset
|
98 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
|
99 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
|
100 } |
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 0; |
4352 | 102 } |
31 | 103 |
4596 | 104 static uint32_t control(uint32_t request, void *data, ...) |
4352 | 105 { |
4592
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
106 switch (request) { |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
107 case VOCTRL_QUERY_FORMAT: |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
108 return query_format(*((uint32_t*)data)); |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
109 } |
5fbfd8545c3b
query_ stuff replaced by new control() - patch by David Holm
arpi
parents:
4433
diff
changeset
|
110 return VO_NOTIMPL; |
4352 | 111 } |