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