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