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