Mercurial > mplayer.hg
annotate dec_video.c @ 3602:6a96727ea729
Just a hint
author | nick |
---|---|
date | Wed, 19 Dec 2001 07:40:28 +0000 |
parents | 8b7e5884cf34 |
children | fb9fd7e2dd35 |
rev | line source |
---|---|
2775 | 1 |
2 #include "config.h" | |
1294 | 3 |
4 #include <stdio.h> | |
2775 | 5 #ifdef HAVE_MALLOC_H |
6 #include <malloc.h> | |
7 #endif | |
1294 | 8 #include <stdlib.h> |
1430 | 9 #include <unistd.h> |
1294 | 10 |
1567 | 11 #include "mp_msg.h" |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
12 #include "help_mp.h" |
1294 | 13 |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1309
diff
changeset
|
14 #include "linux/timer.h" |
1496 | 15 #include "linux/shmem.h" |
1327
b12e1817bcc2
some cleanup - fixed warnings, removed old stuff, moved audio resync to dec_audio
arpi
parents:
1309
diff
changeset
|
16 |
2563 | 17 extern int verbose; // defined in mplayer.c |
18 | |
1294 | 19 #include "stream.h" |
20 #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
|
21 #include "parse_es.h" |
1294 | 22 |
23 #include "codec-cfg.h" | |
24 #include "stheader.h" | |
25 | |
1422 | 26 #ifdef USE_LIBVO2 |
27 #include "libvo2/libvo2.h" | |
28 #else | |
1294 | 29 #include "libvo/video_out.h" |
1422 | 30 #endif |
1294 | 31 |
2563 | 32 #include "dec_video.h" |
33 | |
34 // =================================================================== | |
35 | |
36 extern double video_time_usage; | |
37 extern double vout_time_usage; | |
38 | |
39 extern int frameratecode2framerate[16]; | |
40 | |
41 #include "dll_init.h" | |
42 | |
43 //#include <inttypes.h> | |
44 //#include "libvo/img_format.h" | |
45 | |
1294 | 46 #include "libmpeg2/mpeg2.h" |
47 #include "libmpeg2/mpeg2_internal.h" | |
48 | |
2184 | 49 #include "postproc/postprocess.h" |
50 | |
3144 | 51 #include "cpudetect.h" |
52 | |
1294 | 53 extern picture_t *picture; // exported from libmpeg2/decode.c |
54 | |
2563 | 55 int divx_quality=0; |
1294 | 56 |
57 #ifdef USE_DIRECTSHOW | |
3449 | 58 #include "loader/DirectShow/DS_VideoDec.h" |
3442 | 59 static void* ds_vdec=NULL; |
3062 | 60 #endif |
1294 | 61 |
62 #ifdef USE_LIBAVCODEC | |
2496 | 63 #ifdef USE_LIBAVCODEC_SO |
64 #include <libffmpeg/avcodec.h> | |
65 #else | |
1294 | 66 #include "libavcodec/avcodec.h" |
2496 | 67 #endif |
1927 | 68 static AVCodec *lavc_codec=NULL; |
69 static AVCodecContext lavc_context; | |
70 static AVPicture lavc_picture; | |
71 int avcodec_inited=0; | |
1294 | 72 #endif |
2228 | 73 #ifdef FF_POSTPROCESS |
74 unsigned int lavc_pp=0; | |
75 #endif | |
1294 | 76 |
1349 | 77 #ifndef NEW_DECORE |
1294 | 78 #include "opendivx/decore.h" |
1349 | 79 #else |
80 #include <decore.h> | |
81 #endif | |
1294 | 82 |
2378 | 83 #ifdef USE_XANIM |
84 #include "xacodec.h" | |
85 #endif | |
86 | |
2938
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
87 #ifdef USE_TV |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
88 #include "libmpdemux/tv.h" |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
89 |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
90 extern int tv_param_on; |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
91 extern tvi_handle_t *tv_handler; |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
92 #endif |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
93 |
1948 | 94 void AVI_Decode_RLE8(char *image,char *delta,int tdsize, |
95 unsigned int *map,int imagex,int imagey,unsigned char x11_bytes_pixel); | |
96 | |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
97 void AVI_Decode_Video1_16( |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
98 char *encoded, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
99 int encoded_size, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
100 char *decoded, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
101 int width, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
102 int height, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
103 int bytes_per_pixel); |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
104 |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
105 void AVI_Decode_Video1_8( |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
106 char *encoded, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
107 int encoded_size, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
108 char *decoded, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
109 int width, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
110 int height, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
111 unsigned char *palette_map, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
112 int bytes_per_pixel); |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
113 |
3172 | 114 void AVI_Decode_Fli( |
115 unsigned char *encoded, | |
116 int encoded_size, | |
117 unsigned char *decoded, | |
118 int width, | |
119 int height, | |
120 int bytes_per_pixel); | |
121 | |
122 | |
1294 | 123 //**************************************************************************// |
124 // The OpenDivX stuff: | |
125 //**************************************************************************// | |
126 | |
127 #ifndef NEW_DECORE | |
128 | |
129 static unsigned char *opendivx_src[3]; | |
130 static int opendivx_stride[3]; | |
131 | |
132 // callback, the opendivx decoder calls this for each frame: | |
133 void convert_linux(unsigned char *puc_y, int stride_y, | |
134 unsigned char *puc_u, unsigned char *puc_v, int stride_uv, | |
135 unsigned char *bmp, int width_y, int height_y){ | |
136 | |
137 // printf("convert_yuv called %dx%d stride: %d,%d\n",width_y,height_y,stride_y,stride_uv); | |
138 | |
139 opendivx_src[0]=puc_y; | |
140 opendivx_src[1]=puc_u; | |
141 opendivx_src[2]=puc_v; | |
142 | |
143 opendivx_stride[0]=stride_y; | |
144 opendivx_stride[1]=stride_uv; | |
145 opendivx_stride[2]=stride_uv; | |
146 } | |
147 #endif | |
148 | |
1429 | 149 int get_video_quality_max(sh_video_t *sh_video){ |
150 switch(sh_video->codec->driver){ | |
2087 | 151 #ifdef USE_WIN32DLL |
152 case VFM_VFW: | |
153 case VFM_VFWEX: | |
2184 | 154 return 9; // for Divx.dll (divx4) |
2087 | 155 #endif |
1429 | 156 #ifdef USE_DIRECTSHOW |
157 case VFM_DSHOW: | |
158 return 4; | |
159 #endif | |
160 #ifdef MPEG12_POSTPROC | |
161 case VFM_MPEG: | |
2184 | 162 return GET_PP_QUALITY_MAX; |
1429 | 163 #endif |
2228 | 164 #ifdef FF_POSTPROCESS |
165 case VFM_FFMPEG: | |
166 return GET_PP_QUALITY_MAX; | |
167 #endif | |
1429 | 168 case VFM_DIVX4: |
169 case VFM_ODIVX: | |
2184 | 170 #ifdef NEW_DECORE |
171 return 9; // for divx4linux | |
172 #else | |
173 return GET_PP_QUALITY_MAX; // for opendivx | |
174 #endif | |
1429 | 175 } |
176 return 0; | |
177 } | |
178 | |
179 void set_video_quality(sh_video_t *sh_video,int quality){ | |
180 switch(sh_video->codec->driver){ | |
2087 | 181 #ifdef USE_WIN32DLL |
182 case VFM_VFW: | |
183 case VFM_VFWEX: | |
184 vfw_set_postproc(sh_video,10*quality); | |
185 break; | |
186 #endif | |
1429 | 187 #ifdef USE_DIRECTSHOW |
188 case VFM_DSHOW: { | |
189 if(quality<0 || quality>4) quality=4; | |
3062 | 190 DS_VideoDecoder_SetValue(ds_vdec,"Quality",quality); |
1429 | 191 } |
192 break; | |
193 #endif | |
194 #ifdef MPEG12_POSTPROC | |
195 case VFM_MPEG: { | |
2184 | 196 if(quality<0 || quality>GET_PP_QUALITY_MAX) quality=GET_PP_QUALITY_MAX; |
197 picture->pp_options=getPpModeForQuality(quality); | |
1429 | 198 } |
199 break; | |
200 #endif | |
2228 | 201 #ifdef FF_POSTPROCESS |
202 case VFM_FFMPEG: | |
203 if(quality<0 || quality>GET_PP_QUALITY_MAX) quality=GET_PP_QUALITY_MAX; | |
204 lavc_pp=getPpModeForQuality(quality); | |
205 break; | |
206 #endif | |
1429 | 207 case VFM_DIVX4: |
208 case VFM_ODIVX: { | |
209 DEC_SET dec_set; | |
2184 | 210 #ifdef NEW_DECORE |
211 if(quality<0 || quality>9) quality=9; | |
212 dec_set.postproc_level=quality*10; | |
213 #else | |
214 if(quality<0 || quality>GET_PP_QUALITY_MAX) quality=GET_PP_QUALITY_MAX; | |
215 dec_set.postproc_level=getPpModeForQuality(quality); | |
216 #endif | |
1429 | 217 decore(0x123,DEC_OPT_SETPP,&dec_set,NULL); |
218 } | |
219 break; | |
220 } | |
221 } | |
222 | |
223 int set_video_colors(sh_video_t *sh_video,char *item,int value){ | |
1431 | 224 #ifdef USE_DIRECTSHOW |
2295 | 225 if(sh_video->codec->driver==VFM_DSHOW){ |
3062 | 226 DS_VideoDecoder_SetValue(ds_vdec,item,value); |
1429 | 227 return 1; |
228 } | |
1431 | 229 #endif |
2938
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
230 |
2295 | 231 #ifdef NEW_DECORE |
232 #ifdef DECORE_VERSION | |
233 #if DECORE_VERSION >= 20011010 | |
234 if(sh_video->codec->driver==VFM_DIVX4){ | |
235 int option; | |
236 if(!strcmp(item,"Brightness")) option=DEC_GAMMA_BRIGHTNESS; | |
237 else if(!strcmp(item, "Contrast")) option=DEC_GAMMA_CONTRAST; | |
238 else if(!strcmp(item,"Saturation")) option=DEC_GAMMA_SATURATION; | |
239 else return 0; | |
240 value = (value * 256) / 100 - 128; | |
241 decore(0x123, DEC_OPT_GAMMA, (void *)option, (void *) value); | |
242 return 1; | |
243 } | |
244 #endif | |
245 #endif | |
246 #endif | |
2938
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
247 |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
248 #ifdef USE_TV |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
249 |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
250 if (tv_param_on == 1) |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
251 { |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
252 if (!strcmp(item, "Brightness")) |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
253 { |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
254 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
|
255 return(1); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
256 } |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
257 if (!strcmp(item, "Hue")) |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
258 { |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
259 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
|
260 return(1); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
261 } |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
262 if (!strcmp(item, "Saturation")) |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
263 { |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
264 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
|
265 return(1); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
266 } |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
267 if (!strcmp(item, "Contrast")) |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
268 { |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
269 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
|
270 return(1); |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
271 } |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
272 } |
757c3ab1a45a
added support for setting color values on tv interface
alex
parents:
2827
diff
changeset
|
273 #endif |
1429 | 274 return 0; |
275 } | |
1294 | 276 |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
277 void uninit_video(sh_video_t *sh_video){ |
1654 | 278 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
|
279 mp_msg(MSGT_DECVIDEO,MSGL_V,"uninit video: %d \n",sh_video->codec->driver); |
1654 | 280 switch(sh_video->codec->driver){ |
1666 | 281 #ifdef USE_LIBAVCODEC |
1654 | 282 case VFM_FFMPEG: |
283 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
|
284 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantCloseCodec); |
1654 | 285 break; |
1666 | 286 #endif |
1669 | 287 #ifdef USE_DIRECTSHOW |
1664 | 288 case VFM_DSHOW: // Win32/DirectShow |
3062 | 289 if(ds_vdec){ DS_VideoDecoder_Destroy(ds_vdec); ds_vdec=NULL; } |
1664 | 290 break; |
1666 | 291 #endif |
1654 | 292 case VFM_MPEG: |
293 mpeg2_free_image_buffers (picture); | |
294 break; | |
2563 | 295 #ifdef USE_XANIM |
296 case VFM_XANIM: | |
297 xacodec_exit(); | |
298 break; | |
299 #endif | |
1654 | 300 } |
301 if(sh_video->our_out_buffer){ | |
302 free(sh_video->our_out_buffer); | |
303 sh_video->our_out_buffer=NULL; | |
304 } | |
305 sh_video->inited=0; | |
306 } | |
307 | |
1294 | 308 int init_video(sh_video_t *sh_video){ |
309 unsigned int out_fmt=sh_video->codec->outfmt[sh_video->outfmtidx]; | |
310 | |
1454
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
311 sh_video->our_out_buffer=NULL; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
312 |
1294 | 313 switch(sh_video->codec->driver){ |
2659 | 314 case VFM_XANIM: { |
2378 | 315 #ifdef USE_XANIM |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
316 int ret=xacodec_init_video(sh_video,out_fmt); |
2378 | 317 if(!ret) return 0; |
2659 | 318 #else |
2660 | 319 // mp_msg(MSGT_DECVIDEO, MSGL_ERR, MSGTR_NoXAnimSupport); |
320 mp_msg(MSGT_DECVIDEO, MSGL_ERR, "MPlayer was compiled WIHTOUT XAnim support!\n"); | |
2659 | 321 return 0; |
322 #endif | |
2378 | 323 break; |
324 } | |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1496
diff
changeset
|
325 #ifdef USE_WIN32DLL |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
326 case VFM_VFW: { |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
327 if(!init_vfw_video_codec(sh_video,0)) { |
1294 | 328 return 0; |
329 } | |
1567 | 330 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: Win32 video codec init OK!\n"); |
1294 | 331 break; |
332 } | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
333 case VFM_VFWEX: { |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
334 if(!init_vfw_video_codec(sh_video,1)) { |
1297 | 335 return 0; |
336 } | |
1567 | 337 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: Win32Ex video codec init OK!\n"); |
1297 | 338 break; |
339 } | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
340 case VFM_DSHOW: { // Win32/DirectShow |
1294 | 341 #ifndef USE_DIRECTSHOW |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
342 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_NoDShowSupport); |
1294 | 343 return 0; |
344 #else | |
1547
4b0046db8e64
alloc frame buffer for directshow codec - requires for avifile sync
arpi
parents:
1517
diff
changeset
|
345 int bpp; |
3448 | 346 if(!(ds_vdec=DS_VideoDecoder_Open(sh_video->codec->dll,&sh_video->codec->guid, sh_video->bih, 0, 0))){ |
1294 | 347 // 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
|
348 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingDLLcodec,sh_video->codec->dll); |
1567 | 349 mp_msg(MSGT_DECVIDEO,MSGL_HINT,"Maybe you forget to upgrade your win32 codecs?? It's time to download the new\n"); |
350 mp_msg(MSGT_DECVIDEO,MSGL_HINT,"package from: ftp://mplayerhq.hu/MPlayer/releases/w32codec.zip !\n"); | |
351 // mp_msg(MSGT_DECVIDEO,MSGL_HINT,"Or you should disable DShow support: make distclean;make -f Makefile.No-DS\n"); | |
1294 | 352 return 0; |
353 } | |
354 | |
355 switch(out_fmt){ | |
356 case IMGFMT_YUY2: | |
357 case IMGFMT_UYVY: | |
1547
4b0046db8e64
alloc frame buffer for directshow codec - requires for avifile sync
arpi
parents:
1517
diff
changeset
|
358 bpp=16; |
3062 | 359 DS_VideoDecoder_SetDestFmt(ds_vdec,16,out_fmt);break; // packed YUV |
1294 | 360 case IMGFMT_YV12: |
361 case IMGFMT_I420: | |
362 case IMGFMT_IYUV: | |
1547
4b0046db8e64
alloc frame buffer for directshow codec - requires for avifile sync
arpi
parents:
1517
diff
changeset
|
363 bpp=12; |
3062 | 364 DS_VideoDecoder_SetDestFmt(ds_vdec,12,out_fmt);break; // planar YUV |
1294 | 365 default: |
1547
4b0046db8e64
alloc frame buffer for directshow codec - requires for avifile sync
arpi
parents:
1517
diff
changeset
|
366 bpp=((out_fmt&255)+7)&(~7); |
3062 | 367 DS_VideoDecoder_SetDestFmt(ds_vdec,out_fmt&255,0); // RGB/BGR |
1294 | 368 } |
369 | |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
370 sh_video->our_out_buffer = (char*)memalign(64,sh_video->disp_w*sh_video->disp_h*bpp/8); // FIXME!!! |
1547
4b0046db8e64
alloc frame buffer for directshow codec - requires for avifile sync
arpi
parents:
1517
diff
changeset
|
371 |
3062 | 372 DS_SetAttr_DivX("Quality",divx_quality); |
1294 | 373 |
3062 | 374 DS_VideoDecoder_StartInternal(ds_vdec); |
1294 | 375 // printf("DivX setting result = %d\n", DS_SetAttr_DivX("Quality",divx_quality) ); |
376 // printf("DivX setting result = %d\n", DS_SetValue_DivX("Brightness",60) ); | |
377 | |
1567 | 378 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: Win32/DShow video codec init OK!\n"); |
1294 | 379 break; |
380 #endif | |
381 } | |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1496
diff
changeset
|
382 #else /* !USE_WIN32DLL */ |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
383 case VFM_VFW: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
384 case VFM_DSHOW: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
385 case VFM_VFWEX: |
2006 | 386 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
|
387 return 0; |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1496
diff
changeset
|
388 #endif /* !USE_WIN32DLL */ |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
389 case VFM_ODIVX: { // OpenDivX |
1567 | 390 mp_msg(MSGT_DECVIDEO,MSGL_V,"OpenDivX video codec\n"); |
1294 | 391 { DEC_PARAM dec_param; |
392 DEC_SET dec_set; | |
1349 | 393 memset(&dec_param,0,sizeof(dec_param)); |
1294 | 394 #ifdef NEW_DECORE |
395 dec_param.output_format=DEC_USER; | |
396 #else | |
397 dec_param.color_depth = 32; | |
398 #endif | |
399 dec_param.x_dim = sh_video->bih->biWidth; | |
400 dec_param.y_dim = sh_video->bih->biHeight; | |
401 decore(0x123, DEC_OPT_INIT, &dec_param, NULL); | |
402 dec_set.postproc_level = divx_quality; | |
403 decore(0x123, DEC_OPT_SETPP, &dec_set, NULL); | |
1349 | 404 } |
1567 | 405 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: OpenDivX video codec init OK!\n"); |
1349 | 406 break; |
407 } | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
408 case VFM_DIVX4: { // DivX4Linux |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
409 #ifndef NEW_DECORE |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
410 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_NoDivx4Support); |
1631 | 411 return 0; |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
412 #else |
1567 | 413 mp_msg(MSGT_DECVIDEO,MSGL_V,"DivX4Linux video codec\n"); |
1349 | 414 { DEC_PARAM dec_param; |
415 DEC_SET dec_set; | |
416 int bits=16; | |
417 memset(&dec_param,0,sizeof(dec_param)); | |
418 switch(out_fmt){ | |
419 case IMGFMT_YV12: dec_param.output_format=DEC_YV12;bits=12;break; | |
420 case IMGFMT_YUY2: dec_param.output_format=DEC_YUY2;break; | |
421 case IMGFMT_UYVY: dec_param.output_format=DEC_UYVY;break; | |
422 case IMGFMT_I420: dec_param.output_format=DEC_420;bits=12;break; | |
423 case IMGFMT_BGR15: dec_param.output_format=DEC_RGB555_INV;break; | |
424 case IMGFMT_BGR16: dec_param.output_format=DEC_RGB565_INV;break; | |
425 case IMGFMT_BGR24: dec_param.output_format=DEC_RGB24_INV;bits=24;break; | |
426 case IMGFMT_BGR32: dec_param.output_format=DEC_RGB32_INV;bits=32;break; | |
427 default: | |
1567 | 428 mp_msg(MSGT_DECVIDEO,MSGL_ERR,"Unsupported out_fmt: 0x%X\n",out_fmt); |
1349 | 429 return 0; |
430 } | |
431 dec_param.x_dim = sh_video->bih->biWidth; | |
432 dec_param.y_dim = sh_video->bih->biHeight; | |
433 decore(0x123, DEC_OPT_INIT, &dec_param, NULL); | |
434 dec_set.postproc_level = divx_quality; | |
435 decore(0x123, DEC_OPT_SETPP, &dec_set, NULL); | |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
436 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
|
437 // sh_video->our_out_buffer = shmem_alloc(dec_param.x_dim*dec_param.y_dim*5); |
1294 | 438 } |
1567 | 439 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: OpenDivX video codec init OK!\n"); |
1294 | 440 break; |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
441 #endif |
1294 | 442 } |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
443 case VFM_FFMPEG: { // FFmpeg's libavcodec |
1294 | 444 #ifndef USE_LIBAVCODEC |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
445 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_NoLAVCsupport); |
1631 | 446 return 0; |
1294 | 447 #else |
1567 | 448 mp_msg(MSGT_DECVIDEO,MSGL_V,"FFmpeg's libavcodec video codec\n"); |
1654 | 449 if(!avcodec_inited){ |
450 avcodec_init(); | |
451 avcodec_register_all(); | |
452 avcodec_inited=1; | |
453 } | |
1294 | 454 lavc_codec = (AVCodec *)avcodec_find_decoder_by_name(sh_video->codec->dll); |
455 if(!lavc_codec){ | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
456 mp_msg(MSGT_DECVIDEO,MSGL_ERR,MSGTR_MissingLAVCcodec,sh_video->codec->dll); |
1631 | 457 return 0; |
1294 | 458 } |
459 memset(&lavc_context, 0, sizeof(lavc_context)); | |
1462 | 460 // sh_video->disp_h/=2; // !! |
1294 | 461 lavc_context.width=sh_video->disp_w; |
462 lavc_context.height=sh_video->disp_h; | |
1567 | 463 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"libavcodec.size: %d x %d\n",lavc_context.width,lavc_context.height); |
1294 | 464 /* open it */ |
465 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
|
466 mp_msg(MSGT_DECVIDEO,MSGL_ERR, MSGTR_CantOpenCodec); |
1631 | 467 return 0; |
1294 | 468 } |
2228 | 469 #ifdef FF_POSTPROCESS |
470 lavc_pp=divx_quality; | |
471 #endif | |
1567 | 472 mp_msg(MSGT_DECVIDEO,MSGL_V,"INFO: libavcodec init OK!\n"); |
1294 | 473 break; |
474 #endif | |
475 } | |
476 | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
477 case VFM_MPEG: { |
1294 | 478 // init libmpeg2: |
2567 | 479 mpeg2_init(); |
1294 | 480 #ifdef MPEG12_POSTPROC |
481 picture->pp_options=divx_quality; | |
482 #else | |
1973
5216f108cb4f
all error/warn/info messages moved to help_mp-en.h for translation
arpi
parents:
1949
diff
changeset
|
483 if(divx_quality) mp_msg(MSGT_DECVIDEO,MSGL_HINT,MSGTR_MpegPPhint); |
1294 | 484 #endif |
2567 | 485 // send seq header to the decoder: |
486 mpeg2_decode_data(NULL,videobuffer,videobuffer+videobuf_len,0); | |
1294 | 487 mpeg2_allocate_image_buffers (picture); |
488 break; | |
489 } | |
1488 | 490 case VFM_RAW: { |
3397
39abf443aac4
vfm_raw hack: set outfmt if format != 0x0 (for tv input)
alex
parents:
3303
diff
changeset
|
491 if (sh_video->format != 0x0) |
39abf443aac4
vfm_raw hack: set outfmt if format != 0x0 (for tv input)
alex
parents:
3303
diff
changeset
|
492 /* set out_fmt */ |
39abf443aac4
vfm_raw hack: set outfmt if format != 0x0 (for tv input)
alex
parents:
3303
diff
changeset
|
493 sh_video->codec->outfmt[sh_video->outfmtidx] = sh_video->format; |
1488 | 494 break; |
495 } | |
1948 | 496 case VFM_RLE: { |
497 int bpp=((out_fmt&255)+7)/8; // RGB only | |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
498 sh_video->our_out_buffer = (char*)memalign(64,sh_video->disp_w*sh_video->disp_h*bpp); // FIXME!!! |
1949 | 499 if(bpp==2){ // 15 or 16 bpp ==> palette conversion! |
500 unsigned int* pal=(unsigned int*)(((char*)sh_video->bih)+40); | |
3303 | 501 int cols=(sh_video->bih->biSize-40)/4; |
502 //int cols=1<<(sh_video->bih->biBitCount); | |
1949 | 503 int i; |
504 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
|
505 mp_msg(MSGT_DECVIDEO,MSGL_V,"RLE: converting palette for %d colors.\n",cols); |
1949 | 506 for(i=0;i<cols;i++){ |
507 unsigned int c=pal[i]; | |
508 unsigned int b=c&255; | |
509 unsigned int g=(c>>8)&255; | |
510 unsigned int r=(c>>16)&255; | |
511 if((out_fmt&255)==15) | |
512 pal[i]=((r>>3)<<10)|((g>>3)<<5)|((b>>3)); | |
513 else | |
514 pal[i]=((r>>3)<<11)|((g>>2)<<5)|((b>>3)); | |
515 } | |
516 } | |
1948 | 517 break; |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
518 case VFM_MSVIDC: { |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
519 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
|
520 sh_video->our_out_buffer = |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
521 (char*)memalign(64, sh_video->disp_w*sh_video->disp_h*bpp); // FIXME!!! |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
522 } |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
523 break; |
3172 | 524 case VFM_FLI: { |
525 int bpp=((out_fmt&255)+7)/8; // RGB only | |
526 sh_video->our_out_buffer = | |
527 (char*)memalign(64, sh_video->disp_w*sh_video->disp_h*bpp); // FIXME!!! | |
528 } | |
529 break; | |
1948 | 530 } |
1294 | 531 } |
1654 | 532 sh_video->inited=1; |
1294 | 533 return 1; |
534 } | |
535 | |
1422 | 536 #ifdef USE_LIBVO2 |
537 int decode_video(vo2_handle_t *video_out,sh_video_t *sh_video,unsigned char *start,int in_size,int drop_frame){ | |
538 #else | |
1294 | 539 int decode_video(vo_functions_t *video_out,sh_video_t *sh_video,unsigned char *start,int in_size,int drop_frame){ |
1422 | 540 #endif |
1294 | 541 unsigned int out_fmt=sh_video->codec->outfmt[sh_video->outfmtidx]; |
1360 | 542 int planar=(out_fmt==IMGFMT_YV12||out_fmt==IMGFMT_IYUV||out_fmt==IMGFMT_I420); |
1294 | 543 int blit_frame=0; |
544 | |
1360 | 545 uint8_t* planes_[3]; |
546 uint8_t** planes=planes_; | |
547 int stride_[3]; | |
548 int* stride=stride_; | |
549 | |
550 unsigned int t=GetTimer(); | |
551 unsigned int t2; | |
552 | |
2794 | 553 //printf("decode_frame(start: %p, size: %d, w: %d, h: %d)\n", |
554 // start, in_size, sh_video->disp_w, sh_video->disp_h); | |
555 | |
1294 | 556 //-------------------- Decode a frame: ----------------------- |
557 switch(sh_video->codec->driver){ | |
2378 | 558 #ifdef USE_XANIM |
559 case VFM_XANIM: { | |
2384 | 560 xacodec_image_t* image=xacodec_decode_frame(start,in_size,drop_frame?1:0); |
561 if(image){ | |
562 blit_frame=2; | |
563 planes=image->planes; | |
564 stride=image->stride; | |
565 } | |
2378 | 566 break; |
567 } | |
568 #endif | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
569 case VFM_ODIVX: { |
1294 | 570 // OpenDivX |
571 DEC_FRAME dec_frame; | |
572 #ifdef NEW_DECORE | |
573 DEC_PICTURE dec_pic; | |
574 #endif | |
575 // let's decode | |
576 dec_frame.length = in_size; | |
577 dec_frame.bitstream = start; | |
1349 | 578 dec_frame.render_flag = drop_frame?0:1; |
579 | |
1294 | 580 #ifdef NEW_DECORE |
581 dec_frame.bmp=&dec_pic; | |
582 dec_pic.y=dec_pic.u=dec_pic.v=NULL; | |
1349 | 583 decore(0x123, (sh_video->format==mmioFOURCC('D','I','V','3'))?DEC_OPT_FRAME_311:DEC_OPT_FRAME, &dec_frame, NULL); |
584 #else | |
1360 | 585 opendivx_src[0]=NULL; |
1349 | 586 decore(0x123, 0, &dec_frame, NULL); |
1294 | 587 #endif |
1360 | 588 |
589 if(!drop_frame) | |
1294 | 590 |
1349 | 591 // let's display |
1294 | 592 #ifdef NEW_DECORE |
593 if(dec_pic.y){ | |
1360 | 594 planes[0]=dec_pic.y; |
595 planes[1]=dec_pic.u; | |
596 planes[2]=dec_pic.v; | |
1294 | 597 stride[0]=dec_pic.stride_y; |
598 stride[1]=stride[2]=dec_pic.stride_uv; | |
1360 | 599 blit_frame=2; |
1294 | 600 } |
601 #else | |
602 if(opendivx_src[0]){ | |
1360 | 603 planes=opendivx_src; stride=opendivx_stride; |
604 blit_frame=2; | |
1294 | 605 } |
606 #endif | |
607 | |
608 break; | |
609 } | |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
610 #ifdef NEW_DECORE |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
611 case VFM_DIVX4: { |
1349 | 612 // DivX4Linux |
613 DEC_FRAME dec_frame; | |
614 // let's decode | |
615 dec_frame.length = in_size; | |
616 dec_frame.bitstream = start; | |
617 dec_frame.render_flag = drop_frame?0:1; | |
618 dec_frame.bmp=sh_video->our_out_buffer; | |
619 dec_frame.stride=sh_video->disp_w; | |
620 // printf("Decoding DivX4 frame\n"); | |
621 decore(0x123, (sh_video->format==mmioFOURCC('D','I','V','3'))?DEC_OPT_FRAME_311:DEC_OPT_FRAME, &dec_frame, NULL); | |
1360 | 622 if(!drop_frame) blit_frame=3; |
1349 | 623 break; |
624 } | |
1352
5ac130627602
fixed shmem size, and now compiles without divx4linux too :)
arpi
parents:
1349
diff
changeset
|
625 #endif |
1294 | 626 #ifdef USE_DIRECTSHOW |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
627 case VFM_DSHOW: { // W32/DirectShow |
3062 | 628 if(drop_frame<2) |
629 DS_VideoDecoder_DecodeInternal(ds_vdec, start, in_size, 0, drop_frame ? 0 : sh_video->our_out_buffer); | |
1362
11673118f37f
Fix segfault in DShow video decoder. Using directshow, the
jkeil
parents:
1360
diff
changeset
|
630 if(!drop_frame && sh_video->our_out_buffer) blit_frame=3; |
1294 | 631 break; |
632 } | |
633 #endif | |
634 #ifdef USE_LIBAVCODEC | |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
635 case VFM_FFMPEG: { // libavcodec |
1294 | 636 int got_picture=0; |
1567 | 637 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"Calling ffmpeg...\n"); |
1294 | 638 if(drop_frame<2 && in_size>0){ |
639 int ret = avcodec_decode_video(&lavc_context, &lavc_picture, | |
640 &got_picture, start, in_size); | |
1489 | 641 if(verbose>1){ |
1462 | 642 unsigned char *x="???"; |
643 switch(lavc_context.pix_fmt){ | |
644 case PIX_FMT_YUV420P: x="YUV420P";break; | |
645 case PIX_FMT_YUV422: x="YUV422";break; | |
646 case PIX_FMT_RGB24: x="RGB24";break; | |
647 case PIX_FMT_BGR24: x="BGR24";break; | |
1465 | 648 #ifdef PIX_FMT_YUV422P |
1462 | 649 case PIX_FMT_YUV422P: x="YUV422P";break; |
650 case PIX_FMT_YUV444P: x="YUV444P";break; | |
1465 | 651 #endif |
1462 | 652 } |
1567 | 653 mp_dbg(MSGT_DECVIDEO,MSGL_DBG2,"DONE -> got_picture=%d format=0x%X (%s) \n",got_picture, |
1462 | 654 lavc_context.pix_fmt,x); |
655 } | |
1567 | 656 if(ret<0) mp_msg(MSGT_DECVIDEO,MSGL_WARN, "Error while decoding frame!\n"); |
1360 | 657 if(!drop_frame && got_picture){ |
1454
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
658 // if(!drop_frame){ |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
659 if(planar){ |
2228 | 660 #ifdef FF_POSTPROCESS |
661 if(lavc_pp){ | |
662 // postprocess | |
2291 | 663 int w=(sh_video->disp_w+15)&(~15); |
664 int h=(sh_video->disp_h+15)&(~15); | |
665 int xoff=0; //(w-sh_video->disp_w)/2; | |
666 int yoff=0; //(h-sh_video->disp_h)/2; | |
667 if(!sh_video->our_out_buffer){ | |
668 sh_video->our_out_buffer = (char*)memalign(64,w*h*3/2); | |
669 memset(sh_video->our_out_buffer,0,w*h*3/2); | |
670 } | |
671 stride[0]=w; | |
672 stride[1]=stride[2]=w/2; | |
673 planes[0]=sh_video->our_out_buffer+stride[0]*yoff+xoff; | |
674 planes[2]=sh_video->our_out_buffer+w*h+stride[2]*(yoff>>1)+(xoff>>1); | |
675 planes[1]=planes[2]+w*h/4; | |
2228 | 676 postprocess(lavc_picture.data,lavc_picture.linesize[0], |
2291 | 677 planes,stride[0], |
2228 | 678 sh_video->disp_w,sh_video->disp_h, |
679 &quant_store[0][0],MBC+1,lavc_pp); | |
680 } else | |
681 #endif | |
682 { | |
683 planes=lavc_picture.data; | |
684 stride=lavc_picture.linesize; | |
685 //stride[1]=stride[2]=0; | |
686 //stride[0]/=2; | |
687 } | |
688 blit_frame=2; | |
1454
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
689 } else { |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
690 int y; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
691 // temporary hack - FIXME |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
692 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
|
693 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
|
694 for(y=0;y<sh_video->disp_h;y++){ |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
695 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
|
696 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
|
697 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
|
698 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
|
699 int x; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
700 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
|
701 d[4*x+0]=s0[2*x+0]; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
702 d[4*x+1]=s1[x]; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
703 d[4*x+2]=s0[2*x+1]; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
704 d[4*x+3]=s2[x]; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
705 } |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
706 } |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
707 blit_frame=3; |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
708 } |
3e5b5be0b61d
temporary hack: YUV422P -> YUY2 converter (for ffmpeg MJPEG testing)
arpi
parents:
1431
diff
changeset
|
709 |
1360 | 710 } |
1294 | 711 } |
712 break; | |
713 } | |
714 #endif | |
1517
0e9c29538a86
Use USE_WIN32DLL define instead of ARCH_X86 to decide whether or not to compile
jkeil
parents:
1496
diff
changeset
|
715 #ifdef USE_WIN32DLL |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
716 case VFM_VFWEX: |
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
717 case VFM_VFW: |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1297
diff
changeset
|
718 { |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
719 int ret; |
1360 | 720 if(!in_size) break; |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
721 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
|
722 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
|
723 break; |
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
724 } |
1360 | 725 if(!drop_frame) blit_frame=3; |
1294 | 726 break; |
727 } | |
1309
598e3047ce13
Add some preliminary support for non-x86 architectures to mplayer
jkeil
parents:
1297
diff
changeset
|
728 #endif |
1410
eda16e490ae7
using AFM_/VFM_ macros instead of hardcoded constants (idea by al3x)
arpi
parents:
1401
diff
changeset
|
729 case VFM_MPEG: |
1873 | 730 if(out_fmt==IMGFMT_MPEGPES){ |
731 // hardware decoding: | |
732 static vo_mpegpes_t packet; | |
733 mpeg2_decode_data(video_out, start, start+in_size,3); // parse headers | |
734 packet.data=start; | |
735 packet.size=in_size-4; | |
736 packet.timestamp=sh_video->timer*90000.0; | |
737 packet.id=0x1E0; //+sh_video->ds->id; | |
2049
df41903fd7d7
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
arpi
parents:
2044
diff
changeset
|
738 planes[0]=(uint8_t*)(&packet); |
1873 | 739 blit_frame=2; |
740 } else { | |
741 // software decoding: | |
2019
7de4eceac32f
mpeg2-interlaced patch by Ivan Kalvatchev <iive@yahoo.com>
arpi
parents:
2006
diff
changeset
|
742 if( |
7de4eceac32f
mpeg2-interlaced patch by Ivan Kalvatchev <iive@yahoo.com>
arpi
parents:
2006
diff
changeset
|
743 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
|
744 && (!drop_frame) |
7de4eceac32f
mpeg2-interlaced patch by Ivan Kalvatchev <iive@yahoo.com>
arpi
parents:
2006
diff
changeset
|
745 ) blit_frame=1; |
1873 | 746 } |
1294 | 747 break; |
1488 | 748 case VFM_RAW: |
2794 | 749 // planes[0]=start; |
750 // blit_frame=2; | |
751 sh_video->our_out_buffer = start; | |
752 blit_frame=3; | |
1488 | 753 break; |
1948 | 754 case VFM_RLE: |
755 //void AVI_Decode_RLE8(char *image,char *delta,int tdsize, | |
756 // unsigned int *map,int imagex,int imagey,unsigned char x11_bytes_pixel); | |
757 AVI_Decode_RLE8(sh_video->our_out_buffer,start,in_size, | |
758 (int*)(((char*)sh_video->bih)+40), | |
759 sh_video->disp_w,sh_video->disp_h,((out_fmt&255)+7)/8); | |
760 blit_frame=3; | |
761 break; | |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
762 case VFM_MSVIDC: |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
763 if (sh_video->bih->biBitCount == 16) |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
764 AVI_Decode_Video1_16( |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
765 start, in_size, sh_video->our_out_buffer, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
766 sh_video->disp_w, sh_video->disp_h, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
767 ((out_fmt&255)+7)/8); |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
768 else |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
769 AVI_Decode_Video1_8( |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
770 start, in_size, sh_video->our_out_buffer, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
771 sh_video->disp_w, sh_video->disp_h, |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
772 (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
|
773 blit_frame = 3; |
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
774 break; |
3172 | 775 case VFM_FLI: |
776 AVI_Decode_Fli( | |
777 start, in_size, sh_video->our_out_buffer, | |
778 sh_video->disp_w, sh_video->disp_h, | |
779 ((out_fmt&255)+7)/8); | |
780 blit_frame = 3; | |
781 break; | |
1294 | 782 } // switch |
783 //------------------------ frame decoded. -------------------- | |
784 | |
3160 | 785 #ifdef ARCH_X86 |
1367 | 786 // some codecs is broken, and doesn't restore MMX state :( |
787 // it happens usually with broken/damaged files. | |
3144 | 788 if(gCpuCaps.has3DNow){ |
789 __asm __volatile ("femms\n\t":::"memory"); | |
790 } | |
791 else if(gCpuCaps.hasMMX){ | |
792 __asm __volatile ("emms\n\t":::"memory"); | |
793 } | |
3160 | 794 #endif |
1367 | 795 |
1360 | 796 t2=GetTimer();t=t2-t;video_time_usage+=t*0.000001f; |
797 | |
798 switch(blit_frame){ | |
799 case 3: | |
800 if(planar){ | |
801 stride[0]=sh_video->disp_w; | |
802 stride[1]=stride[2]=sh_video->disp_w/2; | |
803 planes[0]=sh_video->our_out_buffer; | |
804 planes[2]=planes[0]+sh_video->disp_w*sh_video->disp_h; | |
805 planes[1]=planes[2]+sh_video->disp_w*sh_video->disp_h/4; | |
2716 | 806 } else { |
1360 | 807 planes[0]=sh_video->our_out_buffer; |
2716 | 808 if(sh_video->bih && sh_video->bih->biSize==1064) |
809 planes[1]=&sh_video->bih[1]; // pointer to palette | |
810 else | |
811 planes[1]=NULL; | |
812 } | |
3073 | 813 //#define VFM_RAW_POSTPROC |
814 #ifdef VFM_RAW_POSTPROC | |
815 if (sh_video->codec->driver == VFM_RAW) | |
816 { | |
817 mp_dbg(MSGT_DECVIDEO, MSGL_V, "Postprocessing raw %s!\n", | |
818 vo_format_name(out_fmt)); | |
819 switch(out_fmt) | |
820 { | |
821 case IMGFMT_YV12: | |
822 postprocess(planes, stride[0], planes, stride[0], | |
823 sh_video->disp_w, sh_video->disp_h, planes[0], | |
824 0, /*0x20000*/divx_quality); | |
825 break; | |
826 // case IMGFMT_UYVY: | |
827 // uyvytoyv12(start, planes[0], planes[1], planes[2], | |
828 // sh_video->disp_w, sh_video->disp_h, stride[0], stride[1], | |
829 // sh_video->disp_w*2); | |
830 // postprocess(planes, stride[0], planes, stride[0], | |
831 // sh_video->disp_w, sh_video->disp_h, planes[0], | |
832 // 0, /*0x20000*/divx_quality); | |
833 // break; | |
834 default: | |
835 mp_dbg(MSGT_DECVIDEO, MSGL_DBG2, "Unsuitable outformat (%s) for raw pp!\n", | |
836 vo_format_name(out_fmt)); | |
837 } | |
838 } | |
839 #endif | |
1360 | 840 case 2: |
1422 | 841 #ifdef USE_LIBVO2 |
842 if(planar) | |
843 vo2_draw_slice(video_out,planes,stride,sh_video->disp_w,sh_video->disp_h,0,0); | |
844 else | |
845 vo2_draw_frame(video_out,planes[0],sh_video->disp_w,sh_video->disp_w,sh_video->disp_h); | |
846 #else | |
1360 | 847 if(planar) |
848 video_out->draw_slice(planes,stride,sh_video->disp_w,sh_video->disp_h,0,0); | |
849 else | |
850 video_out->draw_frame(planes); | |
1422 | 851 #endif |
1360 | 852 t2=GetTimer()-t2;vout_time_usage+=t2*0.000001f; |
853 blit_frame=1; | |
854 break; | |
855 } | |
856 | |
1294 | 857 return blit_frame; |
858 } | |
1375
dbcb5b5e1fae
file-format detection stuff moved out from mplayer.c to demuxer.c and dec_video.c
arpi
parents:
1367
diff
changeset
|
859 |
2827
b4d46817f050
ms video1 (cram) codecs by Mike Melanson <melanson@pcisys.net>
arpi
parents:
2794
diff
changeset
|
860 |