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