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