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