annotate libvo/vo_cvidix.c @ 12225:eb79a6192b2b

New filter by Ville Saari (114263 at foo dot bar dot org) for removing duplicate frames from telecined video that was incorrectly deinterlaced. Minor bugfixes added by me.
author rfelker
date Sat, 17 Apr 2004 17:08:31 +0000
parents 2e367138d4b5
children c857885bf049
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
1 /*
11232
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
2 VIDIX accelerated overlay on (black) background
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
3
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
4 should work on any OS
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
5
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
6 (C) Sascha Sommer
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
7
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
8
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
9 */
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
10
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
11 #include <stdio.h>
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
12 #include <stdlib.h>
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
13 #include <string.h>
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
14 #include <math.h>
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
15 #include <errno.h>
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
16
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
17 #include "config.h"
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
18 #include "video_out.h"
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
19 #include "video_out_internal.h"
11232
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
20 #include "aspect.h"
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
21 #include "geometry.h"
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
22
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
23 #include "mp_msg.h"
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
24
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
25 #include "vosub_vidix.h"
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
26 #include "../vidix/vidixlib.h"
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
27
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
28
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
29 static vo_info_t info = {
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
30 "VIDIX",
11017
afdf982f0673 consolevidix -> cvidix
faust3
parents: 10979
diff changeset
31 "cvidix",
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
32 "Sascha Sommer",
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
33 ""
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
34 };
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
35
11017
afdf982f0673 consolevidix -> cvidix
faust3
parents: 10979
diff changeset
36 LIBVO_EXTERN(cvidix)
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
37
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
38 #define UNUSED(x) ((void)(x)) /* Removes warning about unused arguments */
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
39
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
40 /* VIDIX related */
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
41 static char *vidix_name;
11232
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
42 static uint32_t swidth,sheight,sformat;
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
43
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
44 static vidix_grkey_t gr_key;
11232
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
45
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
46
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
47 static uint32_t setup_vidix(){
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
48 int x=vo_dx,y=vo_dy;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
49 aspect(&vo_dwidth,&vo_dheight,vo_fs ? A_ZOOM : A_NOZOOM);
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
50 if(vo_fs){
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
51 if(vo_dwidth <= vo_screenwidth)x = (vo_screenwidth - vo_dwidth)/2;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
52 else x=0;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
53 if(vo_dheight <= vo_screenheight)y = (vo_screenheight - vo_dheight)/2;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
54 else y=0;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
55 }
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
56 if(vo_config_count)vidix_stop();
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
57 if(vidix_init(swidth, sheight, x, y, vo_dwidth, vo_dheight, sformat, 32, vo_screenwidth,vo_screenheight)){
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
58 mp_msg(MSGT_VO, MSGL_FATAL, "Can't setup VIDIX driver: %s\n", strerror(errno));
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
59 return 1;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
60 }
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
61 vidix_start();
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
62 if(vidix_grkey_support()){
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
63 vidix_grkey_get(&gr_key);
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
64 gr_key.key_op = KEYS_PUT;
11232
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
65 if (!vo_fs && !(vo_colorkey & 0xff000000)){
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
66 gr_key.ckey.op = CKEY_TRUE;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
67 gr_key.ckey.red = (vo_colorkey & 0x00FF0000) >> 16;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
68 gr_key.ckey.green = (vo_colorkey & 0x0000FF00) >> 8;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
69 gr_key.ckey.blue = vo_colorkey & 0x000000FF;
11158
85f4534d1edb Colorkeying can be disabled. Fbdev, svga and vesa vidix colorkeying support
alex
parents: 11019
diff changeset
70 }
11232
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
71 else gr_key.ckey.op = CKEY_FALSE;
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
72 vidix_grkey_set(&gr_key);
11232
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
73 }
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
74 return 0;
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
75 }
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
76
11232
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
77 static uint32_t config(uint32_t width, uint32_t height, uint32_t d_width,uint32_t d_height, uint32_t flags, char *title, uint32_t format){
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
78 vo_fs = flags & 0x01;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
79 if(!vo_screenwidth)vo_screenwidth=640;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
80 if(!vo_screenheight)vo_screenheight=480;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
81 swidth = width;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
82 sheight = height;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
83 sformat = format;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
84 vo_dwidth=d_width;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
85 vo_dheight=d_height;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
86 aspect_save_orig(width,height);
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
87 aspect_save_prescale(d_width,d_height);
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
88 aspect_save_screenres(vo_screenwidth,vo_screenheight);
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
89 if(!vo_geometry){
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
90 vo_dx=0;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
91 vo_dy=0;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
92 }
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
93 else geometry(&vo_dx, &vo_dy, &vo_dwidth, &vo_dheight,vo_screenwidth,vo_screenheight);
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
94 return setup_vidix();
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
95 }
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
96
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
97 static void check_events(void){
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
98 }
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
99
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
100 /* draw_osd, flip_page, draw_slice, draw_frame should be
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
101 overwritten with vidix functions (vosub_vidix.c) */
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
102 static void draw_osd(void){
11019
69daa4fb97d9 consolevidix -> cvidix
faust3
parents: 11017
diff changeset
103 mp_msg(MSGT_VO, MSGL_FATAL, "vo_cvidix: error: didn't use vidix draw_osd!\n");
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
104 return;
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
105 }
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
106
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
107 static void flip_page(void){
11019
69daa4fb97d9 consolevidix -> cvidix
faust3
parents: 11017
diff changeset
108 mp_msg(MSGT_VO, MSGL_FATAL, "vo_cvidix: error: didn't use vidix flip_page!\n");
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
109 return;
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
110 }
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
111
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
112 static uint32_t draw_slice(uint8_t *src[], int stride[],int w, int h, int x, int y){
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
113 UNUSED(src);
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
114 UNUSED(stride);
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
115 UNUSED(w);
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
116 UNUSED(h);
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
117 UNUSED(x);
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
118 UNUSED(y);
11019
69daa4fb97d9 consolevidix -> cvidix
faust3
parents: 11017
diff changeset
119 mp_msg(MSGT_VO, MSGL_FATAL, "vo_cvidix: error: didn't use vidix draw_slice!\n");
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
120 return -1;
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
121 }
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
122
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
123 static uint32_t draw_frame(uint8_t *src[]){
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
124 UNUSED(src);
11019
69daa4fb97d9 consolevidix -> cvidix
faust3
parents: 11017
diff changeset
125 mp_msg(MSGT_VO, MSGL_FATAL, "vo_cvidix: error: didn't use vidix draw_frame!\n");
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
126 return -1;
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
127 }
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
128
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
129 static uint32_t query_format(uint32_t format){
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
130 return(vidix_query_fourcc(format));
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
131 }
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
132
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
133 static void uninit(void){
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
134 if(!vo_config_count) return;
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
135 vidix_term();
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
136 if(vidix_name){
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
137 free(vidix_name);
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
138 vidix_name = NULL;
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
139 }
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
140 }
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
141
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
142 static uint32_t preinit(const char *arg){
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
143 if(arg)vidix_name = strdup(arg);
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
144 else {
11462
2e367138d4b5 message expanded with hint to use -v option
gabucino
parents: 11232
diff changeset
145 mp_msg(MSGT_VO, MSGL_INFO, "vo_cvidix: No vidix driver name provided, probing available ones (-v option for details)!\n");
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
146 vidix_name = NULL;
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
147 }
11019
69daa4fb97d9 consolevidix -> cvidix
faust3
parents: 11017
diff changeset
148 if(vidix_preinit(vidix_name, &video_out_cvidix))return 1;
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
149 return 0;
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
150 }
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
151
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
152 static uint32_t control(uint32_t request, void *data, ...){
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
153 switch (request) {
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
154 case VOCTRL_QUERY_FORMAT:
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
155 return query_format(*((uint32_t*)data));
11232
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
156 case VOCTRL_FULLSCREEN:
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
157 if(vo_fs)vo_fs=0;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
158 else vo_fs=1;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
159 setup_vidix();
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
160 return VO_TRUE;
147a4c50214d added aspect && geometry support
faust3
parents: 11216
diff changeset
161 }
10979
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
162 return vidix_control(request, data);
ea4426db0db5 new vidix vo modules for textmode console and windows
faust3
parents:
diff changeset
163 }