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