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