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