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