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