annotate xacodec.c @ 2381:448559791c0e

cvid works but buggy
author arpi
date Mon, 22 Oct 2001 20:48:39 +0000
parents 3ad626921328
children c17b7c2f747b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
1 /*
0959af64c098 needs to be hacked
alex
parents:
diff changeset
2 xacodec.c
0959af64c098 needs to be hacked
alex
parents:
diff changeset
3 XAnim Video Codec DLL support
0959af64c098 needs to be hacked
alex
parents:
diff changeset
4
0959af64c098 needs to be hacked
alex
parents:
diff changeset
5 (C) 2001 Alex Beregszaszi <alex@naxine.org>
0959af64c098 needs to be hacked
alex
parents:
diff changeset
6 */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
7
0959af64c098 needs to be hacked
alex
parents:
diff changeset
8 #include <stdio.h>
2376
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
9 #include <stdlib.h>
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
10
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
11 #include <dlfcn.h> /* dlsym, dlopen, dlclose */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
12 #include <stdarg.h> /* va_alist, va_start, va_end */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
13 #include <errno.h> /* strerror, errno */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
14
2376
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
15 #include "config.h"
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
16 #define XACODEC_PATH "/usr/lib/xanim"
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
17
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
18 #include "mp_msg.h"
2376
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
19 #include "bswap.h"
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
20
0959af64c098 needs to be hacked
alex
parents:
diff changeset
21 #include "stream.h"
0959af64c098 needs to be hacked
alex
parents:
diff changeset
22 #include "demuxer.h"
0959af64c098 needs to be hacked
alex
parents:
diff changeset
23 #include "codec-cfg.h"
0959af64c098 needs to be hacked
alex
parents:
diff changeset
24 #include "stheader.h"
2376
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
25
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
26 //#include "loader/DirectShow/default.h"
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
27
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
28 #include "libvo/img_format.h"
0959af64c098 needs to be hacked
alex
parents:
diff changeset
29 #include "xacodec.h"
0959af64c098 needs to be hacked
alex
parents:
diff changeset
30
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
31 typedef char xaBYTE;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
32 typedef short xaSHORT;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
33 typedef int xaLONG;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
34
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
35 typedef unsigned char xaUBYTE;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
36 typedef unsigned short xaUSHORT;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
37 typedef unsigned int xaULONG;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
38
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
39 #define xaFALSE 0
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
40 #define xaTRUE 1
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
41
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
42
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
43 #ifndef RTLD_NOW
0959af64c098 needs to be hacked
alex
parents:
diff changeset
44 #define RLTD_NOW 2
0959af64c098 needs to be hacked
alex
parents:
diff changeset
45 #endif
0959af64c098 needs to be hacked
alex
parents:
diff changeset
46 #ifndef RTLD_LAZY
0959af64c098 needs to be hacked
alex
parents:
diff changeset
47 #define RLTD_LAZY 1
0959af64c098 needs to be hacked
alex
parents:
diff changeset
48 #endif
0959af64c098 needs to be hacked
alex
parents:
diff changeset
49 #ifndef RTLD_GLOBAL
0959af64c098 needs to be hacked
alex
parents:
diff changeset
50 #define RLTD_GLOBAL 256
0959af64c098 needs to be hacked
alex
parents:
diff changeset
51 #endif
0959af64c098 needs to be hacked
alex
parents:
diff changeset
52
0959af64c098 needs to be hacked
alex
parents:
diff changeset
53 extern int verbose;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
54
0959af64c098 needs to be hacked
alex
parents:
diff changeset
55 typedef struct xacodec_driver
0959af64c098 needs to be hacked
alex
parents:
diff changeset
56 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
57 XA_DEC_INFO *decinfo;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
58 void *file_handler;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
59 long (*iq_func)(XA_CODEC_HDR *codec_hdr);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
60 unsigned int (*dec_func)(unsigned char *image, unsigned char *delta,
0959af64c098 needs to be hacked
alex
parents:
diff changeset
61 unsigned int dsize, XA_DEC_INFO *dec_info);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
62 void (*close_func)();
0959af64c098 needs to be hacked
alex
parents:
diff changeset
63 } xacodec_driver_t;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
64
0959af64c098 needs to be hacked
alex
parents:
diff changeset
65 xacodec_driver_t *xacodec_driver = NULL;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
66
0959af64c098 needs to be hacked
alex
parents:
diff changeset
67
0959af64c098 needs to be hacked
alex
parents:
diff changeset
68 /* Needed by XAnim DLLs */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
69 int XA_Print(char *fmt, ...)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
70 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
71 va_list vallist;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
72 char buf[1024];
0959af64c098 needs to be hacked
alex
parents:
diff changeset
73
0959af64c098 needs to be hacked
alex
parents:
diff changeset
74 va_start(vallist, fmt);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
75 vsnprintf(buf, 1024, fmt, vallist);
2377
3ad626921328 fixing...
arpi
parents: 2376
diff changeset
76 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "[xacodec] %s\n", buf);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
77 va_end(vallist);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
78 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
79
0959af64c098 needs to be hacked
alex
parents:
diff changeset
80 int TheEnd1(char *err_mess)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
81 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
82 XA_Print("error: %s - exiting\n", err_mess);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
83 xacodec_exit();
0959af64c098 needs to be hacked
alex
parents:
diff changeset
84 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
85 /* end of crap */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
86
0959af64c098 needs to be hacked
alex
parents:
diff changeset
87 /* load, init and query */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
88 int xacodec_init(char *filename, xacodec_driver_t *codec_driver)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
89 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
90 void *(*what_the)();
0959af64c098 needs to be hacked
alex
parents:
diff changeset
91 char *error;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
92 XAVID_MOD_HDR *mod_hdr;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
93 XAVID_FUNC_HDR *func;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
94 int i;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
95
0959af64c098 needs to be hacked
alex
parents:
diff changeset
96 codec_driver->file_handler = dlopen(filename, RTLD_NOW|RTLD_GLOBAL);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
97 if (!codec_driver->file_handler)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
98 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
99 error = dlerror();
0959af64c098 needs to be hacked
alex
parents:
diff changeset
100 if (error)
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
101 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: failed to init %s while %s\n", filename, error);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
102 else
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
103 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: failed ot init (dlopen) %s\n", filename);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
104 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
105 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
106
0959af64c098 needs to be hacked
alex
parents:
diff changeset
107 what_the = dlsym(codec_driver->file_handler, "What_The");
0959af64c098 needs to be hacked
alex
parents:
diff changeset
108 if ((error = dlerror()) != NULL)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
109 {
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
110 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: failed to init %s while %s\n", filename, error);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
111 dlclose(codec_driver->file_handler);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
112 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
113 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
114
0959af64c098 needs to be hacked
alex
parents:
diff changeset
115 mod_hdr = what_the();
0959af64c098 needs to be hacked
alex
parents:
diff changeset
116 if (!mod_hdr)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
117 {
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
118 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: 'What_The' function failed in %s\n", filename);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
119 dlclose(codec_driver->file_handler);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
120 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
121 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
122
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
123 mp_msg(MSGT_DECVIDEO, MSGL_INFO, "=== XAnim Codec ===\n");
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
124 mp_msg(MSGT_DECVIDEO, MSGL_INFO, " Filename: %s (API revision: %x)\n", filename, mod_hdr->api_rev);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
125 mp_msg(MSGT_DECVIDEO, MSGL_INFO, " Codec: %s. Rev: %s\n", mod_hdr->desc, mod_hdr->rev);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
126 if (mod_hdr->copyright)
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
127 mp_msg(MSGT_DECVIDEO, MSGL_INFO, " %s\n", mod_hdr->copyright);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
128 if (mod_hdr->mod_author)
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
129 mp_msg(MSGT_DECVIDEO, MSGL_INFO, " Module Author(s): %s\n", mod_hdr->mod_author);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
130 if (mod_hdr->authors)
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
131 mp_msg(MSGT_DECVIDEO, MSGL_INFO, " Codec Author(s): %s\n", mod_hdr->authors);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
132
0959af64c098 needs to be hacked
alex
parents:
diff changeset
133 if (mod_hdr->api_rev > XAVID_API_REV)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
134 {
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
135 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: not supported api revision in %s\n", filename);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
136 dlclose(codec_driver->file_handler);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
137 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
138 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
139
0959af64c098 needs to be hacked
alex
parents:
diff changeset
140 func = mod_hdr->funcs;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
141 if (!func)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
142 {
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
143 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: function table error in %s\n", filename);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
144 dlclose(codec_driver->file_handler);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
145 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
146 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
147
0959af64c098 needs to be hacked
alex
parents:
diff changeset
148 if (verbose > 2)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
149 printf("dump: funcs: 0x%08x (num %d)\n", mod_hdr->funcs, mod_hdr->num_funcs);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
150 for (i = 0; i < mod_hdr->num_funcs; i++)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
151 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
152 if (verbose > 2)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
153 printf("dump(%d): %d %d [iq:0x%08x d:0x%08x]\n", i,
0959af64c098 needs to be hacked
alex
parents:
diff changeset
154 func[i].what, func[i].id, func[i].iq_func, func[i].dec_func);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
155 if (func[i].what & XAVID_AVI_QUERY)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
156 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
157 printf("0x%08x: avi init/query func (id: %d)\n",
0959af64c098 needs to be hacked
alex
parents:
diff changeset
158 func[i].iq_func, func[i].id);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
159 codec_driver->iq_func = func[i].iq_func;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
160 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
161 if (func[i].what & XAVID_QT_QUERY)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
162 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
163 printf("0x%08x: qt init/query func (id: %d)\n",
0959af64c098 needs to be hacked
alex
parents:
diff changeset
164 func[i].iq_func, func[i].id);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
165 codec_driver->iq_func = func[i].iq_func;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
166 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
167 if (func[i].what & XAVID_DEC_FUNC)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
168 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
169 printf("0x%08x: decoder func (init/query: 0x%08x) (id: %d)\n",
0959af64c098 needs to be hacked
alex
parents:
diff changeset
170 func[i].dec_func, func[i].iq_func, func[i].id);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
171 codec_driver->dec_func = func[i].dec_func;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
172 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
173 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
174 return(1);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
175 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
176
0959af64c098 needs to be hacked
alex
parents:
diff changeset
177 int xacodec_query(xacodec_driver_t *codec_driver, XA_CODEC_HDR *codec_hdr)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
178 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
179 long codec_ret;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
180
0959af64c098 needs to be hacked
alex
parents:
diff changeset
181 codec_ret = codec_driver->iq_func(codec_hdr);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
182 switch(codec_ret)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
183 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
184 case CODEC_SUPPORTED:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
185 codec_driver->dec_func = codec_hdr->decoder;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
186 printf("Codec is supported: found decoder for %s at 0x%08x\n",
0959af64c098 needs to be hacked
alex
parents:
diff changeset
187 codec_hdr->description, codec_hdr->decoder);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
188 return(1);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
189 case CODEC_UNSUPPORTED:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
190 printf("Codec is unsupported\n");
0959af64c098 needs to be hacked
alex
parents:
diff changeset
191 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
192 case CODEC_UNKNOWN:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
193 default:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
194 printf("Codec is unknown\n");
0959af64c098 needs to be hacked
alex
parents:
diff changeset
195 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
196 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
197 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
198
0959af64c098 needs to be hacked
alex
parents:
diff changeset
199 char *xacodec_def_path = XACODEC_PATH;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
200
0959af64c098 needs to be hacked
alex
parents:
diff changeset
201 int xacodec_init_video(sh_video_t *vidinfo, int out_format)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
202 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
203 char dll[1024];
0959af64c098 needs to be hacked
alex
parents:
diff changeset
204 XA_CODEC_HDR codec_hdr;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
205
0959af64c098 needs to be hacked
alex
parents:
diff changeset
206 xacodec_driver = realloc(xacodec_driver, sizeof(struct xacodec_driver));
0959af64c098 needs to be hacked
alex
parents:
diff changeset
207 if (xacodec_driver == NULL)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
208 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
209
0959af64c098 needs to be hacked
alex
parents:
diff changeset
210 xacodec_driver->iq_func = NULL;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
211 xacodec_driver->dec_func = NULL;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
212 xacodec_driver->close_func = NULL;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
213
0959af64c098 needs to be hacked
alex
parents:
diff changeset
214 snprintf(dll, 1024, "%s/%s", xacodec_def_path, vidinfo->codec->dll);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
215 if (xacodec_init(dll, xacodec_driver) == 0)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
216 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
217
0959af64c098 needs to be hacked
alex
parents:
diff changeset
218 codec_hdr.anim_hdr = malloc(4096);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
219 codec_hdr.description = vidinfo->codec->info;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
220 codec_hdr.compression = bswap_32(vidinfo->format);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
221 codec_hdr.decoder = NULL;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
222 codec_hdr.avi_ctab_flag = 0;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
223 codec_hdr.avi_read_ext = NULL;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
224 codec_hdr.xapi_rev = 0x0001;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
225 codec_hdr.extra = NULL;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
226 codec_hdr.x = vidinfo->disp_w;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
227 codec_hdr.y = vidinfo->disp_h;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
228
0959af64c098 needs to be hacked
alex
parents:
diff changeset
229 switch(out_format)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
230 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
231 case IMGFMT_RGB8:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
232 codec_hdr.depth = 8;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
233 break;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
234 case IMGFMT_RGB15:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
235 codec_hdr.depth = 15;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
236 break;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
237 case IMGFMT_RGB16:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
238 codec_hdr.depth = 16;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
239 break;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
240 case IMGFMT_RGB24:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
241 codec_hdr.depth = 24;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
242 break;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
243 case IMGFMT_RGB32:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
244 codec_hdr.depth = 32;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
245 break;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
246 case IMGFMT_BGR8:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
247 codec_hdr.depth = 8;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
248 break;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
249 case IMGFMT_BGR15:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
250 codec_hdr.depth = 15;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
251 break;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
252 case IMGFMT_BGR16:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
253 codec_hdr.depth = 16;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
254 break;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
255 case IMGFMT_BGR24:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
256 codec_hdr.depth = 24;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
257 break;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
258 case IMGFMT_BGR32:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
259 codec_hdr.depth = 32;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
260 break;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
261 default:
0959af64c098 needs to be hacked
alex
parents:
diff changeset
262 printf("xacodec: not supported image format (%s)\n",
0959af64c098 needs to be hacked
alex
parents:
diff changeset
263 vo_format_name(out_format));
0959af64c098 needs to be hacked
alex
parents:
diff changeset
264 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
265 }
2376
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
266 mp_msg(MSGT_DECVIDEO,MSGL_INFO, "xacodec: querying for %dx%d %dbit [fourcc: %4x] (%s)...\n",
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
267 codec_hdr.x, codec_hdr.y, codec_hdr.depth, codec_hdr.compression,
0959af64c098 needs to be hacked
alex
parents:
diff changeset
268 codec_hdr.description);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
269
0959af64c098 needs to be hacked
alex
parents:
diff changeset
270 if (xacodec_query(xacodec_driver, &codec_hdr) == 0)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
271 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
272
0959af64c098 needs to be hacked
alex
parents:
diff changeset
273 // free(codec_hdr.anim_hdr);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
274
0959af64c098 needs to be hacked
alex
parents:
diff changeset
275 xacodec_driver->decinfo = malloc(sizeof(XA_DEC_INFO));
0959af64c098 needs to be hacked
alex
parents:
diff changeset
276 xacodec_driver->decinfo->cmd = 0;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
277 xacodec_driver->decinfo->skip_flag = 0;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
278 xacodec_driver->decinfo->imagex = xacodec_driver->decinfo->xe = codec_hdr.x;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
279 xacodec_driver->decinfo->imagey = xacodec_driver->decinfo->ye = codec_hdr.y;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
280 xacodec_driver->decinfo->imaged = codec_hdr.depth;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
281 xacodec_driver->decinfo->chdr = NULL;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
282 xacodec_driver->decinfo->map_flag = 0; /* xaFALSE */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
283 xacodec_driver->decinfo->map = NULL;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
284 xacodec_driver->decinfo->xs = xacodec_driver->decinfo->ys = 0;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
285 xacodec_driver->decinfo->special = 0;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
286 xacodec_driver->decinfo->extra = codec_hdr.extra;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
287
2377
3ad626921328 fixing...
arpi
parents: 2376
diff changeset
288 // vidinfo->our_out_buffer = malloc(codec_hdr.y * codec_hdr.x * ((codec_hdr.depth+7)/8));
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
289 vidinfo->our_out_buffer = malloc(codec_hdr.y * codec_hdr.x * codec_hdr.depth);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
290
2377
3ad626921328 fixing...
arpi
parents: 2376
diff changeset
291 // printf("out_buf size: %d\n", codec_hdr.y * codec_hdr.x * codec_hdr.depth);
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
292
0959af64c098 needs to be hacked
alex
parents:
diff changeset
293 if (vidinfo->our_out_buffer == NULL)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
294 {
2376
4edd4d7f4511 mplayerization
arpi
parents: 2373
diff changeset
295 mp_msg(MSGT_DECVIDEO,MSGL_ERR, "cannot allocate memory for output: %s",
2372
0959af64c098 needs to be hacked
alex
parents:
diff changeset
296 strerror(errno));
0959af64c098 needs to be hacked
alex
parents:
diff changeset
297 return(0);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
298 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
299
0959af64c098 needs to be hacked
alex
parents:
diff changeset
300 printf("extra: %08x - %dx%d %dbit\n", codec_hdr.extra,
0959af64c098 needs to be hacked
alex
parents:
diff changeset
301 codec_hdr.x, codec_hdr.y, codec_hdr.depth);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
302 return(1);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
303 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
304
0959af64c098 needs to be hacked
alex
parents:
diff changeset
305 #define ACT_DLT_NORM 0x00000000
0959af64c098 needs to be hacked
alex
parents:
diff changeset
306 #define ACT_DLT_BODY 0x00000001
0959af64c098 needs to be hacked
alex
parents:
diff changeset
307 #define ACT_DLT_XOR 0x00000002
0959af64c098 needs to be hacked
alex
parents:
diff changeset
308 #define ACT_DLT_NOP 0x00000004
0959af64c098 needs to be hacked
alex
parents:
diff changeset
309 #define ACT_DLT_MAPD 0x00000008
0959af64c098 needs to be hacked
alex
parents:
diff changeset
310 #define ACT_DLT_DROP 0x00000010
0959af64c098 needs to be hacked
alex
parents:
diff changeset
311 #define ACT_DLT_BAD 0x80000000
0959af64c098 needs to be hacked
alex
parents:
diff changeset
312
0959af64c098 needs to be hacked
alex
parents:
diff changeset
313 // unsigned int (*dec_func)(unsigned char *image, unsigned char *delta,
0959af64c098 needs to be hacked
alex
parents:
diff changeset
314 // unsigned int dsize, XA_DEC_INFO *dec_info);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
315
0959af64c098 needs to be hacked
alex
parents:
diff changeset
316 int xacodec_decode_frame(uint8_t *frame, int frame_size,
0959af64c098 needs to be hacked
alex
parents:
diff changeset
317 uint8_t *dest, int skip_flag)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
318 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
319 unsigned int ret;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
320 int i;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
321
0959af64c098 needs to be hacked
alex
parents:
diff changeset
322 if (skip_flag > 0)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
323 printf("frame will be dropped..\n");
0959af64c098 needs to be hacked
alex
parents:
diff changeset
324
0959af64c098 needs to be hacked
alex
parents:
diff changeset
325 xacodec_driver->decinfo->skip_flag = skip_flag;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
326
0959af64c098 needs to be hacked
alex
parents:
diff changeset
327 printf("frame: %08x (size: %d) - dest: %08x\n", frame, frame_size, dest);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
328
0959af64c098 needs to be hacked
alex
parents:
diff changeset
329 ret = xacodec_driver->dec_func(dest, frame, frame_size, xacodec_driver->decinfo);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
330
0959af64c098 needs to be hacked
alex
parents:
diff changeset
331 printf("ret: %lu : ", ret);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
332
0959af64c098 needs to be hacked
alex
parents:
diff changeset
333 for (i = 0; i < 10; i++)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
334 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
335 if (frame[i] != dest[i])
0959af64c098 needs to be hacked
alex
parents:
diff changeset
336 printf("%d: [%02x] != [%02x] ", i, frame[i], dest[i]);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
337 else
0959af64c098 needs to be hacked
alex
parents:
diff changeset
338 printf("%d: [%02x] ", frame[i]);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
339 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
340
0959af64c098 needs to be hacked
alex
parents:
diff changeset
341 if (ret == ACT_DLT_NORM)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
342 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
343 printf("norm\n");
0959af64c098 needs to be hacked
alex
parents:
diff changeset
344 return(TRUE);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
345 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
346
0959af64c098 needs to be hacked
alex
parents:
diff changeset
347 /*
0959af64c098 needs to be hacked
alex
parents:
diff changeset
348 if (!(ret & ACT_DLT_MAPD))
0959af64c098 needs to be hacked
alex
parents:
diff changeset
349 xacodec_driver->decinfo->map_flag = 0;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
350 else
0959af64c098 needs to be hacked
alex
parents:
diff changeset
351 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
352 xacodec_driver->decinfo->map_flag = 1;
0959af64c098 needs to be hacked
alex
parents:
diff changeset
353 xacodec_driver->decinfo->map = ...
0959af64c098 needs to be hacked
alex
parents:
diff changeset
354 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
355 */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
356
0959af64c098 needs to be hacked
alex
parents:
diff changeset
357 if (ret & ACT_DLT_NOP)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
358 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
359 printf("nop\n");
0959af64c098 needs to be hacked
alex
parents:
diff changeset
360 return(FALSE); /* dst = 0 */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
361 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
362
0959af64c098 needs to be hacked
alex
parents:
diff changeset
363 if (ret & ACT_DLT_DROP) /* by skip frames and errors */
0959af64c098 needs to be hacked
alex
parents:
diff changeset
364 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
365 printf("drop\n");
0959af64c098 needs to be hacked
alex
parents:
diff changeset
366 return(FALSE);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
367 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
368
0959af64c098 needs to be hacked
alex
parents:
diff changeset
369
0959af64c098 needs to be hacked
alex
parents:
diff changeset
370 if (ret & ACT_DLT_BAD)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
371 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
372 printf("bad\n");
0959af64c098 needs to be hacked
alex
parents:
diff changeset
373 return(FALSE);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
374 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
375
0959af64c098 needs to be hacked
alex
parents:
diff changeset
376 if (ret & ACT_DLT_BODY)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
377 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
378 printf("body\n");
0959af64c098 needs to be hacked
alex
parents:
diff changeset
379 return(TRUE);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
380 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
381
0959af64c098 needs to be hacked
alex
parents:
diff changeset
382 if (ret & ACT_DLT_XOR)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
383 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
384 printf("xor\n");
0959af64c098 needs to be hacked
alex
parents:
diff changeset
385 return(TRUE);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
386 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
387
0959af64c098 needs to be hacked
alex
parents:
diff changeset
388 return(FALSE);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
389 }
0959af64c098 needs to be hacked
alex
parents:
diff changeset
390
0959af64c098 needs to be hacked
alex
parents:
diff changeset
391 int xacodec_exit()
0959af64c098 needs to be hacked
alex
parents:
diff changeset
392 {
0959af64c098 needs to be hacked
alex
parents:
diff changeset
393 if (xacodec_driver->close_func)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
394 xacodec_driver->close_func();
0959af64c098 needs to be hacked
alex
parents:
diff changeset
395 dlclose(xacodec_driver->file_handler);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
396 if (xacodec_driver->decinfo != NULL)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
397 free(xacodec_driver->decinfo);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
398 if (xacodec_driver != NULL)
0959af64c098 needs to be hacked
alex
parents:
diff changeset
399 free(xacodec_driver);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
400 return(TRUE);
0959af64c098 needs to be hacked
alex
parents:
diff changeset
401 }
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
402
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
403
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
404 /* *** XANIM SHIT *** */
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
405 /* like loader/win32.c - mini XANIM library */
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
406
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
407 typedef struct
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
408 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
409 unsigned char r0, g0, b0;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
410 unsigned char r1, g1, b1;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
411 unsigned char r2, g2, b2;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
412 unsigned char r3, g3, b3;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
413 unsigned int clr0_0, clr0_1, clr0_2, clr0_3;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
414 unsigned int clr1_0, clr1_1, clr1_2, clr1_3;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
415 unsigned int clr2_0, clr2_1, clr2_2, clr2_3;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
416 unsigned int clr3_0, clr3_1, clr3_2, clr3_3;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
417 } XA_2x2_Color;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
418
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
419 #define ip_OUT_2x2_1BLK(ip, CAST, cmap2x2, rinc) { register CAST d0, d1; \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
420 *ip++ = d0 = (CAST)(cmap2x2->clr0_0); *ip++ = d0; \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
421 *ip++ = d1 = (CAST)(cmap2x2->clr1_0); *ip = d1; \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
422 ip += rinc; \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
423 *ip++ = d0; *ip++ = d0; *ip++ = d1; *ip = d1; ip += rinc; \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
424 *ip++ = d0 = (CAST)(cmap2x2->clr2_0); *ip++ = d0; \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
425 *ip++ = d1 = (CAST)(cmap2x2->clr3_0); *ip = d1; \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
426 ip += rinc; *ip++ = d0; *ip++ = d0; *ip++ = d1; *ip++ = d1; }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
427
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
428 #define ip_OUT_2x2_2BLKS(ip, CAST, c2x2map0, c2x2map1, rinc) { \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
429 *ip++ = (CAST)(c2x2map0->clr0_0); \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
430 *ip++ = (CAST)(c2x2map0->clr1_0); \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
431 *ip++ = (CAST)(c2x2map1->clr0_0); \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
432 *ip = (CAST)(c2x2map1->clr1_0); ip += rinc; \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
433 *ip++ = (CAST)(c2x2map0->clr2_0); \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
434 *ip++ = (CAST)(c2x2map0->clr3_0); \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
435 *ip++ = (CAST)(c2x2map1->clr2_0); \
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
436 *ip = (CAST)(c2x2map1->clr3_0); }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
437
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
438 void XA_2x2_OUT_1BLK_clr8(unsigned char *image, unsigned int x, unsigned int y,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
439 unsigned int imagex, XA_2x2_Color *cmap2x2)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
440 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
441 unsigned int row_inc = imagex - 3;
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
442 unsigned char *ip = (unsigned char *)(image + 4*(y * imagex + x));
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
443
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
444 // XA_Print("XA_2x2_OUT_1BLK_clr8('image: %08x', 'x: %d', 'y: %d', 'imagex: %d', 'cmap2x2: %08x')",
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
445 // image, x, y, imagex, cmap2x2);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
446 //ip_OUT_2x2_1BLK(ip, unsigned char, cmap2x2, row_inc);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
447
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
448 // simplified yv12->rgb32bpp converter (Y only)
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
449 ip[0]=ip[1]=ip[2]=cmap2x2->clr0_0;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
450 ip[4]=ip[5]=ip[6]=cmap2x2->clr1_0;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
451 ip+=4*imagex;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
452 ip[0]=ip[1]=ip[2]=cmap2x2->clr2_0;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
453 ip[4]=ip[5]=ip[6]=cmap2x2->clr3_0;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
454
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
455 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
456
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
457 void XA_2x2_OUT_4BLKS_clr8(unsigned char *image, unsigned int x, unsigned int y,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
458 unsigned int imagex, XA_2x2_Color *cm0, XA_2x2_Color *cm1, XA_2x2_Color *cm2,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
459 XA_2x2_Color *cm3)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
460 {
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
461 /*
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
462 unsigned int row_inc = imagex - 3;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
463 unsigned char *ip = (unsigned char *)(image + y * imagex + x);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
464
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
465 XA_Print("XA_2x2_OUT_4BLKS_clr8('image: %08x', 'x: %d', 'y: %d', 'imagex: %d', 'cm0: %08x', 'cm1: %08x', 'cm2: %08x', 'cm3: %08x')",
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
466 image, x, y, imagex, cm0, cm1, cm2, cm3);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
467 ip_OUT_2x2_2BLKS(ip, unsigned char, cm0, cm1, row_inc);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
468 ip += row_inc;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
469 ip_OUT_2x2_2BLKS(ip, unsigned char, cm2, cm3, row_inc);
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
470 */
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
471
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
472 XA_2x2_OUT_1BLK_clr8(image,x,y,imagex,cm0);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
473 XA_2x2_OUT_1BLK_clr8(image,x+2,y,imagex,cm1);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
474 XA_2x2_OUT_1BLK_clr8(image,x,y+2,imagex,cm2);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
475 XA_2x2_OUT_1BLK_clr8(image,x+2,y+2,imagex,cm3);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
476
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
477 }
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
478
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
479 void dummy(){
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
480 XA_Print("dummy() called");
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
481 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
482
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
483 void *YUV2x2_Blk_Func(unsigned int image_type, int blks, unsigned int dith_flag)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
484 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
485 void (*color_func)();
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
486
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
487 // XA_Print("YUV2x2_Blk_Func('image_type: %d', 'blks: %d', 'dith_flag: %d')",
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
488 // image_type, blks, dith_flag);
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
489
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
490 if (blks == 1)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
491 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
492 switch(image_type)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
493 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
494 default:
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
495 color_func = XA_2x2_OUT_1BLK_clr8;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
496 break;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
497 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
498 }
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
499 else if(blks == 4)
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
500 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
501 switch(image_type)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
502 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
503 default:
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
504 color_func = XA_2x2_OUT_4BLKS_clr8;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
505 break;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
506 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
507 }
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
508 else printf("Ajajj!\n");
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
509
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
510 // XA_Print("YUV2x2_Blk_Func -> %08x", color_func);
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
511
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
512 return((void *)color_func);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
513 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
514
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
515
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
516 /*****************************************************************************
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
517 * Take Four Y's and UV and put them into a 2x2 Color structure.
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
518 * Convert to display clr.
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
519 ******************/
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
520
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
521 void XA_YUV_2x2_clr(cmap2x2,Y0,Y1,Y2,Y3,U,V,map_flag,map,chdr)
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
522 XA_2x2_Color *cmap2x2;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
523 xaULONG Y0,Y1,Y2,Y3,U,V;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
524 xaULONG map_flag,*map;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
525 XA_CHDR *chdr;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
526 { xaLONG cr,cg,cb; xaULONG r,g,b;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
527
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
528 // printf("XA_YUV_2x2_clr(%p [%d,%d,%d,%d][%d][%d] %d %p %p)\n",
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
529 // cmap2x2,Y0,Y1,Y2,Y3,U,V,map_flag,map,chdr);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
530
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
531 cmap2x2->clr0_0=Y0;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
532 cmap2x2->clr1_0=Y1;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
533 cmap2x2->clr2_0=Y2;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
534 cmap2x2->clr3_0=Y3;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
535 cmap2x2->clr0_1=U;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
536 cmap2x2->clr0_2=V;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
537
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
538 // cmap2x2->clr0_0 = 0x1111;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
539 // cmap2x2->clr1_0 = 0x3535;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
540 // cmap2x2->clr2_0 = 0x7272;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
541 // cmap2x2->clr3_0 = 0xbfbf;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
542
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
543 /*
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
544 xaUBYTE *rl = xa_byte_limit;
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
545
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
546 cr = YUV2_VR_tab[V];
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
547 cb = YUV2_UB_tab[U];
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
548 cg = YUV2_UG_tab[U] + YUV2_VG_tab[V];
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
549
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
550 YUV_TO_RGB(Y0,cr,cg,cb,rl,r,g,b);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
551 cmap2x2->clr0_0 = XA_RGB24_To_CLR32(r,g,b,map_flag,map,chdr);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
552 YUV_TO_RGB(Y1,cr,cg,cb,rl,r,g,b);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
553 cmap2x2->clr1_0 = XA_RGB24_To_CLR32(r,g,b,map_flag,map,chdr);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
554 YUV_TO_RGB(Y2,cr,cg,cb,rl,r,g,b);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
555 cmap2x2->clr2_0 = XA_RGB24_To_CLR32(r,g,b,map_flag,map,chdr);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
556 YUV_TO_RGB(Y3,cr,cg,cb,rl,r,g,b);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
557 cmap2x2->clr3_0 = XA_RGB24_To_CLR32(r,g,b,map_flag,map,chdr);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
558 */
2377
3ad626921328 fixing...
arpi
parents: 2376
diff changeset
559 }
3ad626921328 fixing...
arpi
parents: 2376
diff changeset
560
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
561
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
562
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
563 void *YUV2x2_Map_Func(unsigned int image_type, unsigned int dith_type)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
564 {
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
565 // XA_Print("YUV2x2_Map_Func('image_type: %d', 'dith_type: %d')",
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
566 // image_type, dith_type);
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
567 if(image_type!=0)printf("izeeeeee!\n");
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
568 return (void*)XA_YUV_2x2_clr;
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
569 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
570
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
571 int XA_Add_Func_To_Free_Chain(XA_ANIM_HDR *anim_hdr, void (*function)())
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
572 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
573 XA_Print("XA_Add_Func_To_Free_Chain('anim_hdr: %08x', 'function: %08x')",
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
574 anim_hdr, function);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
575 xacodec_driver->close_func = function;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
576 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
577
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
578 int XA_Gen_YUV_Tabs(XA_ANIM_HDR *anim_hdr)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
579 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
580 XA_Print("XA_Gen_YUV_Tabs('anim_hdr: %08x')", anim_hdr);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
581
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
582 // XA_Print("anim type: %d - img[x: %d, y: %d, c: %d, d: %d]",
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
583 // anim_hdr->anim_type, anim_hdr->imagex, anim_hdr->imagey,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
584 // anim_hdr->imagec, anim_hdr->imaged);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
585 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
586
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
587 void JPG_Setup_Samp_Limit_Table(XA_ANIM_HDR *anim_hdr)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
588 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
589 XA_Print("JPG_Setup_Samp_Limit_Table('anim_hdr: %08x')", anim_hdr);
2381
448559791c0e cvid works but buggy
arpi
parents: 2377
diff changeset
590 // xa_byte_limit = jpg_samp_limit + (MAXJSAMPLE + 1);
2373
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
591 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
592
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
593 void JPG_Alloc_MCU_Bufs(XA_ANIM_HDR *anim_hdr, unsigned int width,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
594 unsigned int height, unsigned int full_flag)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
595 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
596 XA_Print("JPG_Alloc_MCU_Bufs('anim_hdr: %08x', 'width: %d', 'height: %d', 'full_flag: %d')",
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
597 anim_hdr, width, height, full_flag);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
598 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
599
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
600 typedef struct
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
601 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
602 unsigned char *Ybuf;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
603 unsigned char *Ubuf;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
604 unsigned char *Vbuf;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
605 unsigned char *the_buf;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
606 unsigned int the_buf_size;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
607 unsigned short y_w, y_h;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
608 unsigned short uv_w, uv_h;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
609 } YUVBufs;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
610
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
611 typedef struct
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
612 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
613 unsigned long Uskip_mask;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
614 long *YUV_Y_tab;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
615 long *YUV_UB_tab;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
616 long *YUV_VR_tab;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
617 long *YUV_UG_tab;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
618 long *YUV_VG_tab;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
619 } YUVTabs;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
620
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
621 #define XA_IMTYPE_RGB 0x0001
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
622
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
623 void XA_YUV1611_To_RGB(unsigned char *image, unsigned int imagex, unsigned int imagey,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
624 unsigned int i_x, unsigned int i_y, YUVBufs *yuv_bufs, YUVTabs *yuv_tabs,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
625 unsigned int map_flag, unsigned int *map, XA_CHDR *chdr)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
626 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
627 XA_Print("XA_YUV1611_To_RGB('image: %08x', 'imagex: %d', 'imagey: %d', 'i_x: %d', 'i_y: %d', 'yuv_bufs: %08x', 'yuv_tabs: %08x', 'map_flag: %d', 'map: %08x', 'chdr: %08x')",
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
628 image, imagex, imagey, i_x, i_y, yuv_bufs, yuv_tabs, map_flag, map, chdr);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
629 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
630
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
631 void XA_YUV1611_To_CLR8(unsigned char *image, unsigned int imagex, unsigned int imagey,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
632 unsigned int i_x, unsigned int i_y, YUVBufs *yuv_bufs, YUVTabs *yuv_tabs,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
633 unsigned int map_flag, unsigned int *map, XA_CHDR *chdr)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
634 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
635 XA_Print("XA_YUV1611_To_CLR8('image: %08x', 'imagex: %d', 'imagey: %d', 'i_x: %d', 'i_y: %d', 'yuv_bufs: %08x', 'yuv_tabs: %08x', 'map_flag: %d', 'map: %08x', 'chdr: %08x')",
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
636 image, imagex, imagey, i_x, i_y, yuv_bufs, yuv_tabs, map_flag, map, chdr);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
637 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
638
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
639 void *XA_YUV1611_Func(unsigned int image_type)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
640 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
641 void (*color_func)();
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
642
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
643 XA_Print("XA_YUV1611_Func('image_type: %d')", image_type);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
644
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
645 switch(image_type)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
646 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
647 case XA_IMTYPE_RGB:
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
648 color_func = XA_YUV1611_To_RGB;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
649 break;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
650 default:
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
651 color_func = XA_YUV1611_To_CLR8;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
652 break;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
653 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
654
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
655 return((void *)color_func);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
656 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
657
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
658 unsigned long XA_Time_Read()
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
659 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
660 return(GetRelativeTime());
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
661 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
662
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
663 /* YUV 41 11 11 routines */
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
664 void XA_YUV411111_To_RGB(unsigned char *image, unsigned int imagex, unsigned int imagey,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
665 unsigned int i_x, unsigned int i_y, YUVBufs *yuv_bufs, YUVTabs *yuv_tabs,
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
666 unsigned int map_flag, unsigned int *map, XA_CHDR *chdr)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
667 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
668 XA_Print("XA_YUV411111_To_RGB('image: %d', 'imagex: %d', 'imagey: %d', 'i_x: %d', 'i_y: %d', 'yuv_bufs: %08x', 'yuv_tabs: %08x', 'map_flag: %d', 'map: %08x', 'chdr: %08x')",
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
669 image, imagex, imagey, i_x, i_y, yuv_bufs, yuv_tabs, map_flag, map, chdr);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
670 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
671
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
672
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
673 void *XA_YUV411111_Func(unsigned int image_type)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
674 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
675 void (*color_func)();
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
676
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
677 XA_Print("XA_YUV411111_Func('image_type: %d')", image_type);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
678
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
679 switch(image_type)
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
680 {
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
681 case XA_IMTYPE_RGB: color_func = XA_YUV411111_To_RGB; break;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
682 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
683
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
684 return((void *)color_func);
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
685 }
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
686
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
687
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
688 YUVBufs jpg_YUVBufs;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
689 YUVTabs def_yuv_tabs;
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
690
463da8544d23 reworked for mplayer
alex
parents: 2372
diff changeset
691 /* *** EOF XANIM SHIT *** */