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