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