Mercurial > mplayer.hg
annotate dec_video.c @ 4524:01a0cf736e0d
Fix the bugs the previous version should fix (and those introduced
by the previous version ;) )
author | albeu |
---|---|
date | Mon, 04 Feb 2002 14:19:54 +0000 |
parents | d604c3db9a76 |
children | b1fe5f58cd82 |
rev | line source |
---|---|
4188 | 1 |
2 #define USE_MP_IMAGE | |
2775 | 3 |
4 #include "config.h" | |
1294 | 5 |
6 #include <stdio.h> | |
2775 | 7 #ifdef HAVE_MALLOC_H |
8 #include <malloc.h> | |
9 #endif | |
1294 | 10 #include <stdlib.h> |
1430 | 11 #include <unistd.h> |
1294 | 12 |
1567 | 13 #include "mp_msg.h" |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
14 #include "help_mp.h" |
1294 | 15 |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1309
diff
changeset
|
16 #include "linux/timer.h" |
1496 | 17 #include "linux/shmem.h" |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1309
diff
changeset
|
18 |
2563 | 19 extern int verbose; // defined in mplayer.c |
20 | |
1294 | 21 #include "stream.h" |
22 #include "demuxer.h" | |
1375
dbcb5b5e1fae
file-format detection stuff moved out from mplayer.c to demuxer.c and dec_video.c
arpi
parents:
1367
diff
changeset
|
23 #include "parse_es.h" |
1294 | 24 |
25 #include "codec-cfg.h" | |
26 | |
1422 | 27 #ifdef USE_LIBVO2 |
28 #include "libvo2/libvo2.h" | |
29 #else | |
1294 | 30 #include "libvo/video_out.h" |
1422 | 31 #endif |
1294 | 32 |
4188 | 33 #include "stheader.h" |
34 | |
2563 | 35 #include "dec_video.h" |
36 | |
4486 | 37 #include "roqav.h" |
38 | |
2563 | 39 // =================================================================== |
40 | |
41 extern double video_time_usage; | |
42 extern double vout_time_usage; | |
4388 | 43 extern vo_vaa_t vo_vaa; |
2563 | 44 |
45 extern int frameratecode2framerate[16]; | |
46 | |
47 #include "dll_init.h" | |
48 | |
49 //#include <inttypes.h> | |
50 //#include "libvo/img_format.h" | |
51 | |
1294 | 52 #include "libmpeg2/mpeg2.h" |
53 #include "libmpeg2/mpeg2_internal.h" | |
54 | |
2184 | 55 #include "postproc/postprocess.h" |
56 | |
3144 | 57 #include "cpudetect.h" |
58 | |
1294 | 59 extern picture_t *picture; // exported from libmpeg2/decode.c |
60 | |
2563 | 61 int divx_quality=0; |
1294 | 62 |
63 #ifdef USE_DIRECTSHOW | |
3947
2eb8c8aacca7
using dshow headers from dshow/ instead of c++ version
arpi
parents:
3877
diff
changeset
|
64 #include "loader/dshow/DS_VideoDecoder.h" |
2eb8c8aacca7
using dshow headers from dshow/ instead of c++ version
arpi
parents:
3877
diff
changeset
|
65 static DS_VideoDecoder* ds_vdec=NULL; |
3062 | 66 #endif |
1294 | 67 |
68 #ifdef USE_LIBAVCODEC | |
2496 | 69 #ifdef USE_LIBAVCODEC_SO |
70 #include <libffmpeg/avcodec.h> | |
71 #else | |
1294 | 72 #include "libavcodec/avcodec.h" |
2496 | 73 #endif |
1927 | 74 static AVCodec *lavc_codec=NULL; |
75 static AVCodecContext lavc_context; | |
76 static AVPicture lavc_picture; | |
77 int avcodec_inited=0; | |
1294 | 78 #endif |
2228 | 79 #ifdef FF_POSTPROCESS |
80 unsigned int lavc_pp=0; | |
81 #endif | |
1294 | 82 |
4489 | 83 #ifdef USE_DIVX |
1349 | 84 #ifndef NEW_DECORE |
1294 | 85 #include "opendivx/decore.h" |
1349 | 86 #else |
87 #include <decore.h> | |
88 #endif | |
4489 | 89 #endif |
1294 | 90 |
2378 | 91 #ifdef USE_XANIM |
92 #include "xacodec.h" | |
93 #endif | |
94 | |
2938
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
95 #ifdef USE_TV |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
96 #include "libmpdemux/tv.h" |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
97 extern int tv_param_on; |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
98 extern tvi_handle_t *tv_handler; |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
99 #endif |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
100 |
1948 | 101 void AVI_Decode_RLE8(char *image,char *delta,int tdsize, |
102 unsigned int *map,int imagex,int imagey,unsigned char x11_bytes_pixel); | |
103 | |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
104 void AVI_Decode_Video1_16( |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
105 char *encoded, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
106 int encoded_size, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
107 char *decoded, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
108 int width, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
109 int height, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
110 int bytes_per_pixel); |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
111 |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
112 void AVI_Decode_Video1_8( |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
113 char *encoded, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
114 int encoded_size, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
115 char *decoded, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
116 int width, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
117 int height, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
118 unsigned char *palette_map, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
119 int bytes_per_pixel); |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
120 |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
121 void Decode_Fli( |
3172 | 122 unsigned char *encoded, |
123 int encoded_size, | |
124 unsigned char *decoded, | |
125 int width, | |
126 int height, | |
127 int bytes_per_pixel); | |
128 | |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
129 void qt_decode_rle( |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
130 unsigned char *encoded, |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
131 int encoded_size, |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
132 unsigned char *decoded, |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
133 int width, |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
134 int height, |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
135 int encoded_bpp, |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
136 int bytes_per_pixel); |
3172 | 137 |
3804
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
138 void decode_nuv( |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
139 unsigned char *encoded, |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
140 int encoded_size, |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
141 unsigned char *decoded, |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
142 int width, |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
143 int height); |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
144 |
3969 | 145 void *decode_cinepak_init(void); |
146 | |
147 void decode_cinepak( | |
148 void *context, | |
149 unsigned char *buf, | |
150 int size, | |
151 unsigned char *frame, | |
152 int width, | |
153 int height, | |
154 int bit_per_pixel); | |
155 | |
156 void decode_cyuv( | |
157 unsigned char *buf, | |
158 int size, | |
159 unsigned char *frame, | |
160 int width, | |
161 int height, | |
162 int bit_per_pixel); | |
163 | |
4275
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
164 int qt_init_decode_smc(void); |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
165 |
4227 | 166 void qt_decode_smc( |
167 unsigned char *encoded, | |
168 int encoded_size, | |
169 unsigned char *decoded, | |
170 int width, | |
171 int height, | |
4275
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
172 unsigned char *palette_map, |
4227 | 173 int bytes_per_pixel); |
174 | |
4301
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
175 void decode_duck_tm1( |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
176 unsigned char *encoded, |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
177 int encoded_size, |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
178 unsigned char *decoded, |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
179 int width, |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
180 int height, |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
181 int bytes_per_pixel); |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
182 |
1294 | 183 //**************************************************************************// |
184 // The OpenDivX stuff: | |
185 //**************************************************************************// | |
186 | |
187 #ifndef NEW_DECORE | |
188 | |
189 static unsigned char *opendivx_src[3]; | |
190 static int opendivx_stride[3]; | |
191 | |
192 // callback, the opendivx decoder calls this for each frame: | |
193 void convert_linux(unsigned char *puc_y, int stride_y, | |
194 unsigned char *puc_u, unsigned char *puc_v, int stride_uv, | |
195 unsigned char *bmp, int width_y, int height_y){ | |
196 | |
197 // printf("convert_yuv called %dx%d stride: %d,%d\n",width_y,height_y,stride_y,stride_uv); | |
198 | |
199 opendivx_src[0]=puc_y; | |
200 opendivx_src[1]=puc_u; | |
201 opendivx_src[2]=puc_v; | |
202 | |
203 opendivx_stride[0]=stride_y; | |
204 opendivx_stride[1]=stride_uv; | |
205 opendivx_stride[2]=stride_uv; | |
206 } | |
207 #endif | |
208 | |
1429 | 209 int get_video_quality_max(sh_video_t *sh_video){ |
210 switch(sh_video->codec->driver){ | |
2087 | 211 #ifdef USE_WIN32DLL |
212 case VFM_VFW: | |
213 case VFM_VFWEX: | |
2184 | 214 return 9; // for Divx.dll (divx4) |
2087 | 215 #endif |
1429 | 216 #ifdef USE_DIRECTSHOW |
217 case VFM_DSHOW: | |
218 return 4; | |
219 #endif | |
220 #ifdef MPEG12_POSTPROC | |
221 case VFM_MPEG: | |
2184 | 222 return GET_PP_QUALITY_MAX; |
1429 | 223 #endif |
2228 | 224 #ifdef FF_POSTPROCESS |
225 case VFM_FFMPEG: | |
226 return GET_PP_QUALITY_MAX; | |
227 #endif | |
4489 | 228 #ifdef USE_DIVX |
1429 | 229 case VFM_DIVX4: |
230 case VFM_ODIVX: | |
2184 | 231 #ifdef NEW_DECORE |
232 return 9; // for divx4linux | |
233 #else | |
234 return GET_PP_QUALITY_MAX; // for opendivx | |
235 #endif | |
4489 | 236 #endif |
1429 | 237 } |
238 return 0; | |
239 } | |
240 | |
241 void set_video_quality(sh_video_t *sh_video,int quality){ | |
242 switch(sh_video->codec->driver){ | |
2087 | 243 #ifdef USE_WIN32DLL |
244 case VFM_VFW: | |
245 case VFM_VFWEX: | |
246 vfw_set_postproc(sh_video,10*quality); | |
247 break; | |
248 #endif | |
1429 | 249 #ifdef USE_DIRECTSHOW |
250 case VFM_DSHOW: { | |
251 if(quality<0 || quality>4) quality=4; | |
3062 | 252 DS_VideoDecoder_SetValue(ds_vdec,"Quality",quality); |
1429 | 253 } |
254 break; | |
255 #endif | |
256 #ifdef MPEG12_POSTPROC | |
257 case VFM_MPEG: { | |
2184 | 258 if(quality<0 || quality>GET_PP_QUALITY_MAX) quality=GET_PP_QUALITY_MAX; |
259 picture->pp_options=getPpModeForQuality(quality); | |
1429 | 260 } |
261 break; | |
262 #endif | |
2228 | 263 #ifdef FF_POSTPROCESS |
264 case VFM_FFMPEG: | |
265 if(quality<0 || quality>GET_PP_QUALITY_MAX) quality=GET_PP_QUALITY_MAX; | |
266 lavc_pp=getPpModeForQuality(quality); | |
267 break; | |
268 #endif | |
4489 | 269 #ifdef USE_DIVX |
1429 | 270 case VFM_DIVX4: |
271 case VFM_ODIVX: { | |
272 DEC_SET dec_set; | |
2184 | 273 #ifdef NEW_DECORE |
274 if(quality<0 || quality>9) quality=9; | |
275 dec_set.postproc_level=quality*10; | |
276 #else | |
277 if(quality<0 || quality>GET_PP_QUALITY_MAX) quality=GET_PP_QUALITY_MAX; | |
278 dec_set.postproc_level=getPpModeForQuality(quality); | |
279 #endif | |
1429 | 280 decore(0x123,DEC_OPT_SETPP,&dec_set,NULL); |
281 } | |
4489 | 282 #endif |
1429 | 283 break; |
284 } | |
285 } | |
286 | |
4395 | 287 int set_video_colors(sh_video_t *sh_video,char *item,int value) |
288 { | |
289 if(vo_vaa.get_video_eq) | |
4388 | 290 { |
4395 | 291 vidix_video_eq_t veq; |
292 if(vo_vaa.get_video_eq(&veq) == 0) | |
4388 | 293 { |
4395 | 294 int v_hw_equ_cap = veq.cap; |
295 if(v_hw_equ_cap != 0) | |
296 { | |
297 if(vo_vaa.set_video_eq) | |
298 { | |
299 vidix_video_eq_t veq; | |
300 veq.flags = VEQ_FLG_ITU_R_BT_601; /* Fixme please !!! */ | |
301 if(strcmp(item,"Brightness") == 0) | |
302 { | |
303 if(!(v_hw_equ_cap & VEQ_CAP_BRIGHTNESS)) goto try_sw_control; | |
304 veq.brightness = value*10; | |
305 veq.cap = VEQ_CAP_BRIGHTNESS; | |
306 } | |
307 else | |
308 if(strcmp(item,"Contrast") == 0) | |
309 { | |
310 if(!(v_hw_equ_cap & VEQ_CAP_CONTRAST)) goto try_sw_control; | |
311 veq.contrast = value*10; | |
312 veq.cap = VEQ_CAP_CONTRAST; | |
313 } | |
314 else | |
315 if(strcmp(item,"Saturation") == 0) | |
316 { | |
317 if(!(v_hw_equ_cap & VEQ_CAP_SATURATION)) goto try_sw_control; | |
318 veq.saturation = value*10; | |
319 veq.cap = VEQ_CAP_SATURATION; | |
320 } | |
321 else | |
322 if(strcmp(item,"Hue") == 0) | |
323 { | |
324 if(!(v_hw_equ_cap & VEQ_CAP_HUE)) goto try_sw_control; | |
325 veq.hue = value*10; | |
326 veq.cap = VEQ_CAP_HUE; | |
327 } | |
328 else goto try_sw_control;; | |
329 vo_vaa.set_video_eq(&veq); | |
330 } | |
331 return 1; | |
332 } | |
4388 | 333 } |
334 } | |
4395 | 335 try_sw_control: |
1431 | 336 #ifdef USE_DIRECTSHOW |
2295 | 337 if(sh_video->codec->driver==VFM_DSHOW){ |
3062 | 338 DS_VideoDecoder_SetValue(ds_vdec,item,value); |
1429 | 339 return 1; |
340 } | |
1431 | 341 #endif |
2938
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
342 |
2295 | 343 #ifdef NEW_DECORE |
344 #ifdef DECORE_VERSION | |
345 #if DECORE_VERSION >= 20011010 | |
346 if(sh_video->codec->driver==VFM_DIVX4){ | |
347 int option; | |
348 if(!strcmp(item,"Brightness")) option=DEC_GAMMA_BRIGHTNESS; | |
349 else if(!strcmp(item, "Contrast")) option=DEC_GAMMA_CONTRAST; | |
350 else if(!strcmp(item,"Saturation")) option=DEC_GAMMA_SATURATION; | |
351 else return 0; | |
352 value = (value * 256) / 100 - 128; | |
353 decore(0x123, DEC_OPT_GAMMA, (void *)option, (void *) value); | |
354 return 1; | |
355 } | |
356 #endif | |
357 #endif | |
358 #endif | |
2938
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
359 |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
360 #ifdef USE_TV |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
361 |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
362 if (tv_param_on == 1) |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
363 { |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
364 if (!strcmp(item, "Brightness")) |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
365 { |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
366 tv_set_color_options(tv_handler, TV_COLOR_BRIGHTNESS, value); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
367 return(1); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
368 } |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
369 if (!strcmp(item, "Hue")) |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
370 { |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
371 tv_set_color_options(tv_handler, TV_COLOR_HUE, value); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
372 return(1); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
373 } |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
374 if (!strcmp(item, "Saturation")) |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
375 { |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
376 tv_set_color_options(tv_handler, TV_COLOR_SATURATION, value); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
377 return(1); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
378 } |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
379 if (!strcmp(item, "Contrast")) |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
380 { |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
381 tv_set_color_options(tv_handler, TV_COLOR_CONTRAST, value); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
382 return(1); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
383 } |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
384 } |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
385 #endif |
1429 | 386 return 0; |
387 } | |
1294 | 388 |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
389 void uninit_video(sh_video_t *sh_video){ |
1654 | 390 if(!sh_video->inited) return; |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
391 mp_msg(MSGT_DECVIDEO,MSGL_V,"uninit video: %d \n",sh_video->codec->driver); |
1654 | 392 switch(sh_video->codec->driver){ |
1666 | 393 #ifdef USE_LIBAVCODEC |
1654 | 394 case VFM_FFMPEG: |
395 if (avcodec_close(&lavc_context) < 0) | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
396 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantCloseCodec); |
1654 | 397 break; |
1666 | 398 #endif |
1669 | 399 #ifdef USE_DIRECTSHOW |
1664 | 400 case VFM_DSHOW: // Win32/DirectShow |
3062 | 401 if(ds_vdec){ DS_VideoDecoder_Destroy(ds_vdec); ds_vdec=NULL; } |
1664 | 402 break; |
1666 | 403 #endif |
1654 | 404 case VFM_MPEG: |
405 mpeg2_free_image_buffers (picture); | |
406 break; | |
2563 | 407 #ifdef USE_XANIM |
408 case VFM_XANIM: | |
409 xacodec_exit(); | |
410 break; | |
411 #endif | |
4489 | 412 #ifdef USE_DIVX |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
3969
diff
changeset
|
413 case VFM_DIVX4: |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
3969
diff
changeset
|
414 case VFM_ODIVX: |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
3969
diff
changeset
|
415 decore(0x123,DEC_OPT_RELEASE,NULL,NULL); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
3969
diff
changeset
|
416 break; |
4489 | 417 #endif |
1654 | 418 } |
419 if(sh_video->our_out_buffer){ | |
420 free(sh_video->our_out_buffer); | |
421 sh_video->our_out_buffer=NULL; | |
422 } | |
423 sh_video->inited=0; | |
424 } | |
425 | |
4453 | 426 int init_video(sh_video_t *sh_video,int *pitches) |
427 { | |
1294 | 428 unsigned int out_fmt=sh_video->codec->outfmt[sh_video->outfmtidx]; |
4453 | 429 pitches[0] = pitches[1] =pitches[2] = 0; /* fake unknown */ |
1294 | 430 |
1454
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
431 sh_video->our_out_buffer=NULL; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
432 |
4188 | 433 sh_video->image=new_mp_image(sh_video->disp_w,sh_video->disp_h); |
434 mp_image_setfmt(sh_video->image,out_fmt); | |
435 | |
1294 | 436 switch(sh_video->codec->driver){ |
4486 | 437 case VFM_ROQVIDEO: |
438 #ifdef USE_MP_IMAGE | |
439 sh_video->image->type=MP_IMGTYPE_STATIC; | |
440 #else | |
441 sh_video->our_out_buffer = | |
442 (char*)memalign(64, sh_video->disp_w * sh_video->disp_h * 1.5); | |
443 #endif | |
444 sh_video->context = roq_decode_video_init(); | |
445 break; | |
3643
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
446 case VFM_CINEPAK: { |
4188 | 447 #ifdef USE_MP_IMAGE |
448 sh_video->image->type=MP_IMGTYPE_STATIC; | |
449 #else | |
3643
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
450 int bpp=((out_fmt&255)+7)/8; |
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
451 sh_video->our_out_buffer = |
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
452 (char*)memalign(64, sh_video->disp_w*sh_video->disp_h*bpp); |
4188 | 453 #endif |
3643
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
454 sh_video->context = decode_cinepak_init(); |
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
455 break; |
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
456 } |
2659 | 457 case VFM_XANIM: { |
2378 | 458 #ifdef USE_XANIM |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
459 int ret=xacodec_init_video(sh_video,out_fmt); |
2378 | 460 if(!ret) return 0; |
2659 | 461 #else |
2660 | 462 // mp_msg(MSGT_DECVIDEO, MSGL_ERR, MSGTR_NoXAnimSupport); |
463 mp_msg(MSGT_DECVIDEO, MSGL_ERR, "MPlayer was compiled WIHTOUT XAnim support!\n"); | |
2659 | 464 return 0; |
465 #endif | |
2378 | 466 break; |
467 } | |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1496
diff
changeset
|
468 #ifdef USE_WIN32DLL |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
469 case VFM_VFW: { |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
470 if(!init_vfw_video_codec(sh_video,0)) { |
1294 | 471 return 0; |
472 } | |
1567 | 473 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: Win32 video codec init OK!\n"); |
4516 | 474 /* Warning: these pitches tested only with YUY2 fourcc */ |
475 pitches[0] = 16; pitches[1] = pitches[2] = 8; | |
1294 | 476 break; |
477 } | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
478 case VFM_VFWEX: { |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
479 if(!init_vfw_video_codec(sh_video,1)) { |
1297 | 480 return 0; |
481 } | |
1567 | 482 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: Win32Ex video codec init OK!\n"); |
4516 | 483 /* Warning: these pitches tested only with YUY2 fourcc */ |
484 pitches[0] = 16; pitches[1] = pitches[2] = 8; | |
1297 | 485 break; |
486 } | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
487 case VFM_DSHOW: { // Win32/DirectShow |
1294 | 488 #ifndef USE_DIRECTSHOW |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
489 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_NoDShowSupport); |
1294 | 490 return 0; |
491 #else | |
1547
4b0046db8e64
alloc frame buffer for directshow codec - requires for avifile sync
arpi
parents:
1517
diff
changeset
|
492 int bpp; |
3448 | 493 if(!(ds_vdec=DS_VideoDecoder_Open(sh_video->codec->dll,&sh_video->codec->guid, sh_video->bih, 0, 0))){ |
1294 | 494 // if(DS_VideoDecoder_Open(sh_video->codec->dll,&sh_video->codec->guid, sh_video->bih, 0, NULL)){ |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
495 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingDLLcodec,sh_video->codec->dll); |
1567 | 496 mp_msg(MSGT_DECVIDEO,MSGL_HINT,"Maybe you forget to upgrade your win32 codecs?? It's time to download the new\n"); |
497 mp_msg(MSGT_DECVIDEO,MSGL_HINT,"package from: ftp://mplayerhq.hu/MPlayer/releases/w32codec.zip !\n"); | |
498 // mp_msg(MSGT_DECVIDEO,MSGL_HINT,"Or you should disable DShow support: make distclean;make -f Makefile.No-DS\n"); | |
1294 | 499 return 0; |
500 } | |
4188 | 501 |
502 #ifdef USE_MP_IMAGE | |
503 sh_video->image->type=MP_IMGTYPE_STATIC; | |
504 bpp=sh_video->image->bpp; | |
505 if(sh_video->image->flags&MP_IMGFLAG_YUV){ | |
506 DS_VideoDecoder_SetDestFmt(ds_vdec,bpp,out_fmt); // YUV | |
507 } else { | |
508 DS_VideoDecoder_SetDestFmt(ds_vdec,out_fmt&255,0); // RGB/BGR | |
509 } | |
510 #else | |
1294 | 511 switch(out_fmt){ |
512 case IMGFMT_YUY2: | |
513 case IMGFMT_UYVY: | |
1547
4b0046db8e64
alloc frame buffer for directshow codec - requires for avifile sync
arpi
parents:
1517
diff
changeset
|
514 bpp=16; |
3062 | 515 DS_VideoDecoder_SetDestFmt(ds_vdec,16,out_fmt);break; // packed YUV |
1294 | 516 case IMGFMT_YV12: |
517 case IMGFMT_I420: | |
518 case IMGFMT_IYUV: | |
1547
4b0046db8e64
alloc frame buffer for directshow codec - requires for avifile sync
arpi
parents:
1517
diff
changeset
|
519 bpp=12; |
3062 | 520 DS_VideoDecoder_SetDestFmt(ds_vdec,12,out_fmt);break; // planar YUV |
1294 | 521 default: |
1547
4b0046db8e64
alloc frame buffer for directshow codec - requires for avifile sync
arpi
parents:
1517
diff
changeset
|
522 bpp=((out_fmt&255)+7)&(~7); |
3062 | 523 DS_VideoDecoder_SetDestFmt(ds_vdec,out_fmt&255,0); // RGB/BGR |
1294 | 524 } |
525 | |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
526 sh_video->our_out_buffer = (char*)memalign(64,sh_video->disp_w*sh_video->disp_h*bpp/8); // FIXME!!! |
4188 | 527 #endif |
4457 | 528 /* Warning: these pitches tested only with YUY2 fourcc */ |
529 pitches[0] = 16; pitches[1] = pitches[2] = 8; | |
3062 | 530 DS_SetAttr_DivX("Quality",divx_quality); |
1294 | 531 |
3062 | 532 DS_VideoDecoder_StartInternal(ds_vdec); |
1294 | 533 // printf("DivX setting result = %d\n", DS_SetAttr_DivX("Quality",divx_quality) ); |
534 // printf("DivX setting result = %d\n", DS_SetValue_DivX("Brightness",60) ); | |
535 | |
1567 | 536 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: Win32/DShow video codec init OK!\n"); |
1294 | 537 break; |
538 #endif | |
539 } | |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1496
diff
changeset
|
540 #else /* !USE_WIN32DLL */ |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
541 case VFM_VFW: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
542 case VFM_DSHOW: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
543 case VFM_VFWEX: |
2006 | 544 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_NoWfvSupport); |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1297
diff
changeset
|
545 return 0; |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1496
diff
changeset
|
546 #endif /* !USE_WIN32DLL */ |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
547 case VFM_ODIVX: { // OpenDivX |
4489 | 548 #ifndef USE_DIVX |
549 mp_msg(MSGT_DECVIDEO,MSGL_ERR,"MPlayer was compiled WITHOUT OpenDivx support!\n"); | |
550 return 0; | |
551 #else | |
1567 | 552 mp_msg(MSGT_DECVIDEO,MSGL_V,"OpenDivX video codec\n"); |
1294 | 553 { DEC_PARAM dec_param; |
554 DEC_SET dec_set; | |
1349 | 555 memset(&dec_param,0,sizeof(dec_param)); |
1294 | 556 #ifdef NEW_DECORE |
557 dec_param.output_format=DEC_USER; | |
558 #else | |
559 dec_param.color_depth = 32; | |
560 #endif | |
561 dec_param.x_dim = sh_video->bih->biWidth; | |
562 dec_param.y_dim = sh_video->bih->biHeight; | |
563 decore(0x123, DEC_OPT_INIT, &dec_param, NULL); | |
564 dec_set.postproc_level = divx_quality; | |
565 decore(0x123, DEC_OPT_SETPP, &dec_set, NULL); | |
1349 | 566 } |
1567 | 567 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: OpenDivX video codec init OK!\n"); |
1349 | 568 break; |
4489 | 569 #endif |
1349 | 570 } |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
571 case VFM_DIVX4: { // DivX4Linux |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
572 #ifndef NEW_DECORE |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
573 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_NoDivx4Support); |
1631 | 574 return 0; |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
575 #else |
1567 | 576 mp_msg(MSGT_DECVIDEO,MSGL_V,"DivX4Linux video codec\n"); |
1349 | 577 { DEC_PARAM dec_param; |
578 DEC_SET dec_set; | |
579 int bits=16; | |
580 memset(&dec_param,0,sizeof(dec_param)); | |
581 switch(out_fmt){ | |
582 case IMGFMT_YV12: dec_param.output_format=DEC_YV12;bits=12;break; | |
583 case IMGFMT_YUY2: dec_param.output_format=DEC_YUY2;break; | |
584 case IMGFMT_UYVY: dec_param.output_format=DEC_UYVY;break; | |
585 case IMGFMT_I420: dec_param.output_format=DEC_420;bits=12;break; | |
586 case IMGFMT_BGR15: dec_param.output_format=DEC_RGB555_INV;break; | |
587 case IMGFMT_BGR16: dec_param.output_format=DEC_RGB565_INV;break; | |
588 case IMGFMT_BGR24: dec_param.output_format=DEC_RGB24_INV;bits=24;break; | |
589 case IMGFMT_BGR32: dec_param.output_format=DEC_RGB32_INV;bits=32;break; | |
590 default: | |
1567 | 591 mp_msg(MSGT_DECVIDEO,MSGL_ERR,"Unsupported out_fmt: 0x%X\n",out_fmt); |
1349 | 592 return 0; |
593 } | |
594 dec_param.x_dim = sh_video->bih->biWidth; | |
595 dec_param.y_dim = sh_video->bih->biHeight; | |
596 decore(0x123, DEC_OPT_INIT, &dec_param, NULL); | |
597 dec_set.postproc_level = divx_quality; | |
598 decore(0x123, DEC_OPT_SETPP, &dec_set, NULL); | |
4188 | 599 #ifdef USE_MP_IMAGE |
600 sh_video->image->type=MP_IMGTYPE_STATIC; | |
601 #else | |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
602 sh_video->our_out_buffer = (char*)memalign(64,((bits*dec_param.x_dim+7)/8)*dec_param.y_dim); |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
603 // sh_video->our_out_buffer = shmem_alloc(dec_param.x_dim*dec_param.y_dim*5); |
4188 | 604 #endif |
1294 | 605 } |
1567 | 606 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: OpenDivX video codec init OK!\n"); |
1294 | 607 break; |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
608 #endif |
1294 | 609 } |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
610 case VFM_FFMPEG: { // FFmpeg's libavcodec |
1294 | 611 #ifndef USE_LIBAVCODEC |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
612 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_NoLAVCsupport); |
1631 | 613 return 0; |
1294 | 614 #else |
4453 | 615 /* Just because we know that */ |
616 pitches[0] = 16; | |
617 pitches[1] = pitches[2] = 8; | |
1567 | 618 mp_msg(MSGT_DECVIDEO,MSGL_V,"FFmpeg's libavcodec video codec\n"); |
1654 | 619 if(!avcodec_inited){ |
620 avcodec_init(); | |
621 avcodec_register_all(); | |
622 avcodec_inited=1; | |
623 } | |
1294 | 624 lavc_codec = (AVCodec *)avcodec_find_decoder_by_name(sh_video->codec->dll); |
625 if(!lavc_codec){ | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
626 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingLAVCcodec,sh_video->codec->dll); |
1631 | 627 return 0; |
1294 | 628 } |
629 memset(&lavc_context, 0, sizeof(lavc_context)); | |
1462 | 630 // sh_video->disp_h/=2; // !! |
1294 | 631 lavc_context.width=sh_video->disp_w; |
632 lavc_context.height=sh_video->disp_h; | |
1567 | 633 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"libavcodec.size: %d x %d\n",lavc_context.width,lavc_context.height); |
3877 | 634 if (sh_video->format == mmioFOURCC('R', 'V', '1', '3')) |
635 lavc_context.sub_id = 3; | |
1294 | 636 /* open it */ |
637 if (avcodec_open(&lavc_context, lavc_codec) < 0) { | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
638 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantOpenCodec); |
1631 | 639 return 0; |
1294 | 640 } |
2228 | 641 #ifdef FF_POSTPROCESS |
642 lavc_pp=divx_quality; | |
643 #endif | |
1567 | 644 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: libavcodec init OK!\n"); |
1294 | 645 break; |
646 #endif | |
647 } | |
648 | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
649 case VFM_MPEG: { |
1294 | 650 // init libmpeg2: |
2567 | 651 mpeg2_init(); |
1294 | 652 #ifdef MPEG12_POSTPROC |
653 picture->pp_options=divx_quality; | |
654 #else | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
655 if(divx_quality) mp_msg(MSGT_DECVIDEO,MSGL_HINT,MSGTR_MpegPPhint); |
1294 | 656 #endif |
4453 | 657 /* Just because we know that */ |
658 pitches[0] = 16; | |
659 pitches[1] = pitches[2] = 8; | |
2567 | 660 // send seq header to the decoder: |
661 mpeg2_decode_data(NULL,videobuffer,videobuffer+videobuf_len,0); | |
1294 | 662 mpeg2_allocate_image_buffers (picture); |
663 break; | |
664 } | |
1488 | 665 case VFM_RAW: { |
3397
39abf443aac4
vfm_raw hack: set outfmt if format != 0x0 (for tv input)
alex
parents:
3303
diff
changeset
|
666 if (sh_video->format != 0x0) |
39abf443aac4
vfm_raw hack: set outfmt if format != 0x0 (for tv input)
alex
parents:
3303
diff
changeset
|
667 /* set out_fmt */ |
39abf443aac4
vfm_raw hack: set outfmt if format != 0x0 (for tv input)
alex
parents:
3303
diff
changeset
|
668 sh_video->codec->outfmt[sh_video->outfmtidx] = sh_video->format; |
1488 | 669 break; |
670 } | |
1948 | 671 case VFM_RLE: { |
672 int bpp=((out_fmt&255)+7)/8; // RGB only | |
4188 | 673 #ifdef USE_MP_IMAGE |
674 sh_video->image->type=MP_IMGTYPE_STATIC; | |
675 #else | |
676 sh_video->our_out_buffer = (char*)memalign(64,sh_video->disp_w*sh_video->disp_h*bpp); // FIXME!!! | |
677 #endif | |
1949 | 678 if(bpp==2){ // 15 or 16 bpp ==> palette conversion! |
679 unsigned int* pal=(unsigned int*)(((char*)sh_video->bih)+40); | |
3303 | 680 int cols=(sh_video->bih->biSize-40)/4; |
681 //int cols=1<<(sh_video->bih->biBitCount); | |
1949 | 682 int i; |
683 if(cols>256) cols=256; | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
684 mp_msg(MSGT_DECVIDEO,MSGL_V,"RLE: converting palette for %d colors.\n",cols); |
1949 | 685 for(i=0;i<cols;i++){ |
686 unsigned int c=pal[i]; | |
687 unsigned int b=c&255; | |
688 unsigned int g=(c>>8)&255; | |
689 unsigned int r=(c>>16)&255; | |
690 if((out_fmt&255)==15) | |
691 pal[i]=((r>>3)<<10)|((g>>3)<<5)|((b>>3)); | |
692 else | |
693 pal[i]=((r>>3)<<11)|((g>>2)<<5)|((b>>3)); | |
694 } | |
695 } | |
1948 | 696 break; |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
697 case VFM_MSVIDC: |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
698 case VFM_FLI: |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
699 case VFM_QTRLE: |
4301
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
700 case VFM_DUCKTM1: |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
701 { |
4188 | 702 #ifdef USE_MP_IMAGE |
703 sh_video->image->type=MP_IMGTYPE_STATIC; | |
704 #else | |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
705 int bpp=((out_fmt&255)+7)/8; // RGB only |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
706 sh_video->our_out_buffer = |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
707 (char*)memalign(64, sh_video->disp_w*sh_video->disp_h*bpp); // FIXME!!! |
4188 | 708 #endif |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
709 if ((sh_video->codec->driver == VFM_QTRLE) && (sh_video->bih->biBitCount != 24)) |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
710 printf ( |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
711 " *** FYI: This Quicktime file is using %d-bit RLE Animation\n" \ |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
712 " encoding, which is not yet supported by MPlayer. But if you upload\n" \ |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
713 " this Quicktime file to the MPlayer FTP, the team could look at it.\n", |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
714 sh_video->bih->biBitCount); |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
715 |
3804
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
716 break; |
3172 | 717 } |
4275
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
718 case VFM_QTSMC: |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
719 { |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
720 if (qt_init_decode_smc() != 0) |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
721 mp_msg(MSGT_DECVIDEO, MSGL_ERR, "SMC decoder could not allocate enough memory"); |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
722 #ifdef USE_MP_IMAGE |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
723 sh_video->image->type=MP_IMGTYPE_STATIC; |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
724 #else |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
725 int bpp=((out_fmt&255)+7)/8; // RGB only |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
726 sh_video->our_out_buffer = |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
727 (char*)memalign(64, sh_video->disp_w*sh_video->disp_h*bpp); // FIXME!!! |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
728 #endif |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
729 break; |
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
730 } |
3804
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
731 case VFM_NUV: |
4188 | 732 #ifdef USE_MP_IMAGE |
733 sh_video->image->type=MP_IMGTYPE_STATIC; | |
734 #else | |
3804
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
735 sh_video->our_out_buffer = (char *)memalign(64, sh_video->disp_w*sh_video->disp_h*3/2); |
4188 | 736 #endif |
3172 | 737 break; |
3969 | 738 case VFM_CYUV: { |
4188 | 739 // int bpp=((out_fmt&255)+7)/8; |
740 #ifdef USE_MP_IMAGE | |
741 sh_video->image->type=MP_IMGTYPE_STATIC; | |
742 #else | |
3969 | 743 sh_video->our_out_buffer = |
744 (char*)memalign(64, sh_video->disp_w*sh_video->disp_h*3); | |
4188 | 745 #endif |
3969 | 746 break; |
747 } | |
1948 | 748 } |
1294 | 749 } |
1654 | 750 sh_video->inited=1; |
1294 | 751 return 1; |
752 } | |
753 | |
4494 | 754 extern int vaa_use_dr; |
4515 | 755 |
756 static int use_dr=0; | |
757 static bes_da_t bda; | |
758 void init_video_vaa( void ) | |
759 { | |
760 memset(&bda,0,sizeof(bes_da_t)); | |
761 if(vo_vaa.query_bes_da) | |
762 use_dr = vo_vaa.query_bes_da(&bda) ? 0 : 1; | |
763 if(!vaa_use_dr) use_dr = 0; | |
764 } | |
765 | |
1422 | 766 #ifdef USE_LIBVO2 |
767 int decode_video(vo2_handle_t *video_out,sh_video_t *sh_video,unsigned char *start,int in_size,int drop_frame){ | |
768 #else | |
1294 | 769 int decode_video(vo_functions_t *video_out,sh_video_t *sh_video,unsigned char *start,int in_size,int drop_frame){ |
1422 | 770 #endif |
4188 | 771 |
772 mp_image_t *mpi=sh_video->image; | |
773 unsigned int out_fmt=mpi->imgfmt; //sh_video->codec->outfmt[sh_video->outfmtidx]; | |
774 int planar=(mpi->flags&MP_IMGFLAG_PLANAR)!=0; //(out_fmt==IMGFMT_YV12||out_fmt==IMGFMT_IYUV||out_fmt==IMGFMT_I420); | |
1294 | 775 int blit_frame=0; |
4460 | 776 void *vmem; |
777 int painted; | |
778 static int double_buff_num = 0; | |
1294 | 779 |
4188 | 780 //uint8_t* planes_[3]; |
781 //uint8_t** planes=planes_; | |
782 //int stride_[3]; | |
783 //int* stride=stride_; | |
1360 | 784 |
785 unsigned int t=GetTimer(); | |
786 unsigned int t2; | |
787 | |
4515 | 788 painted = 0; |
4188 | 789 #ifdef USE_MP_IMAGE |
790 if(mpi->type!=MP_IMGTYPE_EXPORT) | |
791 if( !(mpi->flags&MP_IMGFLAG_ALLOCATED) && !(mpi->flags&MP_IMGFLAG_DIRECT) ){ | |
792 // allocate image buffer: | |
793 sh_video->our_out_buffer = (char *)memalign(64, mpi->width*mpi->height*mpi->bpp/8); | |
794 if((mpi->flags|MP_IMGFLAG_PLANAR) && (mpi->flags|MP_IMGFLAG_YUV)){ | |
795 // planar YUV | |
796 mpi->stride[0]=mpi->width; | |
797 mpi->stride[1]=mpi->stride[2]=mpi->width/2; | |
798 mpi->planes[0]=sh_video->our_out_buffer; | |
799 mpi->planes[1]=mpi->planes[0]+mpi->stride[0]*mpi->height; | |
800 mpi->planes[2]=mpi->planes[1]+mpi->stride[0]*mpi->height/4; | |
801 } else { | |
802 // packed YUV / RGB | |
803 mpi->stride[0]=mpi->width*mpi->bpp; | |
804 mpi->planes[0]=sh_video->our_out_buffer; | |
805 } | |
806 mpi->flags|=MP_IMGFLAG_ALLOCATED; | |
807 mp_msg(MSGT_DECVIDEO,MSGL_INFO,"mp_image: allocated %d bytes for %dx%dx%d [0x%X] image\n", | |
808 mpi->width*mpi->height*mpi->bpp/8, mpi->width, mpi->height, mpi->bpp, mpi->imgfmt); | |
809 } | |
810 #endif | |
811 | |
2794 | 812 //printf("decode_frame(start: %p, size: %d, w: %d, h: %d)\n", |
813 // start, in_size, sh_video->disp_w, sh_video->disp_h); | |
814 | |
1294 | 815 //-------------------- Decode a frame: ----------------------- |
816 switch(sh_video->codec->driver){ | |
3643
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
817 case VFM_CINEPAK: |
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
818 decode_cinepak(sh_video->context, start, in_size, sh_video->our_out_buffer, |
3646 | 819 sh_video->disp_w, sh_video->disp_h, (out_fmt==IMGFMT_YUY2)?16:(out_fmt&255)); |
3643
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
820 blit_frame = 3; |
fb9fd7e2dd35
native opensourec Cinepak (CVID) codec by im Ferguson <timf@mail.csse.monash.edu.au>
arpi
parents:
3449
diff
changeset
|
821 break; |
2378 | 822 #ifdef USE_XANIM |
823 case VFM_XANIM: { | |
2384 | 824 xacodec_image_t* image=xacodec_decode_frame(start,in_size,drop_frame?1:0); |
825 if(image){ | |
826 blit_frame=2; | |
4188 | 827 //planes=image->planes; |
828 //stride=image->stride; | |
829 mpi->planes[0]=image->planes[0]; | |
830 mpi->planes[1]=image->planes[1]; | |
831 mpi->planes[2]=image->planes[2]; | |
832 mpi->stride[0]=image->stride[0]; | |
833 mpi->stride[1]=image->stride[1]; | |
834 mpi->stride[2]=image->stride[2]; | |
2384 | 835 } |
2378 | 836 break; |
837 } | |
838 #endif | |
4489 | 839 #ifdef USE_DIVX |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
840 case VFM_ODIVX: { |
1294 | 841 // OpenDivX |
842 DEC_FRAME dec_frame; | |
843 #ifdef NEW_DECORE | |
844 DEC_PICTURE dec_pic; | |
845 #endif | |
846 // let's decode | |
847 dec_frame.length = in_size; | |
848 dec_frame.bitstream = start; | |
1349 | 849 dec_frame.render_flag = drop_frame?0:1; |
850 | |
1294 | 851 #ifdef NEW_DECORE |
852 dec_frame.bmp=&dec_pic; | |
853 dec_pic.y=dec_pic.u=dec_pic.v=NULL; | |
1349 | 854 decore(0x123, (sh_video->format==mmioFOURCC('D','I','V','3'))?DEC_OPT_FRAME_311:DEC_OPT_FRAME, &dec_frame, NULL); |
855 #else | |
1360 | 856 opendivx_src[0]=NULL; |
1349 | 857 decore(0x123, 0, &dec_frame, NULL); |
1294 | 858 #endif |
1360 | 859 |
860 if(!drop_frame) | |
1294 | 861 |
1349 | 862 // let's display |
1294 | 863 #ifdef NEW_DECORE |
864 if(dec_pic.y){ | |
4188 | 865 mpi->planes[0]=dec_pic.y; |
866 mpi->planes[1]=dec_pic.u; | |
867 mpi->planes[2]=dec_pic.v; | |
868 mpi->stride[0]=dec_pic.stride_y; | |
869 mpi->stride[1]=mpi->stride[2]=dec_pic.stride_uv; | |
1360 | 870 blit_frame=2; |
1294 | 871 } |
872 #else | |
873 if(opendivx_src[0]){ | |
4188 | 874 // planes=opendivx_src; |
875 // stride=opendivx_stride; | |
876 mpi->planes[0]=opendivx_src[0]; | |
877 mpi->planes[1]=opendivx_src[1]; | |
878 mpi->planes[2]=opendivx_src[2]; | |
879 mpi->stride[0]=opendivx_stride[0]; | |
880 mpi->stride[1]=opendivx_stride[1]; | |
881 mpi->stride[2]=opendivx_stride[2]; | |
1360 | 882 blit_frame=2; |
1294 | 883 } |
884 #endif | |
885 | |
886 break; | |
887 } | |
4489 | 888 #endif |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
889 #ifdef NEW_DECORE |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
890 case VFM_DIVX4: { |
1349 | 891 // DivX4Linux |
892 DEC_FRAME dec_frame; | |
893 // let's decode | |
894 dec_frame.length = in_size; | |
895 dec_frame.bitstream = start; | |
896 dec_frame.render_flag = drop_frame?0:1; | |
897 dec_frame.bmp=sh_video->our_out_buffer; | |
898 dec_frame.stride=sh_video->disp_w; | |
899 // printf("Decoding DivX4 frame\n"); | |
900 decore(0x123, (sh_video->format==mmioFOURCC('D','I','V','3'))?DEC_OPT_FRAME_311:DEC_OPT_FRAME, &dec_frame, NULL); | |
1360 | 901 if(!drop_frame) blit_frame=3; |
1349 | 902 break; |
903 } | |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
904 #endif |
1294 | 905 #ifdef USE_DIRECTSHOW |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
906 case VFM_DSHOW: { // W32/DirectShow |
3062 | 907 if(drop_frame<2) |
4460 | 908 { |
909 /* FIXME: WILL WORK ONLY FOR PACKED FOURCC. BUT WHAT ABOUT PLANAR? */ | |
910 vmem = 0; | |
911 if(use_dr && bda.dest.pitch.y == 16) | |
912 { | |
913 vmem = bda.dga_addr + bda.offsets[0] + bda.offset.y; | |
914 if(vo_doublebuffering && bda.num_frames>1) | |
915 { | |
916 if(double_buff_num) vmem = bda.dga_addr + bda.offsets[1] + bda.offset.y; | |
917 else vmem = bda.dga_addr + bda.offsets[0] + bda.offset.y; | |
918 double_buff_num = double_buff_num ? 0 : 1; | |
919 } | |
920 } | |
921 DS_VideoDecoder_DecodeInternal(ds_vdec, start, in_size, 0, drop_frame ? 0 : vmem ? vmem : sh_video->our_out_buffer); | |
922 if(vmem) painted = 1; | |
923 } | |
1362
11673118f37f
Fix segfault in DShow video decoder. Using directshow, the
jkeil
parents:
1360
diff
changeset
|
924 if(!drop_frame && sh_video->our_out_buffer) blit_frame=3; |
1294 | 925 break; |
926 } | |
927 #endif | |
928 #ifdef USE_LIBAVCODEC | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
929 case VFM_FFMPEG: { // libavcodec |
1294 | 930 int got_picture=0; |
1567 | 931 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"Calling ffmpeg...\n"); |
1294 | 932 if(drop_frame<2 && in_size>0){ |
933 int ret = avcodec_decode_video(&lavc_context, &lavc_picture, | |
934 &got_picture, start, in_size); | |
1489 | 935 if(verbose>1){ |
1462 | 936 unsigned char *x="???"; |
937 switch(lavc_context.pix_fmt){ | |
938 case PIX_FMT_YUV420P: x="YUV420P";break; | |
939 case PIX_FMT_YUV422: x="YUV422";break; | |
940 case PIX_FMT_RGB24: x="RGB24";break; | |
941 case PIX_FMT_BGR24: x="BGR24";break; | |
1465 | 942 #ifdef PIX_FMT_YUV422P |
1462 | 943 case PIX_FMT_YUV422P: x="YUV422P";break; |
944 case PIX_FMT_YUV444P: x="YUV444P";break; | |
1465 | 945 #endif |
1462 | 946 } |
1567 | 947 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"DONE -> got_picture=%d format=0x%X (%s) \n",got_picture, |
1462 | 948 lavc_context.pix_fmt,x); |
949 } | |
1567 | 950 if(ret<0) mp_msg(MSGT_DECVIDEO,MSGL_WARN, "Error while decoding frame!\n"); |
1360 | 951 if(!drop_frame && got_picture){ |
1454
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
952 // if(!drop_frame){ |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
953 if(planar){ |
2228 | 954 #ifdef FF_POSTPROCESS |
3745 | 955 #ifdef MBC |
2228 | 956 if(lavc_pp){ |
957 // postprocess | |
2291 | 958 int w=(sh_video->disp_w+15)&(~15); |
959 int h=(sh_video->disp_h+15)&(~15); | |
960 int xoff=0; //(w-sh_video->disp_w)/2; | |
961 int yoff=0; //(h-sh_video->disp_h)/2; | |
962 if(!sh_video->our_out_buffer){ | |
963 sh_video->our_out_buffer = (char*)memalign(64,w*h*3/2); | |
964 memset(sh_video->our_out_buffer,0,w*h*3/2); | |
965 } | |
4188 | 966 mpi->stride[0]=w; |
967 mpi->stride[1]=mpi->stride[2]=w/2; | |
968 mpi->planes[0]=sh_video->our_out_buffer+mpi->stride[0]*yoff+xoff; | |
969 mpi->planes[2]=sh_video->our_out_buffer+w*h+mpi->stride[2]*(yoff>>1)+(xoff>>1); | |
970 mpi->planes[1]=mpi->planes[2]+w*h/4; | |
2228 | 971 postprocess(lavc_picture.data,lavc_picture.linesize[0], |
4188 | 972 mpi->planes,mpi->stride[0], |
2228 | 973 sh_video->disp_w,sh_video->disp_h, |
974 &quant_store[0][0],MBC+1,lavc_pp); | |
975 } else | |
976 #endif | |
3745 | 977 #endif |
2228 | 978 { |
4188 | 979 //planes=lavc_picture.data; |
980 //stride=lavc_picture.linesize; | |
981 mpi->planes[0]=lavc_picture.data[0]; | |
982 mpi->planes[1]=lavc_picture.data[1]; | |
983 mpi->planes[2]=lavc_picture.data[2]; | |
984 mpi->stride[0]=lavc_picture.linesize[0]; | |
985 mpi->stride[1]=lavc_picture.linesize[1]; | |
986 mpi->stride[2]=lavc_picture.linesize[2]; | |
987 | |
2228 | 988 //stride[1]=stride[2]=0; |
989 //stride[0]/=2; | |
990 } | |
991 blit_frame=2; | |
1454
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
992 } else { |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
993 int y; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
994 // temporary hack - FIXME |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
995 if(!sh_video->our_out_buffer) |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
996 sh_video->our_out_buffer = (char*)memalign(64,sh_video->disp_w*sh_video->disp_h*2); |
1454
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
997 for(y=0;y<sh_video->disp_h;y++){ |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
998 unsigned char *s0=lavc_picture.data[0]+lavc_picture.linesize[0]*y; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
999 unsigned char *s1=lavc_picture.data[1]+lavc_picture.linesize[1]*y; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1000 unsigned char *s2=lavc_picture.data[2]+lavc_picture.linesize[2]*y; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1001 unsigned char *d=sh_video->our_out_buffer+y*2*sh_video->disp_w; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1002 int x; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1003 for(x=0;x<sh_video->disp_w/2;x++){ |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1004 d[4*x+0]=s0[2*x+0]; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1005 d[4*x+1]=s1[x]; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1006 d[4*x+2]=s0[2*x+1]; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1007 d[4*x+3]=s2[x]; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1008 } |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1009 } |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1010 blit_frame=3; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1011 } |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
1012 |
1360 | 1013 } |
1294 | 1014 } |
1015 break; | |
1016 } | |
1017 #endif | |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1496
diff
changeset
|
1018 #ifdef USE_WIN32DLL |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
1019 case VFM_VFWEX: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
1020 case VFM_VFW: |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1297
diff
changeset
|
1021 { |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
1022 int ret; |
1360 | 1023 if(!in_size) break; |
4516 | 1024 /* FIXME: WILL WORK ONLY FOR PACKED FOURCC. BUT WHAT ABOUT PLANAR? */ |
1025 vmem = 0; | |
1026 if(use_dr && bda.dest.pitch.y == 16) | |
1027 { | |
1028 vmem = bda.dga_addr + bda.offsets[0] + bda.offset.y; | |
1029 if(vo_doublebuffering && bda.num_frames>1) | |
1030 { | |
1031 if(double_buff_num) vmem = bda.dga_addr + bda.offsets[1] + bda.offset.y; | |
1032 else vmem = bda.dga_addr + bda.offsets[0] + bda.offset.y; | |
1033 double_buff_num = double_buff_num ? 0 : 1; | |
1034 } | |
1035 sh_video->our_out_buffer = vmem; | |
1036 } | |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
1037 if((ret=vfw_decode_video(sh_video,start,in_size,drop_frame,(sh_video->codec->driver==VFM_VFWEX) ))){ |
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
1038 mp_msg(MSGT_DECVIDEO,MSGL_WARN,"Error decompressing frame, err=%d\n",ret); |
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
1039 break; |
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
1040 } |
4516 | 1041 if(vmem) painted=1; |
1360 | 1042 if(!drop_frame) blit_frame=3; |
1294 | 1043 break; |
1044 } | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1297
diff
changeset
|
1045 #endif |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
1046 case VFM_MPEG: |
1873 | 1047 if(out_fmt==IMGFMT_MPEGPES){ |
1048 // hardware decoding: | |
1049 static vo_mpegpes_t packet; | |
1050 mpeg2_decode_data(video_out, start, start+in_size,3); // parse headers | |
1051 packet.data=start; | |
1052 packet.size=in_size-4; | |
1053 packet.timestamp=sh_video->timer*90000.0; | |
1054 packet.id=0x1E0; //+sh_video->ds->id; | |
4188 | 1055 mpi->planes[0]=(uint8_t*)(&packet); |
1873 | 1056 blit_frame=2; |
1057 } else { | |
1058 // software decoding: | |
2019
7de4eceac32f
mpeg2-interlaced patch by Ivan Kalvatchev <iive@yahoo.com>
arpi
parents:
2006
diff
changeset
|
1059 if( |
7de4eceac32f
mpeg2-interlaced patch by Ivan Kalvatchev <iive@yahoo.com>
arpi
parents:
2006
diff
changeset
|
1060 mpeg2_decode_data(video_out, start, start+in_size,drop_frame) > 0 // decode |
7de4eceac32f
mpeg2-interlaced patch by Ivan Kalvatchev <iive@yahoo.com>
arpi
parents:
2006
diff
changeset
|
1061 && (!drop_frame) |
7de4eceac32f
mpeg2-interlaced patch by Ivan Kalvatchev <iive@yahoo.com>
arpi
parents:
2006
diff
changeset
|
1062 ) blit_frame=1; |
1873 | 1063 } |
1294 | 1064 break; |
1488 | 1065 case VFM_RAW: |
2794 | 1066 // planes[0]=start; |
1067 // blit_frame=2; | |
1068 sh_video->our_out_buffer = start; | |
1069 blit_frame=3; | |
1488 | 1070 break; |
1948 | 1071 case VFM_RLE: |
1072 //void AVI_Decode_RLE8(char *image,char *delta,int tdsize, | |
1073 // unsigned int *map,int imagex,int imagey,unsigned char x11_bytes_pixel); | |
1074 AVI_Decode_RLE8(sh_video->our_out_buffer,start,in_size, | |
1075 (int*)(((char*)sh_video->bih)+40), | |
1076 sh_video->disp_w,sh_video->disp_h,((out_fmt&255)+7)/8); | |
1077 blit_frame=3; | |
1078 break; | |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1079 case VFM_MSVIDC: |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1080 if (sh_video->bih->biBitCount == 16) |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1081 AVI_Decode_Video1_16( |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1082 start, in_size, sh_video->our_out_buffer, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1083 sh_video->disp_w, sh_video->disp_h, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1084 ((out_fmt&255)+7)/8); |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1085 else |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1086 AVI_Decode_Video1_8( |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1087 start, in_size, sh_video->our_out_buffer, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1088 sh_video->disp_w, sh_video->disp_h, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1089 (char *)sh_video->bih+40, ((out_fmt&255)+7)/8); |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1090 blit_frame = 3; |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1091 break; |
3172 | 1092 case VFM_FLI: |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
1093 Decode_Fli( |
3172 | 1094 start, in_size, sh_video->our_out_buffer, |
1095 sh_video->disp_w, sh_video->disp_h, | |
1096 ((out_fmt&255)+7)/8); | |
1097 blit_frame = 3; | |
1098 break; | |
3804
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
1099 case VFM_NUV: |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
1100 decode_nuv( |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
1101 start, in_size, sh_video->our_out_buffer, |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
1102 sh_video->disp_w, sh_video->disp_h); |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
1103 blit_frame = 3; |
53ed66a4f0bf
NuppelVideo decoder added, based on Panagiotis Issaris' patch
alex
parents:
3745
diff
changeset
|
1104 break; |
3687
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
1105 case VFM_QTRLE: |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
1106 qt_decode_rle( |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
1107 start, in_size, sh_video->our_out_buffer, |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
1108 sh_video->disp_w, sh_video->disp_h, |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
1109 sh_video->bih->biBitCount, |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
1110 ((out_fmt&255)+7)/8); |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
1111 blit_frame = 3; |
7fb817c9060b
This commit adds initial support for Quicktime Animation (RLE) video. It
melanson
parents:
3646
diff
changeset
|
1112 break; |
4227 | 1113 case VFM_QTSMC: |
1114 qt_decode_smc( | |
1115 start, in_size, sh_video->our_out_buffer, | |
1116 sh_video->disp_w, sh_video->disp_h, | |
4275
818be6ba8758
initial implementation of SMC codec; it almost works, too!
melanson
parents:
4227
diff
changeset
|
1117 (unsigned char *)sh_video->bih+40, |
4227 | 1118 ((out_fmt&255)+7)/8); |
1119 blit_frame = 3; | |
1120 break; | |
4301
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
1121 case VFM_DUCKTM1: |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
1122 decode_duck_tm1( |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
1123 start, in_size, sh_video->our_out_buffer, |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
1124 sh_video->disp_w, sh_video->disp_h, |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
1125 ((out_fmt&255)+7)/8); |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
1126 blit_frame = 3; |
8f43b10f387f
added skeleton for Duck Truemotion v1 decoder (doesn't do anything yet)
melanson
parents:
4275
diff
changeset
|
1127 break; |
3969 | 1128 case VFM_CYUV: |
1129 decode_cyuv(start, in_size, sh_video->our_out_buffer, | |
1130 sh_video->disp_w, sh_video->disp_h, (out_fmt==IMGFMT_YUY2)?16:(out_fmt&255)); | |
1131 blit_frame = 3; | |
1132 break; | |
4486 | 1133 case VFM_ROQVIDEO: |
1134 roq_decode_video(start, in_size, sh_video->our_out_buffer, | |
1135 sh_video->disp_w, sh_video->disp_h, sh_video->context); | |
1136 blit_frame = 3; | |
1137 break; | |
1294 | 1138 } // switch |
1139 //------------------------ frame decoded. -------------------- | |
1140 | |
3160 | 1141 #ifdef ARCH_X86 |
1367 | 1142 // some codecs is broken, and doesn't restore MMX state :( |
1143 // it happens usually with broken/damaged files. | |
3144 | 1144 if(gCpuCaps.has3DNow){ |
1145 __asm __volatile ("femms\n\t":::"memory"); | |
1146 } | |
1147 else if(gCpuCaps.hasMMX){ | |
1148 __asm __volatile ("emms\n\t":::"memory"); | |
1149 } | |
3160 | 1150 #endif |
1367 | 1151 |
1360 | 1152 t2=GetTimer();t=t2-t;video_time_usage+=t*0.000001f; |
4460 | 1153 if(painted) return 1; |
1360 | 1154 switch(blit_frame){ |
1155 case 3: | |
1156 if(planar){ | |
4188 | 1157 mpi->stride[0]=sh_video->disp_w; |
1158 mpi->stride[1]=mpi->stride[2]=sh_video->disp_w/2; | |
1159 mpi->planes[0]=sh_video->our_out_buffer; | |
1160 mpi->planes[2]=mpi->planes[0]+sh_video->disp_w*sh_video->disp_h; | |
1161 mpi->planes[1]=mpi->planes[2]+sh_video->disp_w*sh_video->disp_h/4; | |
2716 | 1162 } else { |
4188 | 1163 mpi->planes[0]=sh_video->our_out_buffer; |
1164 mpi->stride[0]=sh_video->disp_w*mpi->bpp; | |
2716 | 1165 if(sh_video->bih && sh_video->bih->biSize==1064) |
4188 | 1166 mpi->planes[1]=&sh_video->bih[1]; // pointer to palette |
2716 | 1167 else |
4188 | 1168 mpi->planes[1]=NULL; |
2716 | 1169 } |
3073 | 1170 //#define VFM_RAW_POSTPROC |
1171 #ifdef VFM_RAW_POSTPROC | |
1172 if (sh_video->codec->driver == VFM_RAW) | |
1173 { | |
1174 mp_dbg(MSGT_DECVIDEO, MSGL_V, "Postprocessing raw %s!\n", | |
1175 vo_format_name(out_fmt)); | |
1176 switch(out_fmt) | |
1177 { | |
1178 case IMGFMT_YV12: | |
1179 postprocess(planes, stride[0], planes, stride[0], | |
1180 sh_video->disp_w, sh_video->disp_h, planes[0], | |
1181 0, /*0x20000*/divx_quality); | |
1182 break; | |
1183 // case IMGFMT_UYVY: | |
1184 // uyvytoyv12(start, planes[0], planes[1], planes[2], | |
1185 // sh_video->disp_w, sh_video->disp_h, stride[0], stride[1], | |
1186 // sh_video->disp_w*2); | |
1187 // postprocess(planes, stride[0], planes, stride[0], | |
1188 // sh_video->disp_w, sh_video->disp_h, planes[0], | |
1189 // 0, /*0x20000*/divx_quality); | |
1190 // break; | |
1191 default: | |
1192 mp_dbg(MSGT_DECVIDEO, MSGL_DBG2, "Unsuitable outformat (%s) for raw pp!\n", | |
1193 vo_format_name(out_fmt)); | |
1194 } | |
1195 } | |
1196 #endif | |
1360 | 1197 case 2: |
1422 | 1198 #ifdef USE_LIBVO2 |
1199 if(planar) | |
1200 vo2_draw_slice(video_out,planes,stride,sh_video->disp_w,sh_video->disp_h,0,0); | |
1201 else | |
1202 vo2_draw_frame(video_out,planes[0],sh_video->disp_w,sh_video->disp_w,sh_video->disp_h); | |
1203 #else | |
1360 | 1204 if(planar) |
4188 | 1205 video_out->draw_slice(mpi->planes,mpi->stride,sh_video->disp_w,sh_video->disp_h,0,0); |
1360 | 1206 else |
4188 | 1207 video_out->draw_frame(mpi->planes); |
1422 | 1208 #endif |
1360 | 1209 t2=GetTimer()-t2;vout_time_usage+=t2*0.000001f; |
1210 blit_frame=1; | |
1211 break; | |
1212 } | |
1213 | |
1294 | 1214 return blit_frame; |
1215 } | |
1375
dbcb5b5e1fae
file-format detection stuff moved out from mplayer.c to demuxer.c and dec_video.c
arpi
parents:
1367
diff
changeset
|
1216 |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
1217 |