Mercurial > mplayer.hg
annotate xacodec.c @ 2808:a78ac799a300
QP_store==null bugfix and no opendivx bugfix
author | michael |
---|---|
date | Sun, 11 Nov 2001 01:18:40 +0000 |
parents | 38cb77fd3427 |
children | 283eab7c4c8e |
rev | line source |
---|---|
2372 | 1 /* |
2388 | 2 xacodec.c -- XAnim Video Codec DLL support |
2372 | 3 |
4 (C) 2001 Alex Beregszaszi <alex@naxine.org> | |
2388 | 5 and Arpad Gereoffy <arpi@thot.banki.hu> |
2372 | 6 */ |
7 | |
8 #include <stdio.h> | |
2376 | 9 #include <stdlib.h> |
2659 | 10 #include <string.h> /* strerror */ |
2376 | 11 |
2409 | 12 #ifdef __FreeBSD__ |
13 #include <unistd.h> | |
14 #endif | |
15 | |
2372 | 16 #include <dlfcn.h> /* dlsym, dlopen, dlclose */ |
17 #include <stdarg.h> /* va_alist, va_start, va_end */ | |
18 #include <errno.h> /* strerror, errno */ | |
19 | |
2376 | 20 #include "config.h" |
21 | |
2373 | 22 #include "mp_msg.h" |
2376 | 23 #include "bswap.h" |
2372 | 24 |
25 #include "stream.h" | |
26 #include "demuxer.h" | |
27 #include "codec-cfg.h" | |
28 #include "stheader.h" | |
2376 | 29 |
2372 | 30 #include "libvo/img_format.h" |
2659 | 31 #include "linux/timer.h" |
2372 | 32 #include "xacodec.h" |
33 | |
2793 | 34 #include "fastmemcpy.h" |
35 | |
2659 | 36 #ifdef USE_XANIM |
2481 | 37 |
2659 | 38 #if 0 |
2381 | 39 typedef char xaBYTE; |
40 typedef short xaSHORT; | |
41 typedef int xaLONG; | |
42 | |
43 typedef unsigned char xaUBYTE; | |
44 typedef unsigned short xaUSHORT; | |
45 typedef unsigned int xaULONG; | |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
46 #endif |
2381 | 47 |
48 #define xaFALSE 0 | |
49 #define xaTRUE 1 | |
50 | |
2372 | 51 #ifndef RTLD_NOW |
52 #define RLTD_NOW 2 | |
53 #endif | |
54 #ifndef RTLD_LAZY | |
55 #define RLTD_LAZY 1 | |
56 #endif | |
57 #ifndef RTLD_GLOBAL | |
58 #define RLTD_GLOBAL 256 | |
59 #endif | |
60 | |
2382 | 61 #define XA_CLOSE_FUNCS 5 |
62 int xa_close_func = 0; | |
63 | |
2372 | 64 typedef struct xacodec_driver |
65 { | |
66 XA_DEC_INFO *decinfo; | |
67 void *file_handler; | |
68 long (*iq_func)(XA_CODEC_HDR *codec_hdr); | |
69 unsigned int (*dec_func)(unsigned char *image, unsigned char *delta, | |
70 unsigned int dsize, XA_DEC_INFO *dec_info); | |
2382 | 71 void *close_func[XA_CLOSE_FUNCS]; |
2384 | 72 xacodec_image_t image; |
2372 | 73 } xacodec_driver_t; |
74 | |
75 xacodec_driver_t *xacodec_driver = NULL; | |
76 | |
77 /* Needed by XAnim DLLs */ | |
2659 | 78 void XA_Print(char *fmt, ...) |
2372 | 79 { |
80 va_list vallist; | |
81 char buf[1024]; | |
82 | |
83 va_start(vallist, fmt); | |
84 vsnprintf(buf, 1024, fmt, vallist); | |
2787 | 85 mp_msg(MSGT_XACODEC, MSGL_DBG2, "[xacodec] %s\n", buf); |
2372 | 86 va_end(vallist); |
2659 | 87 |
88 return; | |
2372 | 89 } |
90 | |
2382 | 91 /* 0 is no debug (needed by 3ivX) */ |
2388 | 92 long xa_debug = 0; |
2382 | 93 |
2659 | 94 void TheEnd1(char *err_mess) |
2372 | 95 { |
96 XA_Print("error: %s - exiting\n", err_mess); | |
97 xacodec_exit(); | |
2659 | 98 |
99 return; | |
2372 | 100 } |
2382 | 101 |
2659 | 102 void XA_Add_Func_To_Free_Chain(XA_ANIM_HDR *anim_hdr, void (*function)()) |
2382 | 103 { |
2388 | 104 // XA_Print("XA_Add_Func_To_Free_Chain('anim_hdr: %08x', 'function: %08x')", |
105 // anim_hdr, function); | |
2382 | 106 xacodec_driver->close_func[xa_close_func] = function; |
107 if (xa_close_func+1 < XA_CLOSE_FUNCS) | |
108 xa_close_func++; | |
2659 | 109 |
110 return; | |
2382 | 111 } |
2372 | 112 /* end of crap */ |
113 | |
114 /* load, init and query */ | |
115 int xacodec_init(char *filename, xacodec_driver_t *codec_driver) | |
116 { | |
117 void *(*what_the)(); | |
118 char *error; | |
119 XAVID_MOD_HDR *mod_hdr; | |
120 XAVID_FUNC_HDR *func; | |
121 int i; | |
122 | |
123 codec_driver->file_handler = dlopen(filename, RTLD_NOW|RTLD_GLOBAL); | |
124 if (!codec_driver->file_handler) | |
125 { | |
126 error = dlerror(); | |
127 if (error) | |
2659 | 128 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: failed to dlopen %s while %s\n", filename, error); |
2372 | 129 else |
2659 | 130 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: failed to dlopen %s\n", filename); |
2372 | 131 return(0); |
132 } | |
133 | |
134 what_the = dlsym(codec_driver->file_handler, "What_The"); | |
135 if ((error = dlerror()) != NULL) | |
136 { | |
2373 | 137 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: failed to init %s while %s\n", filename, error); |
2372 | 138 dlclose(codec_driver->file_handler); |
139 return(0); | |
140 } | |
141 | |
142 mod_hdr = what_the(); | |
143 if (!mod_hdr) | |
144 { | |
2659 | 145 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: initializer function failed in %s\n", filename); |
2372 | 146 dlclose(codec_driver->file_handler); |
147 return(0); | |
148 } | |
149 | |
2373 | 150 mp_msg(MSGT_DECVIDEO, MSGL_INFO, "=== XAnim Codec ===\n"); |
151 mp_msg(MSGT_DECVIDEO, MSGL_INFO, " Filename: %s (API revision: %x)\n", filename, mod_hdr->api_rev); | |
152 mp_msg(MSGT_DECVIDEO, MSGL_INFO, " Codec: %s. Rev: %s\n", mod_hdr->desc, mod_hdr->rev); | |
2372 | 153 if (mod_hdr->copyright) |
2373 | 154 mp_msg(MSGT_DECVIDEO, MSGL_INFO, " %s\n", mod_hdr->copyright); |
2372 | 155 if (mod_hdr->mod_author) |
2373 | 156 mp_msg(MSGT_DECVIDEO, MSGL_INFO, " Module Author(s): %s\n", mod_hdr->mod_author); |
2372 | 157 if (mod_hdr->authors) |
2373 | 158 mp_msg(MSGT_DECVIDEO, MSGL_INFO, " Codec Author(s): %s\n", mod_hdr->authors); |
2372 | 159 |
160 if (mod_hdr->api_rev > XAVID_API_REV) | |
161 { | |
2414 | 162 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: not supported api revision (%d) in %s\n", |
163 mod_hdr->api_rev, filename); | |
2372 | 164 dlclose(codec_driver->file_handler); |
165 return(0); | |
166 } | |
167 | |
168 func = mod_hdr->funcs; | |
169 if (!func) | |
170 { | |
2373 | 171 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: function table error in %s\n", filename); |
2372 | 172 dlclose(codec_driver->file_handler); |
173 return(0); | |
174 } | |
175 | |
2659 | 176 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "Exported functions by codec: [functable: 0x%08x entries: %d]\n", |
177 mod_hdr->funcs, mod_hdr->num_funcs); | |
2372 | 178 for (i = 0; i < mod_hdr->num_funcs; i++) |
179 { | |
2659 | 180 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, " %d: %d %d [iq:0x%08x d:0x%08x]\n", |
181 i, func[i].what, func[i].id, func[i].iq_func, func[i].dec_func); | |
2372 | 182 if (func[i].what & XAVID_AVI_QUERY) |
183 { | |
2659 | 184 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, " 0x%08x: avi init/query func (id: %d)\n", |
2372 | 185 func[i].iq_func, func[i].id); |
2659 | 186 codec_driver->iq_func = (void *)func[i].iq_func; |
2372 | 187 } |
188 if (func[i].what & XAVID_QT_QUERY) | |
189 { | |
2659 | 190 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, " 0x%08x: qt init/query func (id: %d)\n", |
2372 | 191 func[i].iq_func, func[i].id); |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
192 codec_driver->iq_func = (void *)func[i].iq_func; |
2372 | 193 } |
194 if (func[i].what & XAVID_DEC_FUNC) | |
195 { | |
2659 | 196 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, " 0x%08x: decoder func (init/query: 0x%08x) (id: %d)\n", |
2372 | 197 func[i].dec_func, func[i].iq_func, func[i].id); |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
198 codec_driver->dec_func = (void *)func[i].dec_func; |
2372 | 199 } |
200 } | |
201 return(1); | |
202 } | |
203 | |
204 int xacodec_query(xacodec_driver_t *codec_driver, XA_CODEC_HDR *codec_hdr) | |
205 { | |
206 long codec_ret; | |
207 | |
2682
77a237be71a6
fixed api revision and input fourcc handling (mappings are working too :)
alex
parents:
2659
diff
changeset
|
208 #if 0 |
77a237be71a6
fixed api revision and input fourcc handling (mappings are working too :)
alex
parents:
2659
diff
changeset
|
209 /* the brute one */ |
77a237be71a6
fixed api revision and input fourcc handling (mappings are working too :)
alex
parents:
2659
diff
changeset
|
210 if (codec_driver->dec_func) |
77a237be71a6
fixed api revision and input fourcc handling (mappings are working too :)
alex
parents:
2659
diff
changeset
|
211 { |
77a237be71a6
fixed api revision and input fourcc handling (mappings are working too :)
alex
parents:
2659
diff
changeset
|
212 codec_hdr->decoder = codec_driver->dec_func; |
77a237be71a6
fixed api revision and input fourcc handling (mappings are working too :)
alex
parents:
2659
diff
changeset
|
213 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "We got decoder's address at init! %p\n", codec_hdr->decoder); |
77a237be71a6
fixed api revision and input fourcc handling (mappings are working too :)
alex
parents:
2659
diff
changeset
|
214 return(1); |
77a237be71a6
fixed api revision and input fourcc handling (mappings are working too :)
alex
parents:
2659
diff
changeset
|
215 } |
77a237be71a6
fixed api revision and input fourcc handling (mappings are working too :)
alex
parents:
2659
diff
changeset
|
216 #endif |
2372 | 217 codec_ret = codec_driver->iq_func(codec_hdr); |
218 switch(codec_ret) | |
219 { | |
220 case CODEC_SUPPORTED: | |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
221 codec_driver->dec_func = (void *)codec_hdr->decoder; |
2382 | 222 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "Codec is supported: found decoder for %s at 0x%08x\n", |
2372 | 223 codec_hdr->description, codec_hdr->decoder); |
224 return(1); | |
225 case CODEC_UNSUPPORTED: | |
2388 | 226 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "Codec (%s) is unsupported by driver\n", |
227 codec_hdr->description); | |
2372 | 228 return(0); |
229 case CODEC_UNKNOWN: | |
230 default: | |
2388 | 231 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "Codec (%s) is unknown by driver\n", |
232 codec_hdr->description); | |
2372 | 233 return(0); |
234 } | |
235 } | |
236 | |
237 char *xacodec_def_path = XACODEC_PATH; | |
238 | |
239 int xacodec_init_video(sh_video_t *vidinfo, int out_format) | |
240 { | |
241 char dll[1024]; | |
242 XA_CODEC_HDR codec_hdr; | |
2382 | 243 int i; |
2372 | 244 |
245 xacodec_driver = realloc(xacodec_driver, sizeof(struct xacodec_driver)); | |
246 if (xacodec_driver == NULL) | |
2414 | 247 { |
248 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: memory allocation error: %s\n", | |
249 strerror(errno)); | |
2372 | 250 return(0); |
2414 | 251 } |
2372 | 252 |
253 xacodec_driver->iq_func = NULL; | |
254 xacodec_driver->dec_func = NULL; | |
2382 | 255 |
256 for (i=0; i < XA_CLOSE_FUNCS; i++) | |
257 xacodec_driver->close_func[i] = NULL; | |
2372 | 258 |
259 snprintf(dll, 1024, "%s/%s", xacodec_def_path, vidinfo->codec->dll); | |
260 if (xacodec_init(dll, xacodec_driver) == 0) | |
261 return(0); | |
262 | |
2787 | 263 codec_hdr.xapi_rev = XAVID_API_REV; |
2372 | 264 codec_hdr.anim_hdr = malloc(4096); |
265 codec_hdr.description = vidinfo->codec->info; | |
2682
77a237be71a6
fixed api revision and input fourcc handling (mappings are working too :)
alex
parents:
2659
diff
changeset
|
266 codec_hdr.compression = bswap_32(vidinfo->bih->biCompression); |
2372 | 267 codec_hdr.decoder = NULL; |
2787 | 268 codec_hdr.x = vidinfo->bih->biWidth; /* ->disp_w */ |
269 codec_hdr.y = vidinfo->bih->biHeight; /* ->disp_h */ | |
270 /* extra fields to store palette */ | |
2372 | 271 codec_hdr.avi_ctab_flag = 0; |
272 codec_hdr.avi_read_ext = NULL; | |
273 codec_hdr.extra = NULL; | |
274 | |
275 switch(out_format) | |
276 { | |
2659 | 277 /* case IMGFMT_RGB8: |
2372 | 278 codec_hdr.depth = 8; |
279 break; | |
280 case IMGFMT_RGB15: | |
281 codec_hdr.depth = 15; | |
282 break; | |
283 case IMGFMT_RGB16: | |
284 codec_hdr.depth = 16; | |
285 break; | |
286 case IMGFMT_RGB24: | |
287 codec_hdr.depth = 24; | |
288 break; | |
289 case IMGFMT_RGB32: | |
290 codec_hdr.depth = 32; | |
291 break; | |
292 case IMGFMT_BGR8: | |
293 codec_hdr.depth = 8; | |
294 break; | |
295 case IMGFMT_BGR15: | |
296 codec_hdr.depth = 15; | |
297 break; | |
298 case IMGFMT_BGR16: | |
299 codec_hdr.depth = 16; | |
300 break; | |
301 case IMGFMT_BGR24: | |
302 codec_hdr.depth = 24; | |
303 break; | |
304 case IMGFMT_BGR32: | |
305 codec_hdr.depth = 32; | |
2659 | 306 break;*/ |
2383 | 307 case IMGFMT_IYUV: |
2382 | 308 case IMGFMT_I420: |
2383 | 309 case IMGFMT_YV12: |
310 codec_hdr.depth = 12; | |
2382 | 311 break; |
2372 | 312 default: |
2659 | 313 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: not supported image out format (%s)\n", |
2372 | 314 vo_format_name(out_format)); |
315 return(0); | |
316 } | |
2659 | 317 mp_msg(MSGT_DECVIDEO, MSGL_INFO, "xacodec: querying for input %dx%d %dbit [fourcc: %4x] (%s)...\n", |
318 codec_hdr.x, codec_hdr.y, codec_hdr.depth, codec_hdr.compression, codec_hdr.description); | |
2372 | 319 |
320 if (xacodec_query(xacodec_driver, &codec_hdr) == 0) | |
321 return(0); | |
322 | |
323 // free(codec_hdr.anim_hdr); | |
324 | |
325 xacodec_driver->decinfo = malloc(sizeof(XA_DEC_INFO)); | |
2414 | 326 if (xacodec_driver->decinfo == NULL) |
327 { | |
328 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: memory allocation error: %s\n", | |
329 strerror(errno)); | |
330 return(0); | |
331 } | |
2372 | 332 xacodec_driver->decinfo->cmd = 0; |
333 xacodec_driver->decinfo->skip_flag = 0; | |
334 xacodec_driver->decinfo->imagex = xacodec_driver->decinfo->xe = codec_hdr.x; | |
335 xacodec_driver->decinfo->imagey = xacodec_driver->decinfo->ye = codec_hdr.y; | |
336 xacodec_driver->decinfo->imaged = codec_hdr.depth; | |
337 xacodec_driver->decinfo->chdr = NULL; | |
338 xacodec_driver->decinfo->map_flag = 0; /* xaFALSE */ | |
339 xacodec_driver->decinfo->map = NULL; | |
340 xacodec_driver->decinfo->xs = xacodec_driver->decinfo->ys = 0; | |
341 xacodec_driver->decinfo->special = 0; | |
342 xacodec_driver->decinfo->extra = codec_hdr.extra; | |
2414 | 343 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "decinfo->extra, filled by codec: 0x%08x [%s]\n", |
344 &xacodec_driver->decinfo->extra, xacodec_driver->decinfo->extra); | |
2372 | 345 |
2377 | 346 // vidinfo->our_out_buffer = malloc(codec_hdr.y * codec_hdr.x * ((codec_hdr.depth+7)/8)); |
2384 | 347 // vidinfo->our_out_buffer = malloc(codec_hdr.y * codec_hdr.x * codec_hdr.depth); |
2414 | 348 xacodec_driver->image.out_fmt = out_format; |
349 xacodec_driver->image.bpp = codec_hdr.depth; | |
350 xacodec_driver->image.width = codec_hdr.x; | |
351 xacodec_driver->image.height = codec_hdr.y; | |
352 xacodec_driver->image.mem = malloc(codec_hdr.y * codec_hdr.x * ((codec_hdr.depth+7)/8)); | |
2372 | 353 |
2388 | 354 if (xacodec_driver->image.mem == NULL) |
2372 | 355 { |
2414 | 356 mp_msg(MSGT_DECVIDEO, MSGL_FATAL, "xacodec: memory allocation error: %s\n", |
2372 | 357 strerror(errno)); |
358 return(0); | |
359 } | |
360 | |
361 return(1); | |
362 } | |
363 | |
2659 | 364 #define ACT_DLTA_NORM 0x00000000 |
365 #define ACT_DLTA_BODY 0x00000001 | |
366 #define ACT_DLTA_XOR 0x00000002 | |
367 #define ACT_DLTA_NOP 0x00000004 | |
368 #define ACT_DLTA_MAPD 0x00000008 | |
369 #define ACT_DLTA_DROP 0x00000010 | |
370 #define ACT_DLTA_BAD 0x80000000 | |
2372 | 371 |
372 // unsigned int (*dec_func)(unsigned char *image, unsigned char *delta, | |
373 // unsigned int dsize, XA_DEC_INFO *dec_info); | |
374 | |
2384 | 375 xacodec_image_t* xacodec_decode_frame(uint8_t *frame, int frame_size, int skip_flag) |
2372 | 376 { |
377 unsigned int ret; | |
2387 | 378 xacodec_image_t *image=&xacodec_driver->image; |
2384 | 379 |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
380 // ugyis kiirja a vegen h dropped vagy nem.. |
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
381 // if (skip_flag > 0) |
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
382 // mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "frame will be dropped..\n"); |
2372 | 383 |
384 xacodec_driver->decinfo->skip_flag = skip_flag; | |
385 | |
2387 | 386 image->planes[0]=image->mem; |
387 image->stride[0]=image->width; | |
388 image->stride[1]=image->stride[2]=image->width/2; | |
389 switch(image->out_fmt){ | |
390 case IMGFMT_YV12: | |
391 image->planes[2]=image->planes[0]+image->width*image->height; | |
392 image->planes[1]=image->planes[2]+image->width*image->height/4; | |
393 break; | |
394 case IMGFMT_I420: | |
395 case IMGFMT_IYUV: | |
396 image->planes[1]=image->planes[0]+image->width*image->height; | |
397 image->planes[2]=image->planes[1]+image->width*image->height/4; | |
398 break; | |
399 } | |
400 | |
2384 | 401 // printf("frame: %08x (size: %d) - dest: %08x\n", frame, frame_size, dest); |
402 | |
403 ret = xacodec_driver->dec_func((uint8_t*)&xacodec_driver->image, frame, frame_size, xacodec_driver->decinfo); | |
2372 | 404 |
2384 | 405 // printf("ret: %lu : ", ret); |
2372 | 406 |
407 | |
2659 | 408 if (ret == ACT_DLTA_NORM) |
2372 | 409 { |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
410 // mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "norm\n"); |
2384 | 411 return &xacodec_driver->image; |
2372 | 412 } |
413 | |
2659 | 414 if (ret & ACT_DLTA_MAPD) |
415 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "mapd\n"); | |
2372 | 416 /* |
417 if (!(ret & ACT_DLT_MAPD)) | |
418 xacodec_driver->decinfo->map_flag = 0; | |
419 else | |
420 { | |
421 xacodec_driver->decinfo->map_flag = 1; | |
422 xacodec_driver->decinfo->map = ... | |
423 } | |
424 */ | |
425 | |
2659 | 426 if (ret & ACT_DLTA_XOR) |
427 { | |
428 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "xor\n"); | |
429 return &xacodec_driver->image; | |
430 } | |
431 | |
432 /* nothing changed */ | |
433 if (ret & ACT_DLTA_NOP) | |
2372 | 434 { |
2388 | 435 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "nop\n"); |
2659 | 436 return NULL; |
2372 | 437 } |
438 | |
2659 | 439 /* frame dropped (also display latest frame) */ |
440 if (ret & ACT_DLTA_DROP) | |
2372 | 441 { |
2388 | 442 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "drop\n"); |
2384 | 443 return NULL; |
2372 | 444 } |
445 | |
2659 | 446 if (ret & ACT_DLTA_BAD) |
2372 | 447 { |
2388 | 448 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "bad\n"); |
2384 | 449 return NULL; |
2372 | 450 } |
451 | |
2659 | 452 /* used for double buffer */ |
453 if (ret & ACT_DLTA_BODY) | |
2372 | 454 { |
2388 | 455 mp_msg(MSGT_DECVIDEO, MSGL_DBG2, "body\n"); |
2384 | 456 return NULL; |
2372 | 457 } |
458 | |
2384 | 459 return NULL; |
2372 | 460 } |
461 | |
462 int xacodec_exit() | |
463 { | |
2382 | 464 int i; |
465 void (*close_func)(); | |
466 | |
467 for (i=0; i < XA_CLOSE_FUNCS; i++) | |
468 if (xacodec_driver->close_func[i]) | |
469 { | |
470 close_func = xacodec_driver->close_func[i]; | |
471 close_func(); | |
472 } | |
2372 | 473 dlclose(xacodec_driver->file_handler); |
474 if (xacodec_driver->decinfo != NULL) | |
475 free(xacodec_driver->decinfo); | |
2388 | 476 free(xacodec_driver); |
2372 | 477 return(TRUE); |
478 } | |
2373 | 479 |
480 | |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
481 /* *** XANIM Conversions *** */ |
2373 | 482 /* like loader/win32.c - mini XANIM library */ |
483 | |
2382 | 484 unsigned long XA_Time_Read() |
485 { | |
2384 | 486 return GetTimer(); //(GetRelativeTime()); |
2382 | 487 } |
488 | |
489 void XA_dummy() | |
490 { | |
491 XA_Print("dummy() called"); | |
492 } | |
493 | |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
494 void XA_Gen_YUV_Tabs(XA_ANIM_HDR *anim_hdr) |
2373 | 495 { |
496 XA_Print("XA_Gen_YUV_Tabs('anim_hdr: %08x')", anim_hdr); | |
497 | |
498 // XA_Print("anim type: %d - img[x: %d, y: %d, c: %d, d: %d]", | |
499 // anim_hdr->anim_type, anim_hdr->imagex, anim_hdr->imagey, | |
500 // anim_hdr->imagec, anim_hdr->imaged); | |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
501 return; |
2373 | 502 } |
503 | |
504 void JPG_Setup_Samp_Limit_Table(XA_ANIM_HDR *anim_hdr) | |
505 { | |
506 XA_Print("JPG_Setup_Samp_Limit_Table('anim_hdr: %08x')", anim_hdr); | |
2381 | 507 // xa_byte_limit = jpg_samp_limit + (MAXJSAMPLE + 1); |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
508 return; |
2373 | 509 } |
510 | |
511 void JPG_Alloc_MCU_Bufs(XA_ANIM_HDR *anim_hdr, unsigned int width, | |
512 unsigned int height, unsigned int full_flag) | |
513 { | |
514 XA_Print("JPG_Alloc_MCU_Bufs('anim_hdr: %08x', 'width: %d', 'height: %d', 'full_flag: %d')", | |
515 anim_hdr, width, height, full_flag); | |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
516 return; |
2373 | 517 } |
518 | |
2406 | 519 /* --------------- 4x4 pixel YUV block fillers [CVID] ----------------- */ |
2391 | 520 |
521 typedef struct | |
522 { | |
523 unsigned char r0, g0, b0; | |
524 unsigned char r1, g1, b1; | |
525 unsigned char r2, g2, b2; | |
526 unsigned char r3, g3, b3; | |
527 unsigned int clr0_0, clr0_1, clr0_2, clr0_3; | |
528 unsigned int clr1_0, clr1_1, clr1_2, clr1_3; | |
529 unsigned int clr2_0, clr2_1, clr2_2, clr2_3; | |
530 unsigned int clr3_0, clr3_1, clr3_2, clr3_3; | |
531 } XA_2x2_Color; | |
532 | |
533 #define SET_4_YUV_PIXELS(image,x,y,cmap2x2) \ | |
534 image->planes[0][((x)+0)+((y)+0)*image->stride[0]]=cmap2x2->clr0_0;\ | |
535 image->planes[0][((x)+1)+((y)+0)*image->stride[0]]=cmap2x2->clr0_1;\ | |
536 image->planes[0][((x)+0)+((y)+1)*image->stride[0]]=cmap2x2->clr0_2;\ | |
537 image->planes[0][((x)+1)+((y)+1)*image->stride[0]]=cmap2x2->clr0_3;\ | |
538 image->planes[1][((x)>>1)+((y)>>1)*image->stride[1]]=cmap2x2->clr1_0;\ | |
539 image->planes[2][((x)>>1)+((y)>>1)*image->stride[2]]=cmap2x2->clr1_1; | |
540 | |
2406 | 541 void XA_2x2_OUT_1BLK_Convert(unsigned char *image_p, unsigned int x, unsigned int y, |
2391 | 542 unsigned int imagex, XA_2x2_Color *cmap2x2) |
543 { | |
544 xacodec_image_t *image=(xacodec_image_t*)image_p; | |
545 | |
546 #if 0 | |
547 SET_4_YUV_PIXELS(image,x,y,cmap2x2) | |
548 #else | |
549 SET_4_YUV_PIXELS(image,x,y,cmap2x2) | |
550 SET_4_YUV_PIXELS(image,x+2,y,cmap2x2) | |
551 SET_4_YUV_PIXELS(image,x,y+2,cmap2x2) | |
552 SET_4_YUV_PIXELS(image,x+2,y+2,cmap2x2) | |
553 #endif | |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
554 return; |
2391 | 555 } |
556 | |
2406 | 557 void XA_2x2_OUT_4BLKS_Convert(unsigned char *image_p, unsigned int x, unsigned int y, |
2391 | 558 unsigned int imagex, XA_2x2_Color *cm0, XA_2x2_Color *cm1, XA_2x2_Color *cm2, |
559 XA_2x2_Color *cm3) | |
560 { | |
561 xacodec_image_t *image=(xacodec_image_t*)image_p; | |
562 | |
563 SET_4_YUV_PIXELS(image,x,y,cm0) | |
564 SET_4_YUV_PIXELS(image,x+2,y,cm1) | |
565 SET_4_YUV_PIXELS(image,x,y+2,cm2) | |
566 SET_4_YUV_PIXELS(image,x+2,y+2,cm3) | |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
567 return; |
2391 | 568 } |
569 | |
570 void *YUV2x2_Blk_Func(unsigned int image_type, int blks, unsigned int dith_flag) | |
571 { | |
572 switch(blks){ | |
573 case 1: | |
2406 | 574 return (void*) XA_2x2_OUT_1BLK_Convert; |
2391 | 575 case 4: |
2406 | 576 return (void*) XA_2x2_OUT_4BLKS_Convert; |
2391 | 577 } |
578 | |
579 mp_msg(MSGT_DECVIDEO,MSGL_WARN,"Unimplemented: YUV2x2_Blk_Func(image_type=%d blks=%d dith=%d)\n",image_type,blks,dith_flag); | |
580 return (void*) XA_dummy; | |
581 } | |
582 | |
583 // Take Four Y's and UV and put them into a 2x2 Color structure. | |
584 | |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
585 void XA_YUV_2x2_clr(XA_2x2_Color *cmap2x2, unsigned int Y0, unsigned int Y1, |
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
586 unsigned int Y2, unsigned int Y3, unsigned int U, unsigned int V, |
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
587 unsigned int map_flag, unsigned int *map, XA_CHDR *chdr) |
2391 | 588 { |
589 | |
590 // printf("XA_YUV_2x2_clr(%p [%d,%d,%d,%d][%d][%d] %d %p %p)\n", | |
591 // cmap2x2,Y0,Y1,Y2,Y3,U,V,map_flag,map,chdr); | |
592 | |
593 cmap2x2->clr0_0=Y0; | |
594 cmap2x2->clr0_1=Y1; | |
595 cmap2x2->clr0_2=Y2; | |
596 cmap2x2->clr0_3=Y3; | |
597 cmap2x2->clr1_0=U; | |
598 cmap2x2->clr1_1=V; | |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
599 return; |
2391 | 600 } |
601 | |
602 void *YUV2x2_Map_Func(unsigned int image_type, unsigned int dith_type) | |
603 { | |
604 // XA_Print("YUV2x2_Map_Func('image_type: %d', 'dith_type: %d')", | |
605 // image_type, dith_type); | |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
606 return((void*)XA_YUV_2x2_clr); |
2391 | 607 } |
608 | |
2406 | 609 /* -------------------- whole YUV frame converters ------------------------- */ |
2391 | 610 |
2373 | 611 typedef struct |
612 { | |
613 unsigned char *Ybuf; | |
614 unsigned char *Ubuf; | |
615 unsigned char *Vbuf; | |
616 unsigned char *the_buf; | |
617 unsigned int the_buf_size; | |
618 unsigned short y_w, y_h; | |
619 unsigned short uv_w, uv_h; | |
620 } YUVBufs; | |
621 | |
622 typedef struct | |
623 { | |
624 unsigned long Uskip_mask; | |
625 long *YUV_Y_tab; | |
626 long *YUV_UB_tab; | |
627 long *YUV_VR_tab; | |
628 long *YUV_UG_tab; | |
629 long *YUV_VG_tab; | |
630 } YUVTabs; | |
631 | |
2406 | 632 YUVBufs jpg_YUVBufs; |
633 YUVTabs def_yuv_tabs; | |
634 | |
635 /* -------------- YUV 4x4 1x1 1x1 [Indeo 3,4,5] ------------------ */ | |
636 | |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
637 void XA_YUV1611_Convert(unsigned char *image_p, unsigned int imagex, unsigned int imagey, |
2391 | 638 unsigned int i_x, unsigned int i_y, YUVBufs *yuv, YUVTabs *yuv_tabs, |
2373 | 639 unsigned int map_flag, unsigned int *map, XA_CHDR *chdr) |
640 { | |
2391 | 641 xacodec_image_t *image=(xacodec_image_t*)image_p; |
2395 | 642 int y; |
643 int uvstride; | |
2391 | 644 |
2395 | 645 #if 0 |
2397 | 646 printf("YUVTabs: %d %p %p %p %p %p\n",yuv_tabs->Uskip_mask, |
647 yuv_tabs->YUV_Y_tab, | |
648 yuv_tabs->YUV_UB_tab, | |
649 yuv_tabs->YUV_VR_tab, | |
650 yuv_tabs->YUV_UG_tab, | |
651 yuv_tabs->YUV_VG_tab ); | |
652 | |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
653 XA_Print("XA_YUV1611_Convert('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')", |
2391 | 654 image, imagex, imagey, i_x, i_y, yuv, yuv_tabs, map_flag, map, chdr); |
2373 | 655 |
2395 | 656 printf("YUV: %p %p %p %X (%d) %dx%d %dx%d\n", |
657 yuv->Ybuf,yuv->Ubuf,yuv->Vbuf,yuv->the_buf,yuv->the_buf_size, | |
658 yuv->y_w,yuv->y_h,yuv->uv_w,yuv->uv_h); | |
659 #endif | |
660 | |
661 // copy Y plane: | |
2397 | 662 if(yuv_tabs->YUV_Y_tab){ // dirty hack to detect iv32: |
663 for(y=0;y<imagey*imagex;y++) | |
664 image->planes[0][y]=yuv->Ybuf[y]<<1; | |
665 } else | |
666 memcpy(image->planes[0],yuv->Ybuf,imagex*imagey); | |
2395 | 667 |
668 // scale U,V planes by 2: | |
669 imagex>>=2; | |
670 imagey>>=2; | |
2391 | 671 |
2395 | 672 uvstride=(yuv->uv_w)?yuv->uv_w:imagex; |
673 | |
674 for(y=0;y<imagey;y++){ | |
675 unsigned char *su=yuv->Ubuf+uvstride*y; | |
676 unsigned char *sv=yuv->Vbuf+uvstride*y; | |
677 unsigned int strideu=image->stride[1]; | |
678 unsigned int stridev=image->stride[2]; | |
679 unsigned char *du=image->planes[1]+2*y*strideu; | |
680 unsigned char *dv=image->planes[2]+2*y*stridev; | |
681 int x; | |
2397 | 682 if(yuv_tabs->YUV_Y_tab){ // dirty hack to detect iv32: |
683 for(x=0;x<imagex;x++){ | |
684 du[2*x]=du[2*x+1]=du[2*x+strideu]=du[2*x+strideu+1]=su[x]*2; | |
685 dv[2*x]=dv[2*x+1]=dv[2*x+stridev]=dv[2*x+stridev+1]=sv[x]*2; | |
686 } | |
687 } else { | |
688 for(x=0;x<imagex;x++){ | |
689 du[2*x]=du[2*x+1]=du[2*x+strideu]=du[2*x+strideu+1]=su[x]; | |
690 dv[2*x]=dv[2*x+1]=dv[2*x+stridev]=dv[2*x+stridev+1]=sv[x]; | |
691 } | |
2395 | 692 } |
693 } | |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
694 return; |
2373 | 695 } |
696 | |
697 void *XA_YUV1611_Func(unsigned int image_type) | |
698 { | |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
699 // XA_Print("XA_YUV1611_Func('image_type: %d')", image_type); |
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
700 return((void *)XA_YUV1611_Convert); |
2373 | 701 } |
702 | |
2406 | 703 /* -------------- YUV 4x1 1x1 1x1 (4:1:1 ?) [???] ------------------ */ |
2395 | 704 |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
705 void XA_YUV411111_Convert(unsigned char *image, unsigned int imagex, unsigned int imagey, |
2373 | 706 unsigned int i_x, unsigned int i_y, YUVBufs *yuv_bufs, YUVTabs *yuv_tabs, |
707 unsigned int map_flag, unsigned int *map, XA_CHDR *chdr) | |
708 { | |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
709 XA_Print("XA_YUV411111_Convert('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')", |
2373 | 710 image, imagex, imagey, i_x, i_y, yuv_bufs, yuv_tabs, map_flag, map, chdr); |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
711 return; |
2373 | 712 } |
713 | |
714 void *XA_YUV411111_Func(unsigned int image_type) | |
715 { | |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
716 // XA_Print("XA_YUV411111_Func('image_type: %d')", image_type); |
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
717 return((void*)XA_YUV411111_Convert); |
2373 | 718 } |
719 | |
2406 | 720 /* --------------- YUV 2x2 1x1 1x1 (4:2:0 aka YV12) [3ivX,H263] ------------ */ |
2391 | 721 |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
722 void XA_YUV221111_Convert(unsigned char *image_p, unsigned int imagex, unsigned int imagey, |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
723 unsigned int i_x, unsigned int i_y, YUVBufs *yuv, YUVTabs *yuv_tabs, unsigned int map_flag, |
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
724 unsigned int *map, XA_CHDR *chdr) |
2383 | 725 { |
2384 | 726 xacodec_image_t *image=(xacodec_image_t*)image_p; |
727 | |
728 #if 0 | |
2787 | 729 XA_Print("XA_YUV221111_Convert(%p %dx%d %d;%d [%dx%d] %p %p %d %p %p)\n", |
2384 | 730 image,imagex,imagey,i_x,i_y, image->width,image->height, |
731 yuv,yuv_tabs,map_flag,map,chdr); | |
2383 | 732 |
2787 | 733 XA_Print("YUV: %p %p %p %X (%X) %Xx%X %Xx%X\n", |
2383 | 734 yuv->Ybuf,yuv->Ubuf,yuv->Vbuf,yuv->the_buf,yuv->the_buf_size, |
735 yuv->y_w,yuv->y_h,yuv->uv_w,yuv->uv_h); | |
2384 | 736 #endif |
2383 | 737 |
2787 | 738 #warning "FIXME! Decoder doesn't supports Vivo/2.00 :(" |
739 | |
2403 | 740 if(i_x==image->width && i_y==image->height){ |
2384 | 741 // printf("Direct render!!!\n"); |
742 image->planes[0]=yuv->Ybuf; | |
743 if(image->out_fmt==IMGFMT_YV12){ | |
744 image->planes[1]=yuv->Ubuf; | |
745 image->planes[2]=yuv->Vbuf; | |
746 } else { | |
747 image->planes[1]=yuv->Vbuf; | |
748 image->planes[2]=yuv->Ubuf; | |
749 } | |
2403 | 750 image->stride[0]=i_x; // yuv->y_w |
751 image->stride[1]=image->stride[2]=i_x/2; // yuv->uv_w | |
2384 | 752 } else { |
2403 | 753 int y; |
754 for(y=0;y<i_y;y++) | |
755 memcpy(image->planes[0]+y*image->stride[0],yuv->Ybuf+y*i_x,i_x); | |
756 i_x>>=1; i_y>>=1; | |
757 for(y=0;y<i_y;y++){ | |
758 memcpy(image->planes[1]+y*image->stride[1],yuv->Ubuf+y*i_x,i_x); | |
759 memcpy(image->planes[2]+y*image->stride[2],yuv->Vbuf+y*i_x,i_x); | |
760 } | |
2384 | 761 } |
2402
f628c76bbc11
little cleanup to eleminate xanim typedefs and be more mplayer like
alex
parents:
2397
diff
changeset
|
762 return; |
2383 | 763 } |
764 | |
2382 | 765 void *XA_YUV221111_Func(unsigned int image_type) |
766 { | |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
767 // XA_Print("XA_YUV221111_Func('image_type: %d')", image_type); |
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
768 return((void *)XA_YUV221111_Convert); |
2382 | 769 } |
2373 | 770 |
2404
da766ceb7bdd
cleaned up, also removed some useless printf's to be more faster ;)
alex
parents:
2403
diff
changeset
|
771 /* *** EOF XANIM *** */ |
2659 | 772 #endif |