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