annotate xacodec.c @ 7195:a5b2566f3c2b

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