Mercurial > mplayer.hg
annotate mplayer.c @ 1266:9e1b353f8171
switch fullscreen method with -fsmode
author | arpi |
---|---|
date | Tue, 03 Jul 2001 23:23:55 +0000 |
parents | 94f2853ec6f4 |
children | 202d9e2dc202 |
rev | line source |
---|---|
1237 | 1 // AVI & MPEG Player v0.18 (C) 2000-2001. by A'rpi/ESP-team |
1 | 2 |
3 #include <stdio.h> | |
4 #include <stdlib.h> | |
109 | 5 #include <string.h> |
1 | 6 |
7 #include <signal.h> | |
8 | |
9 #include <sys/ioctl.h> | |
10 #include <unistd.h> | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
11 #include <time.h> |
1 | 12 #include <sys/mman.h> |
13 | |
14 #include <sys/types.h> | |
15 #include <sys/wait.h> | |
16 #include <sys/time.h> | |
17 #include <sys/stat.h> | |
18 #include <fcntl.h> | |
19 | |
20 #include "version.h" | |
21 #include "config.h" | |
22 | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
23 #if defined(sun) |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
24 #define DEFAULT_CDROM_DEVICE "/vol/dev/aliases/cdrom0" |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
25 #elif defined(__FreeBSD__) |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
26 #define DEFAULT_CDROM_DEVICE "/dev/cdrom" |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
27 #include <sys/cdrio.h> |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
28 #else |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
29 #define DEFAULT_CDROM_DEVICE "/dev/cdrom" |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
30 #endif |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
31 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
32 |
746 | 33 #ifndef MAX_OUTBURST |
591 | 34 #error "=============================================" |
35 #error "Please re-run ./configure and then try again!" | |
36 #error "=============================================" | |
37 #endif | |
38 | |
147 | 39 #include "cfgparser.h" |
151 | 40 #include "cfg-mplayer-def.h" |
147 | 41 |
258 | 42 #include "subreader.h" |
43 | |
36 | 44 #include "libvo/video_out.h" |
220 | 45 #include "libvo/sub.h" |
36 | 46 |
955 | 47 #include "libao2/audio_out.h" |
48 | |
1 | 49 // CODECS: |
50 #include "mp3lib/mp3.h" | |
51 #include "libac3/ac3.h" | |
52 #include "libmpeg2/mpeg2.h" | |
53 #include "libmpeg2/mpeg2_internal.h" | |
54 | |
55 #include "loader.h" | |
56 #include "wine/avifmt.h" | |
57 | |
303 | 58 #include "codec-cfg.h" |
175 | 59 |
492 | 60 #include "dvdauth.h" |
560
28ae99036574
Separated dvdsub code to be able to work with it easier
lgb
parents:
557
diff
changeset
|
61 #include "spudec.h" |
492 | 62 |
175 | 63 #ifdef USE_DIRECTSHOW |
64 #include "DirectShow/DS_VideoDec.h" | |
190 | 65 #include "DirectShow/DS_AudioDec.h" |
175 | 66 #endif |
67 | |
1248 | 68 #ifdef USE_LIBAVCODEC |
69 #include "libavcodec/avcodec.h" | |
70 AVCodec *lavc_codec=NULL; | |
71 AVCodecContext lavc_context; | |
72 AVPicture lavc_picture; | |
73 #endif | |
74 | |
1 | 75 #include "opendivx/decore.h" |
76 | |
77 | |
1042
b333271f4e7c
Solaris 8 DVD support and other fixes by Juergen Keil <jk@tools.de>
arpi_esp
parents:
1039
diff
changeset
|
78 #ifdef X11_FULLSCREEN |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
79 extern int vo_screenwidth; |
1042
b333271f4e7c
Solaris 8 DVD support and other fixes by Juergen Keil <jk@tools.de>
arpi_esp
parents:
1039
diff
changeset
|
80 #endif |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
81 |
1 | 82 extern char* win32_codec_name; // must be set before calling DrvOpen() !!! |
83 | |
84 extern int errno; | |
85 | |
86 #include "linux/getch2.h" | |
87 #include "linux/keycodes.h" | |
88 #include "linux/timer.h" | |
89 #include "linux/shmem.h" | |
90 | |
91 #ifdef HAVE_LIRC | |
92 #include "lirc_mp.h" | |
93 #endif | |
94 | |
95 #include "help_mp.h" | |
96 | |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
97 #ifdef STREAMING |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
98 #include "url.h" |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
99 #include "network.h" |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
100 static URL_t* url; |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
101 #endif |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
102 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
103 |
1 | 104 #define DEBUG if(0) |
723 | 105 #ifdef HAVE_GUI |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
106 int nogui=1; |
723 | 107 #endif |
362 | 108 int verbose=0; |
1 | 109 |
398 | 110 #define ABS(x) (((x)>=0)?(x):(-(x))) |
111 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
112 static subtitle* subtitles=NULL; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
113 void find_sub(subtitle* subtitles,int key); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
114 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
115 static int |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
116 usec_sleep(int usec_delay) |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
117 { |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
118 #if 1 |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
119 struct timespec ts; |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
120 ts.tv_sec = usec_delay / 1000000; |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
121 ts.tv_nsec = (usec_delay % 1000000) * 1000; |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
122 return nanosleep(&ts, NULL); |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
123 #else |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
124 return usleep(usec_delay); |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
125 #endif |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
126 } |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
127 |
258 | 128 //**************************************************************************// |
129 // Config file | |
130 //**************************************************************************// | |
131 | |
153 | 132 static int cfg_inc_verbose(struct config *conf){ |
133 ++verbose; | |
134 return 0; | |
135 } | |
136 | |
162 | 137 static int cfg_include(struct config *conf, char *filename){ |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
138 return parse_config_file(conf, filename); |
162 | 139 } |
140 | |
178 | 141 char *get_path(char *filename){ |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
142 char *homedir; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
143 char *buff; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
144 static char *config_dir = "/.mplayer"; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
145 int len; |
178 | 146 |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
147 if ((homedir = getenv("HOME")) == NULL) |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
148 return NULL; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
149 len = strlen(homedir) + strlen(config_dir) + 1; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
150 if (filename == NULL) { |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
151 if ((buff = (char *) malloc(len)) == NULL) |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
152 return NULL; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
153 sprintf(buff, "%s%s", homedir, config_dir); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
154 } else { |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
155 len += strlen(filename) + 1; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
156 if ((buff = (char *) malloc(len)) == NULL) |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
157 return NULL; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
158 sprintf(buff, "%s%s/%s", homedir, config_dir, filename); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
159 } |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
160 return buff; |
178 | 161 } |
162 | |
1 | 163 static int max_framesize=0; |
164 | |
165 //static int show_packets=0; | |
166 | |
167 //**************************************************************************// | |
442 | 168 //**************************************************************************// |
169 // Input media streaming & demultiplexer: | |
170 //**************************************************************************// | |
171 | |
578 | 172 #include "stream.h" |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
173 #include "demuxer.h" |
442 | 174 |
175 #include "stheader.h" | |
1 | 176 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
177 int avi_bitrate=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
178 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
179 demuxer_t *demuxer=NULL; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
180 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
181 //#include "aviprint.c" |
1 | 182 |
442 | 183 sh_audio_t* new_sh_audio(int id){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
184 if(demuxer->a_streams[id]){ |
442 | 185 printf("Warning! Audio stream header %d redefined!\n",id); |
186 } else { | |
500
c2b3a1f340c8
MPEG-ES segfault fixed, stream list printfs moved v 1->0
arpi_esp
parents:
495
diff
changeset
|
187 printf("==> Found audio stream: %d\n",id); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
188 demuxer->a_streams[id]=malloc(sizeof(sh_audio_t)); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
189 memset(demuxer->a_streams[id],0,sizeof(sh_audio_t)); |
442 | 190 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
191 return demuxer->a_streams[id]; |
442 | 192 } |
1 | 193 |
442 | 194 sh_video_t* new_sh_video(int id){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
195 if(demuxer->v_streams[id]){ |
442 | 196 printf("Warning! video stream header %d redefined!\n",id); |
197 } else { | |
500
c2b3a1f340c8
MPEG-ES segfault fixed, stream list printfs moved v 1->0
arpi_esp
parents:
495
diff
changeset
|
198 printf("==> Found video stream: %d\n",id); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
199 demuxer->v_streams[id]=malloc(sizeof(sh_video_t)); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
200 memset(demuxer->v_streams[id],0,sizeof(sh_video_t)); |
442 | 201 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
202 return demuxer->v_streams[id]; |
442 | 203 } |
1 | 204 |
205 demux_stream_t *d_audio=NULL; | |
206 demux_stream_t *d_video=NULL; | |
554 | 207 demux_stream_t *d_dvdsub=NULL; |
1 | 208 |
1015 | 209 sh_audio_t *sh_audio=NULL; |
210 sh_video_t *sh_video=NULL; | |
442 | 211 |
212 char* encode_name=NULL; | |
213 char* encode_index_name=NULL; | |
214 int encode_bitrate=0; | |
291 | 215 |
1015 | 216 extern int asf_packetsize; // for seeking |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
217 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
218 extern float avi_audio_pts; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
219 extern float avi_video_pts; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
220 extern float avi_video_ftime; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
221 extern int skip_video_frames; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
222 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
223 void read_avi_header(demuxer_t *demuxer,int index_mode); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
224 demux_stream_t* demux_avi_select_stream(demuxer_t *demux,unsigned int id); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
225 |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
226 int asf_check_header(demuxer_t *demuxer); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
227 int read_asf_header(demuxer_t *demuxer); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
228 |
1 | 229 // MPEG video stream parser: |
230 #include "parse_es.c" | |
231 | |
1015 | 232 extern int num_elementary_packets100; // for MPEG-ES fileformat detection |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
233 extern int num_elementary_packets101; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
234 |
1015 | 235 extern picture_t *picture; // exported from libmpeg2/decode.c |
442 | 236 |
112 | 237 static const int frameratecode2framerate[16] = { |
780 | 238 0, |
239 // Official mpeg1/2 framerates: | |
240 24000*10000/1001, 24*10000,25*10000, 30000*10000/1001, 30*10000,50*10000,60000*10000/1001, 60*10000, | |
241 // libmpeg3's "Unofficial economy rates": | |
242 1*10000,5*10000,10*10000,12*10000,15*10000,0,0 | |
112 | 243 }; |
244 | |
111 | 245 //**************************************************************************// |
246 // Audio codecs: | |
247 //**************************************************************************// | |
248 | |
296 | 249 // MP3 decoder buffer callback: |
1 | 250 int mplayer_audio_read(char *buf,int size){ |
251 int len; | |
291 | 252 len=demux_read_data(sh_audio->ds,buf,size); |
1 | 253 return len; |
254 } | |
255 | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
256 //#include "dec_audio.c" |
291 | 257 |
851 | 258 #ifndef NEW_DECORE |
111 | 259 //**************************************************************************// |
260 // The OpenDivX stuff: | |
261 //**************************************************************************// | |
262 | |
1 | 263 unsigned char *opendivx_src[3]; |
264 int opendivx_stride[3]; | |
265 | |
111 | 266 // callback, the opendivx decoder calls this for each frame: |
80 | 267 void convert_linux(unsigned char *puc_y, int stride_y, |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
268 unsigned char *puc_u, unsigned char *puc_v, int stride_uv, |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
269 unsigned char *bmp, int width_y, int height_y){ |
1 | 270 |
271 // printf("convert_yuv called %dx%d stride: %d,%d\n",width_y,height_y,stride_y,stride_uv); | |
272 | |
273 opendivx_src[0]=puc_y; | |
274 opendivx_src[1]=puc_u; | |
275 opendivx_src[2]=puc_v; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
276 |
1 | 277 opendivx_stride[0]=stride_y; |
278 opendivx_stride[1]=stride_uv; | |
279 opendivx_stride[2]=stride_uv; | |
280 } | |
851 | 281 #endif |
1 | 282 |
283 //**************************************************************************// | |
284 //**************************************************************************// | |
285 | |
112 | 286 // Common FIFO functions, and keyboard/event FIFO code |
287 #include "fifo.c" | |
288 | |
1 | 289 //**************************************************************************// |
290 | |
291 static vo_functions_t *video_out=NULL; | |
1183 | 292 ao_functions_t *audio_out=NULL; |
1 | 293 |
1124
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
294 double video_time_usage=0; |
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
295 double vout_time_usage=0; |
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
296 double audio_time_usage=0; |
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
297 int total_time_usage_start=0; |
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
298 int benchmark=0; |
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
299 |
1 | 300 static int play_in_bg=0; |
301 | |
606 | 302 extern void avi_fixate(); |
303 | |
723 | 304 #ifdef HAVE_GUI |
305 #include "../Gui/mplayer/psignal.h" | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
306 #define GUI_MSG(x) if ( !nogui ) { mplSendMessage( x ); usec_sleep( 10000 ); } |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
307 #else |
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
308 #define GUI_MSG(x) |
723 | 309 #endif |
310 | |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
311 // options: |
1015 | 312 int osd_level=2; |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
313 int divx_quality=0; |
937 | 314 char *seek_to_sec=NULL; |
1 | 315 int seek_to_byte=0; |
442 | 316 int has_audio=1; |
317 //int has_video=1; | |
1 | 318 int audio_format=0; // override |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
319 |
626 | 320 #ifdef USE_DIRECTSHOW |
321 int allow_dshow=1; | |
322 #else | |
323 int allow_dshow=0; | |
324 #endif | |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
325 |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
326 //#ifdef ALSA_TIMER |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
327 //int alsa=1; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
328 //#else |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
329 //int alsa=0; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
330 //#endif |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
331 |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
332 // streaming: |
1 | 333 int audio_id=-1; |
334 int video_id=-1; | |
552 | 335 int dvdsub_id=-1; |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
336 int vcd_track=0; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
337 char *stream_dump_name=NULL; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
338 int stream_dump_type=0; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
339 int index_mode=-1; // -1=untouched 0=don't use index 1=use (geneate) index |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
340 int force_ni=0; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
341 |
780 | 342 float default_max_pts_correction=-1;//0.01f; |
1 | 343 #ifdef AVI_SYNC_BPS |
344 int pts_from_bps=1; | |
345 #else | |
346 int pts_from_bps=0; | |
347 #endif | |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
348 |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
349 float force_fps=0; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
350 int force_srate=0; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
351 float audio_delay=0; |
798 | 352 int frame_dropping=0; // option 0=no drop 1= drop vo 2= drop decode |
1124
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
353 int play_n_frames=-1; |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
354 |
1 | 355 // screen info: |
356 char* video_driver=NULL; //"mga"; // default | |
956
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
357 char* audio_driver=NULL; |
1 | 358 int fullscreen=0; |
208
ae0f909ccc7c
Adds code to deal with vidmode selection. -- mgraffam
mgraffam
parents:
190
diff
changeset
|
359 int vidmode=0; |
337 | 360 int softzoom=0; |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
361 int flip=-1; |
337 | 362 int screen_size_x=0;//SCREEN_SIZE_X; |
363 int screen_size_y=0;//SCREEN_SIZE_Y; | |
1 | 364 int screen_size_xy=0; |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
365 |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
366 // sub: |
212 | 367 char *font_name=NULL; |
215 | 368 float font_factor=0.75; |
258 | 369 char *sub_name=NULL; |
370 float sub_delay=0; | |
371 float sub_fps=0; | |
510 | 372 int sub_auto = 1; |
1255
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
373 /*DSP!!char *dsp=NULL;*/ |
723 | 374 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
375 float rel_seek_secs=0; |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
376 |
1183 | 377 extern char *vo_subdevice; |
378 extern char *ao_subdevice; | |
1156 | 379 |
380 void exit_player(char* how){ | |
381 total_time_usage_start=GetTimer()-total_time_usage_start; | |
382 | |
383 #ifdef HAVE_GUI | |
384 if ( !nogui ) | |
385 { | |
386 if ( how != NULL ) | |
387 { | |
388 if ( !strcmp( how,"Quit" ) ) mplSendMessage( mplEndOfFile ); | |
389 if ( !strcmp( how,"End of file" ) ) mplSendMessage( mplEndOfFile ); | |
390 if ( !strcmp( how,"audio_init" ) ) mplSendMessage( mplAudioError ); | |
391 } | |
392 else mplSendMessage( mplUnknowError ); | |
393 } | |
394 #endif | |
395 | |
396 if(how) printf("\nExiting... (%s)\n",how); | |
397 if(verbose) printf("max framesize was %d bytes\n",max_framesize); | |
398 if(benchmark){ | |
399 double tot=video_time_usage+vout_time_usage+audio_time_usage; | |
400 double total_time_usage=(float)total_time_usage_start*0.000001; | |
401 printf("BENCHMARKs: V:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n", | |
402 video_time_usage,vout_time_usage,audio_time_usage, | |
403 total_time_usage-tot,total_time_usage); | |
404 if(total_time_usage>0.0) | |
405 printf("BENCHMARK%%: V:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n", | |
406 100.0*video_time_usage/total_time_usage, | |
407 100.0*vout_time_usage/total_time_usage, | |
408 100.0*audio_time_usage/total_time_usage, | |
409 100.0*(total_time_usage-tot)/total_time_usage, | |
410 100.0); | |
411 } | |
412 // restore terminal: | |
413 #ifdef HAVE_GUI | |
414 if ( nogui ) | |
415 #endif | |
416 getch2_disable(); | |
417 if(video_out) video_out->uninit(); | |
418 if(audio_out && has_audio) audio_out->uninit(); | |
419 if(encode_name) avi_fixate(); | |
420 #ifdef HAVE_LIRC | |
421 #ifdef HAVE_GUI | |
422 if ( nogui ) | |
423 #endif | |
424 lirc_mp_cleanup(); | |
425 #endif | |
426 //if(play_in_bg) system("xsetroot -solid \\#000000"); | |
427 exit(1); | |
428 } | |
429 | |
430 static char* current_module=NULL; // for debugging | |
431 | |
432 void exit_sighandler(int x){ | |
433 static int sig_count=0; | |
434 ++sig_count; | |
435 if(sig_count==2) exit(1); | |
436 if(sig_count>2){ | |
437 // can't stop :( | |
438 kill(getpid(),SIGKILL); | |
439 } | |
1217 | 440 fprintf(stderr,"\nMPlayer interrupted by signal %d in module: %s \n",x, |
1156 | 441 current_module?current_module:"unknown" |
442 ); | |
443 #ifdef HAVE_GUI | |
444 if ( !nogui ) | |
445 { | |
446 mplShMem->items.error.signal=x; | |
447 strcpy( mplShMem->items.error.module,current_module?current_module:"unknown" ); | |
448 } | |
449 #endif | |
450 exit_player(NULL); | |
451 } | |
452 | |
453 extern int vcd_get_track_end(int fd,int track); | |
454 extern int init_audio(sh_audio_t *sh_audio); | |
455 extern int init_video_codec(sh_video_t *sh_video); | |
456 extern void mpeg2_allocate_image_buffers(picture_t * picture); | |
457 extern void write_avi_header_1(FILE *f,int fcc,float fps,int width,int height); | |
458 extern int vo_init(void); | |
459 extern int decode_audio(sh_audio_t *sh_audio,unsigned char *buf,int minlen,int maxlen); | |
460 | |
461 | |
459 | 462 #include "mixer.h" |
147 | 463 #include "cfg-mplayer.h" |
1 | 464 |
723 | 465 void parse_cfgfiles( void ) |
466 { | |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
467 char *conffile; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
468 int conffile_fd; |
147 | 469 if (parse_config_file(conf, "/etc/mplayer.conf") < 0) |
470 exit(1); | |
178 | 471 if ((conffile = get_path("")) == NULL) { |
147 | 472 printf("Can't find HOME dir\n"); |
473 } else { | |
178 | 474 mkdir(conffile, 0777); |
475 free(conffile); | |
476 if ((conffile = get_path("config")) == NULL) { | |
477 printf("get_path(\"config\") sziiiivas\n"); | |
478 } else { | |
479 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) { | |
480 printf("Creating config file: %s\n", conffile); | |
481 write(conffile_fd, default_config, strlen(default_config)); | |
482 close(conffile_fd); | |
483 } | |
484 if (parse_config_file(conf, conffile) < 0) | |
485 exit(1); | |
486 free(conffile); | |
151 | 487 } |
1 | 488 } |
489 } | |
490 | |
723 | 491 #ifndef HAVE_GUI |
492 int main(int argc,char* argv[], char *envp[]){ | |
493 #else | |
494 int mplayer(int argc,char* argv[], char *envp[]){ | |
495 #endif | |
496 | |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
497 char* filename=NULL; //"MI2-Trailer.avi"; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
498 stream_t* stream=NULL; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
499 int file_format=DEMUXER_TYPE_UNKNOWN; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
500 // |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
501 int delay_corrected=1; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
502 float initial_pts_delay=0; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
503 #ifdef VCD_CACHE |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
504 int vcd_cache_size=128; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
505 #endif |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
506 #ifdef __FreeBSD__ |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
507 int bsize = VCD_SECTOR_SIZE; |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
508 #endif |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
509 char* title="MPlayer"; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
510 |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
511 // movie info: |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
512 int out_fmt=0; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
513 //int user_bpp=0; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
514 |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
515 int osd_visible=100; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
516 int osd_function=OSD_PLAY; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
517 int osd_last_pts=-303; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
518 |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
519 float a_frame=0; // Audio |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
520 |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
521 float rel_seek_secs=0; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
522 |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
523 int i; |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
524 int f; // filedes |
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
525 |
723 | 526 printf("%s",banner_text); |
527 | |
528 #ifdef HAVE_GUI | |
529 if ( nogui ) | |
530 { | |
531 #endif | |
751 | 532 parse_cfgfiles(); |
723 | 533 if (parse_command_line(conf, argc, argv, envp, &filename) < 0) exit(1); |
534 | |
535 // Many users forget to include command line in bugreports... | |
536 if(verbose){ | |
537 printf("CommandLine:"); | |
538 for(i=1;i<argc;i++)printf(" '%s'",argv[i]); | |
539 printf("\n"); | |
540 } | |
541 | |
542 if(video_driver && strcmp(video_driver,"help")==0){ | |
543 printf("Available video output drivers:\n"); | |
544 i=0; | |
545 while (video_out_drivers[i]) { | |
546 const vo_info_t *info = video_out_drivers[i++]->get_info (); | |
547 printf("\t%s\t%s\n", info->short_name, info->name); | |
548 } | |
549 printf("\n"); | |
550 exit(0); | |
956
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
551 } |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
552 if(audio_driver && strcmp(audio_driver,"help")==0){ |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
553 printf("Available audio output drivers:\n"); |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
554 i=0; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
555 while (audio_out_drivers[i]) { |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
556 const ao_info_t *info = audio_out_drivers[i++]->info; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
557 printf("\t%s\t%s\n", info->short_name, info->name); |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
558 } |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
559 printf("\n"); |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
560 exit(0); |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
561 } |
723 | 562 #ifdef HAVE_GUI |
563 } | |
564 #endif | |
1 | 565 |
442 | 566 if(!filename){ |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
567 if(vcd_track) filename=DEFAULT_CDROM_DEVICE; |
442 | 568 else { |
569 printf("%s",help_text); exit(0); | |
570 } | |
571 } | |
572 | |
573 // check video_out driver name: | |
1183 | 574 if (video_driver) |
575 if ((i = strcspn(video_driver, ":")) > 0) | |
576 { | |
577 size_t i2 = strlen(video_driver); | |
578 | |
1190
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
579 if (video_driver[i] == ':') |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
580 { |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
581 vo_subdevice = malloc(i2-i); |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
582 if (vo_subdevice != NULL) |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
583 strncpy(vo_subdevice, (char *)(video_driver+i+1), i2-i); |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
584 video_driver[i] = '\0'; |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
585 } |
1183 | 586 // printf("video_driver: %s, subdevice: %s\n", video_driver, vo_subdevice); |
587 } | |
442 | 588 if(!video_driver) |
589 video_out=video_out_drivers[0]; | |
590 else | |
591 for (i=0; video_out_drivers[i] != NULL; i++){ | |
592 const vo_info_t *info = video_out_drivers[i]->get_info (); | |
593 if(strcmp(info->short_name,video_driver) == 0){ | |
594 video_out = video_out_drivers[i];break; | |
595 } | |
596 } | |
597 if(!video_out){ | |
1217 | 598 fprintf(stderr,"Invalid video output driver name: %s\nUse '-vo help' to get a list of available video drivers.\n",video_driver); |
956
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
599 return 0; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
600 } |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
601 |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
602 // check audio_out driver name: |
1183 | 603 if (audio_driver) |
604 if ((i = strcspn(audio_driver, ":")) > 0) | |
605 { | |
606 size_t i2 = strlen(audio_driver); | |
607 | |
1190
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
608 if (audio_driver[i] == ':') |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
609 { |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
610 ao_subdevice = malloc(i2-i); |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
611 if (ao_subdevice != NULL) |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
612 strncpy(ao_subdevice, (char *)(audio_driver+i+1), i2-i); |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
613 audio_driver[i] = '\0'; |
98f732a23cb4
egy hulye kis checking kimaradt az strcspn fv. jovoltabol
al3x
parents:
1183
diff
changeset
|
614 } |
1183 | 615 // printf("audio_driver: %s, subdevice: %s\n", audio_driver, ao_subdevice); |
616 } | |
956
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
617 if(!audio_driver) |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
618 audio_out=audio_out_drivers[0]; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
619 else |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
620 for (i=0; audio_out_drivers[i] != NULL; i++){ |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
621 const ao_info_t *info = audio_out_drivers[i]->info; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
622 if(strcmp(info->short_name,audio_driver) == 0){ |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
623 audio_out = audio_out_drivers[i];break; |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
624 } |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
625 } |
a6cecd9a1bad
'-ao' switch (including '-ao help'), fixing Arpi's bug (short name 'null' for both of oss and null driver ;)
lgb
parents:
955
diff
changeset
|
626 if (!audio_out){ |
1217 | 627 fprintf(stderr,"Invalid audio output driver name: %s\nUse '-ao help' to get a list of available audio drivers.\n",audio_driver); |
442 | 628 return 0; |
629 } | |
1255
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
630 /*DSP!! if(dsp) audio_out->control(AOCONTROL_SET_DEVICE,(int)dsp);*/ |
955 | 631 |
442 | 632 // check codec.conf |
633 if(!parse_codec_cfg(get_path("codecs.conf"))){ | |
634 printf("(copy/link DOCS/codecs.conf to ~/.mplayer/codecs.conf)\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
635 GUI_MSG( mplCodecConfNotFound ) |
442 | 636 exit(1); |
637 } | |
638 | |
212 | 639 // check font |
640 if(font_name){ | |
337 | 641 vo_font=read_font_desc(font_name,font_factor,verbose>1); |
1217 | 642 if(!vo_font) fprintf(stderr,"Can't load font: %s\n",font_name); |
220 | 643 } else { |
644 // try default: | |
337 | 645 vo_font=read_font_desc(get_path("font/font.desc"),font_factor,verbose>1); |
212 | 646 } |
647 | |
258 | 648 // check .sub |
649 if(sub_name){ | |
650 subtitles=sub_read_file(sub_name); | |
1217 | 651 if(!subtitles) fprintf(stderr,"Can't load subtitles: %s\n",sub_name); |
258 | 652 } else { |
510 | 653 if ( sub_auto ) |
654 { | |
655 // auto load sub file ... | |
892 | 656 subtitles=sub_read_file( sub_filename( get_path("sub/"), filename ) ); |
657 } | |
658 if ( subtitles == NULL ) subtitles=sub_read_file(get_path("default.sub")); // try default: | |
258 | 659 } |
660 | |
661 | |
1 | 662 if(vcd_track){ |
663 //============ Open VideoCD track ============== | |
598 | 664 int ret,ret2; |
1 | 665 f=open(filename,O_RDONLY); |
1217 | 666 if(f<0){ fprintf(stderr,"CD-ROM Device '%s' not found!\n",filename);return 1; } |
1 | 667 vcd_read_toc(f); |
598 | 668 ret2=vcd_get_track_end(f,vcd_track); |
1217 | 669 if(ret2<0){ fprintf(stderr,"Error selecting VCD track!\n");return 1;} |
578 | 670 ret=vcd_seek_to_track(f,vcd_track); |
1217 | 671 if(ret<0){ fprintf(stderr,"Error selecting VCD track!\n");return 1;} |
578 | 672 seek_to_byte+=ret; |
598 | 673 if(verbose) printf("VCD start byte position: 0x%X end: 0x%X\n",seek_to_byte,ret2); |
1 | 674 #ifdef VCD_CACHE |
675 vcd_cache_init(vcd_cache_size); | |
676 #endif | |
1177
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
677 #ifdef __FreeBSD__ |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
678 if (ioctl (f, CDRIOCSETBLOCKSIZE, &bsize) == -1) { |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
679 perror ( "Error in CDRIOCSETBLOCKSIZE"); |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
680 } |
f2516027a346
FreeBSD patch by Vladimir Kushnir <vkushnir@Alfacom.net>
arpi_esp
parents:
1156
diff
changeset
|
681 #endif |
598 | 682 stream=new_stream(f,STREAMTYPE_VCD); |
683 stream->start_pos=ret; | |
684 stream->end_pos=ret2; | |
1 | 685 } else { |
686 //============ Open plain FILE ============ | |
598 | 687 int len; |
692 | 688 if(!strcmp(filename,"-")){ |
689 // read from stdin | |
690 printf("Reading from stdin...\n"); | |
691 f=0; // 0=stdin | |
692 stream=new_stream(f,STREAMTYPE_STREAM); | |
693 } else { | |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
694 #ifdef STREAMING |
906 | 695 url = url_new(filename); |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
696 if(url==NULL) { |
906 | 697 // failed to create a new URL, so it's not an URL (or a malformed URL) |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
698 #endif |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
699 f=open(filename,O_RDONLY); |
1217 | 700 if(f<0){ fprintf(stderr,"File not found: '%s'\n",filename);return 1; } |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
701 len=lseek(f,0,SEEK_END); lseek(f,0,SEEK_SET); |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
702 stream=new_stream(f,STREAMTYPE_FILE); |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
703 stream->end_pos=len; |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
704 #ifdef STREAMING |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
705 } else { |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
706 file_format=autodetectProtocol( url, &f ); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
707 if( file_format==DEMUXER_TYPE_UNKNOWN ) { |
1217 | 708 fprintf(stderr,"Unable to open URL: %s\n", filename); |
906 | 709 url_free(url); |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
710 return 1; |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
711 } else { |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
712 f=streaming_start( &url, f, file_format ); |
1217 | 713 if(f<0){ fprintf(stderr,"Unable to open URL: %s\n", url->url); return 1; } |
842
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
714 printf("Connected to server: %s\n", url->hostname ); |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
715 } |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
716 stream=new_stream(f,STREAMTYPE_STREAM); |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
717 } |
80698f8030b9
Now Check if the 'filename' is an URL and connect to the server.
bertrand
parents:
815
diff
changeset
|
718 #endif |
692 | 719 } |
598 | 720 } |
721 | |
492 | 722 #ifdef HAVE_LIBCSS |
546 | 723 if (dvdimportkey) { |
724 if (dvd_import_key(dvdimportkey)) { | |
725 fprintf(stderr,"Error processing DVD KEY.\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
726 GUI_MSG( mplErrorDVDKeyProcess ) |
546 | 727 exit(1); |
728 } | |
729 printf("DVD command line requested key is stored for descrambling.\n"); | |
730 } | |
1018
e5fc7ec51fa3
-dvd is renamed to -dvdauth, variable dvd_device is renamed to dvd_auth_device. These changes are needed for future DVD playback developmenting
lgb
parents:
1015
diff
changeset
|
731 if (dvd_auth_device) { |
1042
b333271f4e7c
Solaris 8 DVD support and other fixes by Juergen Keil <jk@tools.de>
arpi_esp
parents:
1039
diff
changeset
|
732 // if (dvd_auth(dvd_auth_device,f)) { |
b333271f4e7c
Solaris 8 DVD support and other fixes by Juergen Keil <jk@tools.de>
arpi_esp
parents:
1039
diff
changeset
|
733 if (dvd_auth(dvd_auth_device,filename)) { |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
734 GUI_MSG( mplErrorDVDAuth ) |
723 | 735 exit(0); |
736 } | |
492 | 737 printf("DVD auth sequence seems to be OK.\n"); |
738 } | |
739 #endif | |
1 | 740 |
741 //============ Open & Sync stream and detect file format =============== | |
742 | |
442 | 743 if(!has_audio) audio_id=-2; // do NOT read audio packets... |
1 | 744 |
745 //=============== Try to open as AVI file: ================= | |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
746 if(file_format==DEMUXER_TYPE_UNKNOWN || file_format==DEMUXER_TYPE_AVI){ |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
747 stream_reset(stream); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
748 demuxer=new_demuxer(stream,DEMUXER_TYPE_AVI,audio_id,video_id,dvdsub_id); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
749 stream_seek(demuxer->stream,seek_to_byte); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
750 //printf("stream3=0x%X vs. 0x%X\n",demuxer->stream,stream); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
751 { //---- RIFF header: |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
752 int id=stream_read_dword_le(demuxer->stream); // "RIFF" |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
753 if(id==mmioFOURCC('R','I','F','F')){ |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
754 stream_read_dword_le(demuxer->stream); //filesize |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
755 id=stream_read_dword_le(demuxer->stream); // "AVI " |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
756 if(id==formtypeAVI){ |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
757 printf("Detected AVI file format!\n"); |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
758 file_format=DEMUXER_TYPE_AVI; |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
759 } |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
760 } |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
761 } |
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
762 } |
1 | 763 //=============== Try to open as ASF file: ================= |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
764 if(file_format==DEMUXER_TYPE_UNKNOWN || file_format==DEMUXER_TYPE_ASF){ |
1 | 765 stream_reset(stream); |
552 | 766 demuxer=new_demuxer(stream,DEMUXER_TYPE_ASF,audio_id,video_id,dvdsub_id); |
1 | 767 stream_seek(demuxer->stream,seek_to_byte); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
768 if(asf_check_header(demuxer)){ |
1 | 769 printf("Detected ASF file format!\n"); |
770 file_format=DEMUXER_TYPE_ASF; | |
771 } | |
772 } | |
773 //=============== Try to open as MPEG-PS file: ================= | |
1002
f035bd1f2749
Streaming function return the file_format and should be tested.
bertrand
parents:
984
diff
changeset
|
774 if(file_format==DEMUXER_TYPE_UNKNOWN || file_format==DEMUXER_TYPE_MPEG_PS){ |
1 | 775 stream_reset(stream); |
552 | 776 demuxer=new_demuxer(stream,DEMUXER_TYPE_MPEG_PS,audio_id,video_id,dvdsub_id); |
1 | 777 stream_seek(demuxer->stream,seek_to_byte); |
778 if(audio_format) demuxer->audio->type=audio_format; // override audio format | |
779 if(ds_fill_buffer(demuxer->video)){ | |
780 printf("Detected MPEG-PS file format!\n"); | |
781 file_format=DEMUXER_TYPE_MPEG_PS; | |
782 } else { | |
783 // some hack to get meaningfull error messages to our unhappy users: | |
784 // if(num_elementary_packets100>16 && | |
785 // abs(num_elementary_packets101-num_elementary_packets100)<8){ | |
786 if(num_elementary_packets100>=2 && num_elementary_packets101>=2 && | |
787 abs(num_elementary_packets101-num_elementary_packets100)<8){ | |
788 file_format=DEMUXER_TYPE_MPEG_ES; // <-- hack is here :) | |
789 } else { | |
790 if(demuxer->synced==2) | |
791 printf("Missing MPEG video stream!? contact the author, it may be a bug :(\n"); | |
792 else | |
793 printf("Not MPEG System Stream format... (maybe Transport Stream?)\n"); | |
794 } | |
795 } | |
796 } | |
797 //=============== Try to open as MPEG-ES file: ================= | |
798 if(file_format==DEMUXER_TYPE_MPEG_ES){ // little hack, see above! | |
799 stream_reset(stream); | |
552 | 800 demuxer=new_demuxer(stream,DEMUXER_TYPE_MPEG_ES,audio_id,video_id,dvdsub_id); |
1 | 801 stream_seek(demuxer->stream,seek_to_byte); |
802 if(!ds_fill_buffer(demuxer->video)){ | |
803 printf("Invalid MPEG-ES stream??? contact the author, it may be a bug :(\n"); | |
804 file_format=DEMUXER_TYPE_UNKNOWN; | |
805 } else { | |
806 printf("Detected MPEG-ES file format!\n"); | |
807 } | |
808 } | |
1255
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
809 #ifdef MOV |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
810 //=============== Try to open as MOV file: ================= |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
811 if(file_format==DEMUXER_TYPE_UNKNOWN || file_format==DEMUXER_TYPE_MOV){ |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
812 stream_reset(stream); |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
813 demuxer=new_demuxer(stream,DEMUXER_TYPE_MOV,audio_id,video_id,dvdsub_id); |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
814 // stream_seek(demuxer->stream,seek_to_byte); |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
815 if(mov_check_file(demuxer)){ |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
816 printf("Detected MOV file format!\n"); |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
817 file_format=DEMUXER_TYPE_MOV; |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
818 } |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
819 } |
94f2853ec6f4
-dsp option removed, displaying help text (-ao oss:dsp_path)
alex
parents:
1250
diff
changeset
|
820 #endif |
1 | 821 //=============== Unknown, exiting... =========================== |
822 if(file_format==DEMUXER_TYPE_UNKNOWN){ | |
1217 | 823 fprintf(stderr,"============= Sorry, this file format not recognized/supported ===============\n"); |
824 fprintf(stderr,"=== If this file is an AVI, ASF or MPEG stream, please contact the author! ===\n"); | |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
825 GUI_MSG( mplUnknowFileType ) |
1 | 826 exit(1); |
827 } | |
828 //====== File format recognized, set up these for compatibility: ========= | |
829 d_audio=demuxer->audio; | |
830 d_video=demuxer->video; | |
554 | 831 d_dvdsub=demuxer->sub; |
442 | 832 //d_audio->sh=sh_audio; |
833 //d_video->sh=sh_video; | |
834 //sh_audio=d_audio->sh;sh_audio->ds=d_audio; | |
835 //sh_video=d_video->sh;sh_video->ds=d_video; | |
1 | 836 |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
837 sh_audio=NULL; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
838 sh_video=NULL; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
839 |
1 | 840 switch(file_format){ |
841 case DEMUXER_TYPE_AVI: { | |
842 //---- AVI header: | |
1039 | 843 read_avi_header(demuxer,(stream->type!=STREAMTYPE_STREAM)?index_mode:-2); |
1 | 844 stream_reset(demuxer->stream); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
845 stream_seek(demuxer->stream,demuxer->movi_start); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
846 demuxer->idx_pos=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
847 demuxer->idx_pos_a=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
848 demuxer->idx_pos_v=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
849 if(demuxer->idx_size>0){ |
1 | 850 // decide index format: |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
851 if(((AVIINDEXENTRY *)demuxer->idx)[0].dwChunkOffset<demuxer->movi_start) |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
852 demuxer->idx_offset=demuxer->movi_start-4; |
1 | 853 else |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
854 demuxer->idx_offset=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
855 if(verbose) printf("AVI index offset: %d\n",demuxer->idx_offset); |
1 | 856 } |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
857 // demuxer->endpos=avi_header.movi_end; |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
858 |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
859 if(demuxer->idx_size>0){ |
1 | 860 // check that file is non-interleaved: |
861 int i; | |
862 int a_pos=-1; | |
863 int v_pos=-1; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
864 for(i=0;i<demuxer->idx_size;i++){ |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
865 AVIINDEXENTRY* idx=&((AVIINDEXENTRY *)demuxer->idx)[i]; |
1 | 866 demux_stream_t* ds=demux_avi_select_stream(demuxer,idx->ckid); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
867 int pos=idx->dwChunkOffset+demuxer->idx_offset; |
1 | 868 if(a_pos==-1 && ds==demuxer->audio){ |
869 a_pos=pos; | |
870 if(v_pos!=-1) break; | |
871 } | |
872 if(v_pos==-1 && ds==demuxer->video){ | |
873 v_pos=pos; | |
874 if(a_pos!=-1) break; | |
875 } | |
876 } | |
877 if(v_pos==-1){ | |
1217 | 878 fprintf(stderr,"AVI_NI: missing video stream!? contact the author, it may be a bug :(\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
879 GUI_MSG( mplErrorAVINI ) |
1 | 880 exit(1); |
881 } | |
882 if(a_pos==-1){ | |
883 printf("AVI_NI: No audio stream found -> nosound\n"); | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
884 has_audio=0;sh_audio=NULL; |
1 | 885 } else { |
886 if(force_ni || abs(a_pos-v_pos)>0x100000){ // distance > 1MB | |
887 printf("Detected NON-INTERLEAVED AVI file-format!\n"); | |
888 demuxer->type=DEMUXER_TYPE_AVI_NI; // HACK!!!! | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
889 pts_from_bps=1; // force BPS sync! |
1 | 890 } |
891 } | |
892 } else { | |
893 // no index | |
894 if(force_ni){ | |
895 printf("Using NON-INTERLEAVED Broken AVI file-format!\n"); | |
896 demuxer->type=DEMUXER_TYPE_AVI_NINI; // HACK!!!! | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
897 demuxer->idx_pos_a= |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
898 demuxer->idx_pos_v=demuxer->movi_start; |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
899 pts_from_bps=1; // force BPS sync! |
1 | 900 } |
901 } | |
902 if(!ds_fill_buffer(d_video)){ | |
1217 | 903 fprintf(stderr,"AVI: missing video stream!? contact the author, it may be a bug :(\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
904 GUI_MSG( mplAVIErrorMissingVideoStream ) |
1 | 905 exit(1); |
906 } | |
442 | 907 sh_video=d_video->sh;sh_video->ds=d_video; |
1 | 908 if(has_audio){ |
442 | 909 if(verbose) printf("AVI: Searching for audio stream (id:%d)\n",d_audio->id); |
1 | 910 if(!ds_fill_buffer(d_audio)){ |
442 | 911 printf("AVI: No Audio stream found... ->nosound\n"); |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
912 has_audio=0;sh_audio=NULL; |
442 | 913 } else { |
914 sh_audio=d_audio->sh;sh_audio->ds=d_audio; | |
915 sh_audio->format=sh_audio->wf->wFormatTag; | |
916 } | |
1 | 917 } |
398 | 918 // calc. FPS: |
919 sh_video->fps=(float)sh_video->video.dwRate/(float)sh_video->video.dwScale; | |
920 sh_video->frametime=(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; | |
375 | 921 // calculating video bitrate: |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
922 avi_bitrate=demuxer->movi_end-demuxer->movi_start-demuxer->idx_size*8; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
923 if(sh_audio) avi_bitrate-=sh_audio->audio.dwLength; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
924 if(verbose) printf("AVI video length=%d\n",avi_bitrate); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
925 avi_bitrate=((float)avi_bitrate/(float)sh_video->video.dwLength)*sh_video->fps; |
606 | 926 printf("VIDEO: [%.4s] %ldx%ld %dbpp %4.2f fps %5.1f kbps (%4.1f kbyte/s)\n", |
927 (char *)&sh_video->bih->biCompression, | |
442 | 928 sh_video->bih->biWidth, |
929 sh_video->bih->biHeight, | |
930 sh_video->bih->biBitCount, | |
398 | 931 sh_video->fps, |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
932 avi_bitrate*0.008f, |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
933 avi_bitrate/1024.0f ); |
1 | 934 break; |
935 } | |
936 case DEMUXER_TYPE_ASF: { | |
937 //---- ASF header: | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
938 read_asf_header(demuxer); |
1 | 939 stream_reset(demuxer->stream); |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
940 stream_seek(demuxer->stream,demuxer->movi_start); |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
941 demuxer->idx_pos=0; |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
942 // demuxer->endpos=avi_header.movi_end; |
1 | 943 if(!ds_fill_buffer(d_video)){ |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
944 printf("ASF: no video stream found!\n"); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
945 sh_video=NULL; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
946 //printf("ASF: missing video stream!? contact the author, it may be a bug :(\n"); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
947 //GUI_MSG( mplASFErrorMissingVideoStream ) |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
948 //exit(1); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
949 } else { |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
950 sh_video=d_video->sh;sh_video->ds=d_video; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
951 sh_video->fps=1000.0f; sh_video->frametime=0.001f; // 1ms |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
952 printf("VIDEO: [%.4s] %ldx%ld %dbpp\n", |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
953 (char *)&sh_video->bih->biCompression, |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
954 sh_video->bih->biWidth, |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
955 sh_video->bih->biHeight, |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
956 sh_video->bih->biBitCount); |
1 | 957 } |
958 if(has_audio){ | |
959 if(verbose) printf("ASF: Searching for audio stream (id:%d)\n",d_audio->id); | |
960 if(!ds_fill_buffer(d_audio)){ | |
961 printf("ASF: No Audio stream found... ->nosound\n"); | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
962 has_audio=0;sh_audio=NULL; |
442 | 963 } else { |
964 sh_audio=d_audio->sh;sh_audio->ds=d_audio; | |
965 sh_audio->format=sh_audio->wf->wFormatTag; | |
966 } | |
1 | 967 } |
968 break; | |
969 } | |
970 case DEMUXER_TYPE_MPEG_ES: { | |
442 | 971 d_audio->type=0; |
500
c2b3a1f340c8
MPEG-ES segfault fixed, stream list printfs moved v 1->0
arpi_esp
parents:
495
diff
changeset
|
972 has_audio=0;sh_audio=NULL; // ES streams has no audio channel |
c2b3a1f340c8
MPEG-ES segfault fixed, stream list printfs moved v 1->0
arpi_esp
parents:
495
diff
changeset
|
973 d_video->sh=new_sh_video(0); // create dummy video stream header, id=0 |
375 | 974 break; |
975 } | |
976 case DEMUXER_TYPE_MPEG_PS: { | |
606 | 977 if(has_audio) { |
375 | 978 if(!ds_fill_buffer(d_audio)){ |
979 printf("MPEG: No Audio stream found... ->nosound\n"); | |
442 | 980 has_audio=0;sh_audio=NULL; |
375 | 981 } else { |
442 | 982 sh_audio=d_audio->sh;sh_audio->ds=d_audio; |
382 | 983 if(verbose) printf("detected MPG-PS audio format: %d\n",d_audio->type); |
375 | 984 switch(d_audio->type){ |
985 case 1: sh_audio->format=0x50;break; // mpeg | |
442 | 986 case 2: sh_audio->format=0x10001;break; // dvd pcm |
375 | 987 case 3: sh_audio->format=0x2000;break; // ac3 |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
988 default: has_audio=0;sh_audio=NULL; // unknown type |
375 | 989 } |
990 } | |
606 | 991 } |
375 | 992 break; |
993 } | |
994 } // switch(file_format) | |
995 | |
792 | 996 // DUMP STREAMS: |
997 if(stream_dump_type){ | |
998 FILE *f; | |
999 demux_stream_t *ds=NULL; | |
1000 // select stream to dump | |
1001 switch(stream_dump_type){ | |
1002 case 1: ds=d_audio;break; | |
1003 case 2: ds=d_video;break; | |
1004 case 3: ds=d_dvdsub;break; | |
1005 } | |
1006 if(!ds){ | |
1217 | 1007 fprintf(stderr,"dump: FATAL: selected stream missing!\n"); |
792 | 1008 exit(1); |
1009 } | |
1010 // disable other streams: | |
1011 if(d_audio && d_audio!=ds) {ds_free_packs(d_audio); d_audio->id=-2; } | |
1012 if(d_video && d_video!=ds) {ds_free_packs(d_video); d_video->id=-2; } | |
1013 if(d_dvdsub && d_dvdsub!=ds) {ds_free_packs(d_dvdsub); d_dvdsub->id=-2; } | |
1014 // let's dump it! | |
1015 f=fopen(stream_dump_name?stream_dump_name:"stream.dump","wb"); | |
1217 | 1016 if(!f){ fprintf(stderr,"Can't open dump file!!!\n");exit(1); } |
792 | 1017 while(!ds->eof){ |
1018 unsigned char* start; | |
1019 int in_size=ds_get_packet(ds,&start); | |
1246
7f69c1dd1e91
-dumpvideo stores frame size for avi/asf video frames (for ffmpeg testing)
arpi
parents:
1237
diff
changeset
|
1020 if( (file_format==DEMUXER_TYPE_AVI || file_format==DEMUXER_TYPE_ASF) |
7f69c1dd1e91
-dumpvideo stores frame size for avi/asf video frames (for ffmpeg testing)
arpi
parents:
1237
diff
changeset
|
1021 && stream_dump_type==2) fwrite(&in_size,1,4,f); |
792 | 1022 if(in_size>0) fwrite(start,in_size,1,f); |
1023 } | |
1024 fclose(f); | |
1025 printf("core dumped :)\n"); | |
1026 exit(1); | |
1027 } | |
1028 | |
1029 | |
375 | 1030 // Determine image properties: |
1031 switch(file_format){ | |
1032 case DEMUXER_TYPE_AVI: | |
1033 case DEMUXER_TYPE_ASF: { | |
1034 // display info: | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1035 if(sh_video){ |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1036 sh_video->format=sh_video->bih->biCompression; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1037 sh_video->disp_w=sh_video->bih->biWidth; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1038 sh_video->disp_h=abs(sh_video->bih->biHeight); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1039 } |
375 | 1040 break; |
1041 } | |
1042 case DEMUXER_TYPE_MPEG_ES: | |
1043 case DEMUXER_TYPE_MPEG_PS: { | |
303 | 1044 // Find sequence_header first: |
1045 if(verbose) printf("Searching for sequence header... ");fflush(stdout); | |
1046 while(1){ | |
1047 int i=sync_video_packet(d_video); | |
1048 if(i==0x1B3) break; // found it! | |
1049 if(!i || !skip_video_packet(d_video)){ | |
1050 if(verbose) printf("NONE :(\n"); | |
1217 | 1051 fprintf(stderr,"MPEG: FATAL: EOF while searching for sequence header\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1052 GUI_MSG( mplMPEGErrorSeqHeaderSearch ) |
303 | 1053 exit(1); |
1054 } | |
1055 } | |
1056 if(verbose) printf("OK!\n"); | |
442 | 1057 sh_video=d_video->sh;sh_video->ds=d_video; |
894 | 1058 sh_video->format=0x10000001; // mpeg video |
375 | 1059 mpeg2_init(); |
1060 // ========= Read & process sequence header & extension ============ | |
1061 videobuffer=shmem_alloc(VIDEOBUFFER_SIZE); | |
723 | 1062 if(!videobuffer){ |
1217 | 1063 fprintf(stderr,"Cannot allocate shared memory\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1064 GUI_MSG( mplErrorShMemAlloc ) |
723 | 1065 exit(0); |
1066 } | |
375 | 1067 videobuf_len=0; |
723 | 1068 if(!read_video_packet(d_video)){ |
1217 | 1069 fprintf(stderr,"FATAL: Cannot read sequence header!\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1070 GUI_MSG( mplMPEGErrorCannotReadSeqHeader ) |
723 | 1071 exit(1); |
1072 } | |
375 | 1073 if(header_process_sequence_header (picture, &videobuffer[4])) { |
723 | 1074 printf ("bad sequence header!\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1075 GUI_MSG( mplMPEGErrorBadSeqHeader ) |
723 | 1076 exit(1); |
375 | 1077 } |
1078 if(sync_video_packet(d_video)==0x1B5){ // next packet is seq. ext. | |
1079 videobuf_len=0; | |
723 | 1080 if(!read_video_packet(d_video)){ |
1217 | 1081 fprintf(stderr,"FATAL: Cannot read sequence header extension!\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1082 GUI_MSG( mplMPEGErrorCannotReadSeqHeaderExt ) |
723 | 1083 exit(1); |
1084 } | |
375 | 1085 if(header_process_extension (picture, &videobuffer[4])) { |
723 | 1086 printf ("bad sequence header extension!\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1087 GUI_MSG( mplMPEGErrorBadSeqHeaderExt ) |
723 | 1088 exit(1); |
303 | 1089 } |
1090 } | |
375 | 1091 // display info: |
398 | 1092 sh_video->fps=frameratecode2framerate[picture->frame_rate_code]*0.0001f; |
780 | 1093 if(!sh_video->fps){ |
1094 if(!force_fps){ | |
1217 | 1095 fprintf(stderr,"FPS not specified (or invalid) in the header! Use the -fps option!\n"); |
780 | 1096 exit(1); |
1097 } | |
1098 sh_video->frametime=0; | |
1099 } else { | |
1100 sh_video->frametime=10000.0f/(float)frameratecode2framerate[picture->frame_rate_code]; | |
1101 } | |
398 | 1102 sh_video->disp_w=picture->display_picture_width; |
1103 sh_video->disp_h=picture->display_picture_height; | |
375 | 1104 // info: |
1105 if(verbose) printf("mpeg bitrate: %d (%X)\n",picture->bitrate,picture->bitrate); | |
1106 printf("VIDEO: %s %dx%d (aspect %d) %4.2f fps %5.1f kbps (%4.1f kbyte/s)\n", | |
1107 picture->mpeg1?"MPEG1":"MPEG2", | |
398 | 1108 sh_video->disp_w,sh_video->disp_h, |
375 | 1109 picture->aspect_ratio_information, |
398 | 1110 sh_video->fps, |
375 | 1111 picture->bitrate*0.5f, |
1112 picture->bitrate/16.0f ); | |
1 | 1113 break; |
1114 } | |
1115 } // switch(file_format) | |
1116 | |
442 | 1117 //if(verbose) printf("file successfully opened (has_audio=%d)\n",has_audio); |
1 | 1118 |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1119 if(sh_video) |
398 | 1120 printf("[V] filefmt:%d fourcc:0x%X size:%dx%d fps:%5.2f ftime:=%6.4f\n", |
1183 | 1121 file_format,sh_video->format, sh_video->disp_w,sh_video->disp_h, |
398 | 1122 sh_video->fps,sh_video->frametime |
1123 ); | |
1124 | |
1 | 1125 fflush(stdout); |
1126 | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1127 if(!sh_video){ |
1217 | 1128 fprintf(stderr,"Sorry, no video stream... it's unplayable yet\n"); |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1129 exit(1); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1130 } |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1131 |
303 | 1132 //================== Init AUDIO (codec) ========================== |
1133 if(has_audio){ | |
1134 // Go through the codec.conf and find the best codec... | |
626 | 1135 sh_audio->codec=NULL; |
1136 while(1){ | |
1137 sh_audio->codec=find_codec(sh_audio->format,NULL,sh_audio->codec,1); | |
1138 if(!sh_audio->codec){ | |
1139 printf("Can't find codec for audio format 0x%X !\n",sh_audio->format); | |
919 | 1140 printf("*** Try to upgrade %s from DOCS/codecs.conf\n",get_path("codecs.conf")); |
1141 printf("*** If it's still not OK, then read DOCS/CODECS!\n"); | |
626 | 1142 has_audio=0; |
1143 break; | |
1144 } | |
1145 if(audio_format>0 && sh_audio->codec->driver!=audio_format) continue; | |
340 | 1146 printf("Found audio codec: [%s] drv:%d (%s)\n",sh_audio->codec->name,sh_audio->codec->driver,sh_audio->codec->info); |
442 | 1147 //has_audio=sh_audio->codec->driver; |
626 | 1148 break; |
303 | 1149 } |
1 | 1150 } |
1151 | |
303 | 1152 if(has_audio){ |
1153 if(verbose) printf("Initializing audio codec...\n"); | |
442 | 1154 if(!init_audio(sh_audio)){ |
303 | 1155 printf("Couldn't initialize audio codec! -> nosound\n"); |
442 | 1156 has_audio=0; |
303 | 1157 } else { |
758 | 1158 printf("AUDIO: srate=%d chans=%d bps=%d sfmt=0x%X ratio: %d->%d\n",sh_audio->samplerate,sh_audio->channels,sh_audio->samplesize, |
1159 sh_audio->sample_format,sh_audio->i_bps,sh_audio->o_bps); | |
303 | 1160 } |
175 | 1161 } |
1162 | |
303 | 1163 //================== Init VIDEO (codec & libvo) ========================== |
1164 | |
1165 // Go through the codec.conf and find the best codec... | |
626 | 1166 sh_video->codec=NULL; |
1167 while(1){ | |
1168 sh_video->codec=find_codec(sh_video->format, | |
1169 sh_video->bih?((unsigned int*) &sh_video->bih->biCompression):NULL,sh_video->codec,0); | |
1170 if(!sh_video->codec){ | |
303 | 1171 printf("Can't find codec for video format 0x%X !\n",sh_video->format); |
919 | 1172 printf("*** Try to upgrade %s from DOCS/codecs.conf\n",get_path("codecs.conf")); |
1173 printf("*** If it's still not OK, then read DOCS/CODECS!\n"); | |
723 | 1174 #ifdef HAVE_GUI |
1175 if ( !nogui ) | |
1176 { | |
1177 mplShMem->items.videodata.format=sh_video->format; | |
1178 mplSendMessage( mplCantFindCodecForVideoFormat ); | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1179 usec_sleep( 10000 ); |
723 | 1180 } |
1181 #endif | |
303 | 1182 exit(1); |
626 | 1183 } |
1184 if(!allow_dshow && sh_video->codec->driver==4) continue; // skip DShow | |
1185 break; | |
303 | 1186 } |
442 | 1187 //has_video=sh_video->codec->driver; |
303 | 1188 |
340 | 1189 printf("Found video codec: [%s] drv:%d (%s)\n",sh_video->codec->name,sh_video->codec->driver,sh_video->codec->info); |
303 | 1190 |
1191 for(i=0;i<CODECS_MAX_OUTFMT;i++){ | |
487 | 1192 int ret; |
303 | 1193 out_fmt=sh_video->codec->outfmt[i]; |
534
2a45d5adcc88
do not query vo drivers for format 0xFFFFFFFF (thanx to szabi)
arpi_esp
parents:
510
diff
changeset
|
1194 if(out_fmt==0xFFFFFFFF) continue; |
487 | 1195 ret=video_out->query_format(out_fmt); |
1183 | 1196 if(verbose) printf("vo_debug: query(%s) returned 0x%X\n",vo_format_name(out_fmt),ret); |
487 | 1197 if(ret) break; |
303 | 1198 } |
1199 if(i>=CODECS_MAX_OUTFMT){ | |
1217 | 1200 fprintf(stderr,"Sorry, selected video_out device is incompatible with this codec.\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1201 GUI_MSG( mplIncompatibleVideoOutDevice ) |
303 | 1202 exit(1); |
1203 } | |
1204 sh_video->outfmtidx=i; | |
1205 | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1206 if(flip==-1){ |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1207 // autodetect flipping |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1208 flip=0; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1209 if(sh_video->codec->outflags[i]&CODECS_FLAG_FLIP) |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1210 if(!(sh_video->codec->outflags[i]&CODECS_FLAG_NOFLIP)) |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1211 flip=1; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1212 } |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1213 |
1183 | 1214 if(verbose) printf("vo_debug1: out_fmt=%s\n",vo_format_name(out_fmt)); |
487 | 1215 |
442 | 1216 switch(sh_video->codec->driver){ |
175 | 1217 case 2: { |
723 | 1218 if(!init_video_codec(sh_video)) { |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1219 GUI_MSG( mplUnknowError ) |
723 | 1220 exit(1); |
1221 } | |
1 | 1222 if(verbose) printf("INFO: Win32 video codec init OK!\n"); |
1223 break; | |
1224 } | |
175 | 1225 case 4: { // Win32/DirectShow |
303 | 1226 #ifndef USE_DIRECTSHOW |
1217 | 1227 fprintf(stderr,"MPlayer was compiled WITHOUT directshow support!\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1228 GUI_MSG( mplCompileWithoutDSSupport ) |
303 | 1229 exit(1); |
1230 #else | |
291 | 1231 sh_video->our_out_buffer=NULL; |
442 | 1232 if(DS_VideoDecoder_Open(sh_video->codec->dll,&sh_video->codec->guid, sh_video->bih, 0, &sh_video->our_out_buffer)){ |
715 | 1233 // if(DS_VideoDecoder_Open(sh_video->codec->dll,&sh_video->codec->guid, sh_video->bih, 0, NULL)){ |
303 | 1234 printf("ERROR: Couldn't open required DirectShow codec: %s\n",sh_video->codec->dll); |
273 | 1235 printf("Maybe you forget to upgrade your win32 codecs?? It's time to download the new\n"); |
1236 printf("package from: ftp://thot.banki.hu/esp-team/linux/MPlayer/w32codec.zip !\n"); | |
1237 printf("Or you should disable DShow support: make distclean;make -f Makefile.No-DS\n"); | |
723 | 1238 #ifdef HAVE_GUI |
1239 if ( !nogui ) | |
1240 { | |
1241 strcpy( mplShMem->items.videodata.codecdll,sh_video->codec->dll ); | |
1242 mplSendMessage( mplDSCodecNotFound ); | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1243 usec_sleep( 10000 ); |
723 | 1244 } |
1245 #endif | |
273 | 1246 exit(1); |
1247 } | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1248 |
470 | 1249 switch(out_fmt){ |
1250 case IMGFMT_YUY2: | |
1251 case IMGFMT_UYVY: | |
1252 DS_VideoDecoder_SetDestFmt(16,out_fmt);break; // packed YUV | |
1253 case IMGFMT_YV12: | |
1254 case IMGFMT_I420: | |
1255 case IMGFMT_IYUV: | |
1256 DS_VideoDecoder_SetDestFmt(12,out_fmt);break; // planar YUV | |
1257 default: | |
1258 DS_VideoDecoder_SetDestFmt(out_fmt&255,0); // RGB/BGR | |
1259 } | |
175 | 1260 |
1261 DS_VideoDecoder_Start(); | |
1262 | |
1263 printf("DivX setting result = %d\n", DS_SetAttr_DivX("Quality",divx_quality) ); | |
1264 // printf("DivX setting result = %d\n", DS_SetValue_DivX("Brightness",60) ); | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1265 |
175 | 1266 if(verbose) printf("INFO: Win32/DShow video codec init OK!\n"); |
1267 break; | |
374 | 1268 #endif |
175 | 1269 } |
1 | 1270 case 3: { // OpenDivX |
1271 if(verbose) printf("OpenDivX video codec\n"); | |
1272 { DEC_PARAM dec_param; | |
1273 DEC_SET dec_set; | |
851 | 1274 #ifdef NEW_DECORE |
1275 DEC_MEM_REQS dec_mem; | |
855 | 1276 dec_param.output_format=DEC_USER; |
1277 #else | |
1278 dec_param.color_depth = 32; | |
1279 #endif | |
442 | 1280 dec_param.x_dim = sh_video->bih->biWidth; |
1281 dec_param.y_dim = sh_video->bih->biHeight; | |
851 | 1282 #ifdef NEW_DECORE |
855 | 1283 // 0.50-CVS new malloc scheme |
795
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1284 decore(0x123, DEC_OPT_MEMORY_REQS, &dec_param, &dec_mem); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1285 dec_param.buffers.mp4_edged_ref_buffers=malloc(dec_mem.mp4_edged_ref_buffers_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1286 dec_param.buffers.mp4_edged_for_buffers=malloc(dec_mem.mp4_edged_for_buffers_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1287 dec_param.buffers.mp4_display_buffers=malloc(dec_mem.mp4_display_buffers_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1288 dec_param.buffers.mp4_state=malloc(dec_mem.mp4_state_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1289 dec_param.buffers.mp4_tables=malloc(dec_mem.mp4_tables_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1290 dec_param.buffers.mp4_stream=malloc(dec_mem.mp4_stream_size); |
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1291 #endif |
442 | 1292 decore(0x123, DEC_OPT_INIT, &dec_param, NULL); |
855 | 1293 |
442 | 1294 dec_set.postproc_level = divx_quality; |
1295 decore(0x123, DEC_OPT_SETPP, &dec_set, NULL); | |
795
ec3accad050c
opendivx 0.50cvs stuff added (disabled by default)
arpi_esp
parents:
792
diff
changeset
|
1296 |
1 | 1297 } |
1298 if(verbose) printf("INFO: OpenDivX video codec init OK!\n"); | |
1299 break; | |
1300 } | |
1248 | 1301 case 5: { // FFmpeg's libavcodec |
1302 #ifndef USE_LIBAVCODEC | |
1303 fprintf(stderr,"MPlayer was compiled WITHOUT libavcodec support!\n"); | |
1304 exit(1); | |
1305 #else | |
1306 if(verbose) printf("FFmpeg's libavcodec video codec\n"); | |
1307 avcodec_init(); | |
1308 avcodec_register_all(); | |
1309 lavc_codec = avcodec_find_decoder_by_name(sh_video->codec->dll); | |
1310 if(!lavc_codec){ | |
1311 fprintf(stderr,"Can't find codec '%s' in libavcodec...\n",sh_video->codec->dll); | |
1312 exit(1); | |
1313 } | |
1314 memset(&lavc_context, 0, sizeof(lavc_context)); | |
1315 lavc_context.width=sh_video->disp_w; | |
1316 lavc_context.height=sh_video->disp_h; | |
1317 printf("libavcodec.size: %d x %d\n",lavc_context.width,lavc_context.height); | |
1318 /* open it */ | |
1319 if (avcodec_open(&lavc_context, lavc_codec) < 0) { | |
1320 fprintf(stderr, "could not open codec\n"); | |
1321 exit(1); | |
1322 } | |
1323 | |
1324 if(verbose) printf("INFO: libavcodec init OK!\n"); | |
1325 break; | |
1326 #endif | |
1327 } | |
1328 | |
1 | 1329 case 1: { |
1330 // init libmpeg2: | |
41 | 1331 #ifdef MPEG12_POSTPROC |
1 | 1332 picture->pp_options=divx_quality; |
41 | 1333 #else |
1334 if(divx_quality){ | |
1335 printf("WARNING! You requested image postprocessing for an MPEG 1/2 video,\n"); | |
1336 printf(" but compiled MPlayer without MPEG 1/2 postprocessing support!\n"); | |
1337 printf(" #define MPEG12_POSTPROC in config.h, and recompile libmpeg2!\n"); | |
1338 } | |
1339 #endif | |
375 | 1340 mpeg2_allocate_image_buffers (picture); |
1 | 1341 break; |
1342 } | |
1343 } | |
1344 | |
1183 | 1345 if(verbose) printf("vo_debug2: out_fmt=%s\n",vo_format_name(out_fmt)); |
487 | 1346 |
1 | 1347 // ================== Init output files for encoding =============== |
1348 if(encode_name){ | |
1349 // encode file!!! | |
1350 FILE *encode_file=fopen(encode_name,"rb"); | |
1351 if(encode_file){ | |
1352 fclose(encode_file); | |
1217 | 1353 fprintf(stderr,"File already exists: %s (don't overwrite your favourite AVI!)\n",encode_name); |
1 | 1354 return 0; |
1355 } | |
1356 encode_file=fopen(encode_name,"wb"); | |
1357 if(!encode_file){ | |
1217 | 1358 fprintf(stderr,"Cannot create file for encoding\n"); |
1 | 1359 return 0; |
1360 } | |
398 | 1361 write_avi_header_1(encode_file,mmioFOURCC('d', 'i', 'v', 'x'),sh_video->fps,sh_video->disp_w,sh_video->disp_h); |
1 | 1362 fclose(encode_file); |
1363 encode_index_name=malloc(strlen(encode_name)+8); | |
1364 strcpy(encode_index_name,encode_name); | |
1365 strcat(encode_index_name,".index"); | |
1366 if((encode_file=fopen(encode_index_name,"wb"))) | |
1367 fclose(encode_file); | |
1368 else encode_index_name=NULL; | |
1369 has_audio=0; // disable audio !!!!! | |
1370 } | |
1371 | |
1372 // ========== Init keyboard FIFO (connection to libvo) ============ | |
1373 | |
1374 make_pipe(&keyb_fifo_get,&keyb_fifo_put); | |
1375 | |
398 | 1376 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============ |
1 | 1377 |
1378 #ifdef X11_FULLSCREEN | |
1379 if(fullscreen){ | |
1380 if(vo_init()){ | |
1381 //if(verbose) printf("X11 running at %dx%d depth: %d\n",vo_screenwidth,vo_screenheight,vo_depthonscreen); | |
1382 } | |
1383 if(!screen_size_xy) screen_size_xy=vo_screenwidth; // scale with asp.ratio | |
1384 } | |
1385 #endif | |
1386 | |
1387 if(screen_size_xy>0){ | |
1388 if(screen_size_xy<=8){ | |
398 | 1389 screen_size_x=screen_size_xy*sh_video->disp_w; |
1390 screen_size_y=screen_size_xy*sh_video->disp_h; | |
1 | 1391 } else { |
1392 screen_size_x=screen_size_xy; | |
398 | 1393 screen_size_y=screen_size_xy*sh_video->disp_h/sh_video->disp_w; |
1 | 1394 } |
337 | 1395 } else if(!vidmode){ |
1396 if(!screen_size_x) screen_size_x=SCREEN_SIZE_X; | |
1397 if(!screen_size_y) screen_size_y=SCREEN_SIZE_Y; | |
398 | 1398 if(screen_size_x<=8) screen_size_x*=sh_video->disp_w; |
1399 if(screen_size_y<=8) screen_size_y*=sh_video->disp_h; | |
1 | 1400 } |
208
ae0f909ccc7c
Adds code to deal with vidmode selection. -- mgraffam
mgraffam
parents:
190
diff
changeset
|
1401 |
340 | 1402 { const vo_info_t *info = video_out->get_info(); |
1183 | 1403 printf("VO: [%s] %dx%d => %dx%d %s %s%s%s%s\n",info->short_name, |
398 | 1404 sh_video->disp_w,sh_video->disp_h, |
340 | 1405 screen_size_x,screen_size_y, |
1183 | 1406 vo_format_name(out_fmt), |
340 | 1407 fullscreen?"fs ":"", |
1408 vidmode?"vm ":"", | |
766 | 1409 softzoom?"zoom ":"", |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1410 (flip==1)?"flip ":"" |
766 | 1411 // fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3) |
340 | 1412 ); |
1237 | 1413 printf("VO: Description: %s\n" |
1414 "VO: Author: %s\n", | |
1415 info->name, | |
1416 info->author | |
1417 ); | |
1418 if(strlen(info->comment) > 0) | |
1419 printf("VO: Comment: %s\n", info->comment); | |
340 | 1420 } |
1421 | |
1422 // if(verbose) printf("Destination size: %d x %d out_fmt=%0X\n", | |
1423 // screen_size_x,screen_size_y,out_fmt); | |
1 | 1424 |
337 | 1425 if(verbose) printf("video_out->init(%dx%d->%dx%d,flags=%d,'%s',0x%X)\n", |
398 | 1426 sh_video->disp_w,sh_video->disp_h, |
1 | 1427 screen_size_x,screen_size_y, |
766 | 1428 fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3), |
337 | 1429 title,out_fmt); |
1 | 1430 |
1183 | 1431 if(verbose) printf("vo_debug3: out_fmt=%s\n",vo_format_name(out_fmt)); |
487 | 1432 |
723 | 1433 #ifdef HAVE_GUI |
1434 if ( !nogui ) | |
1435 { | |
1436 mplShMem->items.videodata.width=sh_video->disp_w; | |
1437 mplShMem->items.videodata.height=sh_video->disp_h; | |
1438 mplSendMessage( mplSetVideoData ); | |
1439 } | |
1440 #endif | |
1441 | |
398 | 1442 if(video_out->init(sh_video->disp_w,sh_video->disp_h, |
1 | 1443 screen_size_x,screen_size_y, |
766 | 1444 fullscreen|(vidmode<<1)|(softzoom<<2)|(flip<<3), |
337 | 1445 title,out_fmt)){ |
1217 | 1446 fprintf(stderr,"FATAL: Cannot initialize video driver!\n"); |
748
717e4677d9ce
stime compile bug fixed. and GUI_MSG macro defined.
pontscho
parents:
746
diff
changeset
|
1447 GUI_MSG( mplCantInitVideoDriver ) |
723 | 1448 exit(1); |
1 | 1449 } |
1450 if(verbose) printf("INFO: Video OUT driver init OK!\n"); | |
1451 | |
1452 fflush(stdout); | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1453 |
1 | 1454 //================== MAIN: ========================== |
1455 { | |
955 | 1456 //float audio_buffer_delay=0; |
746 | 1457 |
1458 //float buffer_delay=0; | |
1 | 1459 float frame_correction=0; // A-V timestamp kulonbseg atlagolas |
1460 int frame_corr_num=0; // | |
1461 float v_frame=0; // Video | |
1462 float time_frame=0; // Timer | |
1463 float c_total=0; | |
780 | 1464 float max_pts_correction=0;//default_max_pts_correction; |
1 | 1465 int eof=0; |
1466 int force_redraw=0; | |
1467 float num_frames=0; // number of frames played | |
36 | 1468 int grab_frames=0; |
212 | 1469 char osd_text_buffer[64]; |
715 | 1470 int drop_frame=0; |
1471 int drop_frame_cnt=0; | |
1 | 1472 |
1473 #ifdef HAVE_LIRC | |
723 | 1474 #ifdef HAVE_GUI |
1475 if ( nogui ) | |
1476 #endif | |
1 | 1477 lirc_mp_setup(); |
1478 #endif | |
1479 | |
1005 | 1480 #ifdef HAVE_GUI |
1481 if ( nogui ) | |
1482 { | |
1483 #endif | |
1 | 1484 #ifdef USE_TERMCAP |
1485 load_termcap(NULL); // load key-codes | |
1486 #endif | |
692 | 1487 if(f) getch2_enable(); |
1005 | 1488 #ifdef HAVE_GUI |
1489 } | |
1490 #endif | |
1 | 1491 |
1492 //========= Catch terminate signals: ================ | |
1493 // terminate requests: | |
1494 signal(SIGTERM,exit_sighandler); // kill | |
1495 signal(SIGHUP,exit_sighandler); // kill -HUP / xterm closed | |
723 | 1496 |
1497 #ifdef HAVE_GUI | |
1498 if ( nogui ) | |
1499 #endif | |
1500 signal(SIGINT,exit_sighandler); // Interrupt from keyboard | |
1501 | |
1 | 1502 signal(SIGQUIT,exit_sighandler); // Quit from keyboard |
1503 // fatal errors: | |
1504 signal(SIGBUS,exit_sighandler); // bus error | |
1505 signal(SIGSEGV,exit_sighandler); // segfault | |
1506 signal(SIGILL,exit_sighandler); // illegal instruction | |
1507 signal(SIGFPE,exit_sighandler); // floating point exc. | |
1508 signal(SIGABRT,exit_sighandler); // abort() | |
1509 | |
1510 //================ SETUP AUDIO ========================== | |
1511 current_module="setup_audio"; | |
1512 | |
1513 if(has_audio){ | |
1237 | 1514 |
1515 const ao_info_t *info=audio_out->info; | |
1516 printf("AO: [%s] %iHz %s %s\n" | |
1517 "AO: Description: %s\n" | |
1518 "AO: Author: %s\n", | |
1519 info->short_name, | |
1520 force_srate?force_srate:sh_audio->samplerate, | |
1521 sh_audio->channels>1?"Stereo":"Mono", | |
1522 audio_out_format_name(sh_audio->sample_format), | |
1523 info->name, | |
1524 info->author | |
1525 ); | |
1526 if(strlen(info->comment) > 0) | |
1527 printf("AO: Comment: %s\n", info->comment); | |
955 | 1528 |
969 | 1529 if(!audio_out->init(force_srate?force_srate:sh_audio->samplerate, |
1530 sh_audio->channels,sh_audio->sample_format,0)){ | |
955 | 1531 printf("couldn't open/init audio device -> NOSOUND\n"); |
1 | 1532 has_audio=0; |
1533 } | |
1534 | |
955 | 1535 // printf("Audio buffer size: %d bytes, delay: %5.3fs\n",audio_buffer_size,audio_buffer_delay); |
746 | 1536 |
758 | 1537 // fixup audio buffer size: |
782 | 1538 // if(outburst<MAX_OUTBURST){ |
1539 // sh_audio->a_buffer_size=sh_audio->audio_out_minsize+outburst; | |
1540 // printf("Audio out buffer size reduced to %d bytes\n",sh_audio->a_buffer_size); | |
1541 // } | |
758 | 1542 |
746 | 1543 // a_frame=-(audio_buffer_delay); |
1 | 1544 } |
1545 | |
955 | 1546 a_frame=0; |
1 | 1547 |
340 | 1548 if(!has_audio){ |
1 | 1549 printf("Audio: no sound\n"); |
1550 if(verbose) printf("Freeing %d unused audio chunks\n",d_audio->packs); | |
1551 ds_free_packs(d_audio); // free buffered chunks | |
1552 d_audio->id=-2; // do not read audio chunks | |
442 | 1553 if(sh_audio) if(sh_audio->a_buffer) free(sh_audio->a_buffer); |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
1554 //alsa=1; |
296 | 1555 // fake, required for timer: |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1556 #if 1 |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1557 sh_audio=NULL; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1558 #else |
442 | 1559 sh_audio=new_sh_audio(255); // FIXME!!!!!!!!!! |
296 | 1560 sh_audio->samplerate=76800; |
1561 sh_audio->samplesize=sh_audio->channels=2; | |
1562 sh_audio->o_bps=sh_audio->channels*sh_audio->samplerate*sh_audio->samplesize; | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1563 #endif |
1 | 1564 } |
1565 | |
1566 current_module=NULL; | |
1567 | |
1568 //==================== START PLAYING ======================= | |
1569 | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1570 if(file_format==DEMUXER_TYPE_AVI && has_audio){ |
780 | 1571 //a_pts=d_audio->pts; |
955 | 1572 printf("Initial frame delay A: %d V: %d\n",(int)sh_audio->audio.dwInitialFrames,(int)sh_video->video.dwInitialFrames); |
780 | 1573 if(!pts_from_bps){ |
1574 float x=(float)(sh_audio->audio.dwInitialFrames-sh_video->video.dwInitialFrames)*sh_video->frametime; | |
1575 audio_delay-=x; | |
1576 printf("AVI Initial frame delay: %5.3f\n",x); | |
1577 } | |
340 | 1578 if(verbose){ |
780 | 1579 // printf("v: audio_delay=%5.3f buffer_delay=%5.3f a_pts=%5.3f a_frame=%5.3f\n", |
1580 // audio_delay,audio_buffer_delay,a_pts,a_frame); | |
340 | 1581 printf("START: a_pts=%5.3f v_pts=%5.3f \n",d_audio->pts,d_video->pts); |
1582 } | |
1 | 1583 delay_corrected=0; // has to correct PTS diffs |
1584 d_video->pts=0;d_audio->pts=0; // PTS is outdated now! | |
780 | 1585 } else { |
1586 pts_from_bps=0; // it must be 0 for mpeg/asf ! | |
1 | 1587 } |
398 | 1588 if(force_fps){ |
1589 sh_video->fps=force_fps; | |
1590 sh_video->frametime=1.0f/sh_video->fps; | |
955 | 1591 printf("FPS forced to be %5.3f (ftime: %5.3f)\n",sh_video->fps,sh_video->frametime); |
398 | 1592 } |
1 | 1593 |
1594 printf("Start playing...\n");fflush(stdout); | |
1595 | |
1596 InitTimer(); | |
1597 | |
1124
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
1598 total_time_usage_start=GetTimer(); |
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
1599 |
1 | 1600 while(!eof){ |
1601 | |
1125 | 1602 if(play_n_frames>=0){ |
1603 --play_n_frames; | |
1604 if(play_n_frames<0) exit_player("Requested number of frames played"); | |
1605 } | |
1606 | |
1 | 1607 /*========================== PLAY AUDIO ============================*/ |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1608 //if(!has_audio){ |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1609 // int playsize=512; |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1610 // a_frame+=playsize/(float)(sh_audio->o_bps); |
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1611 // a_pts+=playsize/(float)(sh_audio->o_bps); |
746 | 1612 //time_frame+=playsize/(float)(sh_audio->o_bps); |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
1613 //} else |
1 | 1614 while(has_audio){ |
746 | 1615 unsigned int t; |
955 | 1616 int playsize=audio_out->get_space(); |
746 | 1617 |
955 | 1618 if(!playsize) break; // buffer is full, do not block here!!! |
746 | 1619 |
1620 if(playsize>MAX_OUTBURST) playsize=MAX_OUTBURST; // we shouldn't exceed it! | |
1621 //if(playsize>outburst) playsize=outburst; | |
291 | 1622 |
1623 // Update buffer if needed | |
746 | 1624 t=GetTimer(); |
1 | 1625 current_module="decode_audio"; // Enter AUDIO decoder module |
746 | 1626 while(sh_audio->a_buffer_len<playsize && !d_audio->eof){ |
1627 int ret=decode_audio(sh_audio,&sh_audio->a_buffer[sh_audio->a_buffer_len], | |
1628 playsize-sh_audio->a_buffer_len,sh_audio->a_buffer_size-sh_audio->a_buffer_len); | |
296 | 1629 if(ret>0) sh_audio->a_buffer_len+=ret; else break; |
1 | 1630 } |
1631 current_module=NULL; // Leave AUDIO decoder module | |
291 | 1632 t=GetTimer()-t;audio_time_usage+=t*0.000001; |
746 | 1633 |
1634 if(playsize>sh_audio->a_buffer_len) playsize=sh_audio->a_buffer_len; | |
1635 | |
955 | 1636 playsize=audio_out->play(sh_audio->a_buffer,playsize,0); |
1 | 1637 |
955 | 1638 if(playsize>0){ |
746 | 1639 sh_audio->a_buffer_len-=playsize; |
1640 memcpy(sh_audio->a_buffer,&sh_audio->a_buffer[playsize],sh_audio->a_buffer_len); | |
1641 a_frame+=playsize/(float)(sh_audio->o_bps); | |
1642 //a_pts+=playsize/(float)(sh_audio->o_bps); | |
1643 // time_frame+=playsize/(float)(sh_audio->o_bps); | |
1 | 1644 } |
1645 | |
1646 break; | |
1647 } // if(has_audio) | |
1648 | |
1649 /*========================== UPDATE TIMERS ============================*/ | |
746 | 1650 #if 0 |
1 | 1651 if(alsa){ |
1652 // Use system timer for sync, not audio card/driver | |
1653 time_frame-=GetRelativeTime(); | |
1654 if(time_frame<-0.1 || time_frame>0.1){ | |
1655 time_frame=0; | |
1656 } else { | |
398 | 1657 while(time_frame>0.022){ |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1658 usec_sleep(time_frame-0.022); |
398 | 1659 time_frame-=GetRelativeTime(); |
1660 } | |
103 | 1661 while(time_frame>0.007){ |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1662 usec_sleep(1000); // sleeps 1 clock tick (10ms)! |
103 | 1663 time_frame-=GetRelativeTime(); |
1664 } | |
398 | 1665 } |
1 | 1666 } |
746 | 1667 #endif |
1 | 1668 |
1669 /*========================== PLAY VIDEO ============================*/ | |
1670 | |
1671 if(1) | |
746 | 1672 while(1){ |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1673 |
398 | 1674 float frame_time=1; |
1675 float pts1=d_video->pts; | |
1250 | 1676 int blit_frame=1; |
1 | 1677 |
1678 current_module="decode_video"; | |
715 | 1679 |
746 | 1680 // if(!force_redraw && v_frame+0.1<a_frame) drop_frame=1; else drop_frame=0; |
798 | 1681 // if(drop_frame) ++drop_frame_cnt; |
1 | 1682 |
1683 //-------------------- Decode a frame: ----------------------- | |
442 | 1684 switch(sh_video->codec->driver){ |
1 | 1685 case 3: { |
1686 // OpenDivX | |
1687 unsigned int t=GetTimer(); | |
1688 unsigned int t2; | |
1689 DEC_FRAME dec_frame; | |
851 | 1690 #ifdef NEW_DECORE |
1691 DEC_PICTURE dec_pic; | |
1692 #endif | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
1693 unsigned char* start=NULL; |
1 | 1694 int in_size=ds_get_packet(d_video,&start); |
1695 if(in_size<0){ eof=1;break;} | |
1696 if(in_size>max_framesize) max_framesize=in_size; | |
1697 // let's decode | |
1698 dec_frame.length = in_size; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1699 dec_frame.bitstream = start; |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1700 dec_frame.render_flag = 1; |
851 | 1701 #ifdef NEW_DECORE |
1702 dec_frame.bmp=&dec_pic; | |
1703 dec_pic.y=dec_pic.u=dec_pic.v=NULL; | |
1704 #endif | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1705 decore(0x123, 0, &dec_frame, NULL); |
1 | 1706 t2=GetTimer();t=t2-t;video_time_usage+=t*0.000001f; |
1707 | |
851 | 1708 #ifdef NEW_DECORE |
1709 if(dec_pic.y){ | |
1710 void* src[3]; | |
1711 int stride[3]; | |
1712 src[0]=dec_pic.y; | |
1713 src[1]=dec_pic.u; | |
1714 src[2]=dec_pic.v; | |
1715 stride[0]=dec_pic.stride_y; | |
1716 stride[1]=stride[2]=dec_pic.stride_uv; | |
1717 video_out->draw_slice(src,stride, | |
1718 sh_video->disp_w,sh_video->disp_h,0,0); | |
1719 } | |
1720 #else | |
1 | 1721 if(opendivx_src[0]){ |
1722 video_out->draw_slice(opendivx_src,opendivx_stride, | |
398 | 1723 sh_video->disp_w,sh_video->disp_h,0,0); |
1 | 1724 opendivx_src[0]=NULL; |
1725 } | |
851 | 1726 #endif |
1 | 1727 t2=GetTimer()-t2;vout_time_usage+=t2*0.000001f; |
1728 | |
1729 break; | |
1730 } | |
175 | 1731 #ifdef USE_DIRECTSHOW |
1732 case 4: { // W32/DirectShow | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
1733 unsigned char* start=NULL; |
175 | 1734 unsigned int t=GetTimer(); |
1735 unsigned int t2; | |
1736 int in_size=ds_get_packet(d_video,&start); | |
1737 if(in_size<0){ eof=1;break;} | |
1738 if(in_size>max_framesize) max_framesize=in_size; | |
1739 | |
979 | 1740 if(d_video->flags) if(verbose) printf("***keyframe***\n"); |
1741 | |
798 | 1742 if(drop_frame<2) DS_VideoDecoder_DecodeFrame(start, in_size, 0, !drop_frame); |
470 | 1743 current_module="draw_frame"; |
1744 | |
721 | 1745 if(!drop_frame && sh_video->our_out_buffer){ |
175 | 1746 t2=GetTimer();t=t2-t;video_time_usage+=t*0.000001f; |
470 | 1747 if(out_fmt==IMGFMT_YV12||out_fmt==IMGFMT_IYUV||out_fmt==IMGFMT_I420){ |
1748 uint8_t* dst[3]; | |
1749 int stride[3]; | |
1750 stride[0]=sh_video->disp_w; | |
1751 stride[1]=stride[2]=sh_video->disp_w/2; | |
1752 dst[0]=sh_video->our_out_buffer; | |
1753 dst[2]=dst[0]+sh_video->disp_w*sh_video->disp_h; | |
1754 dst[1]=dst[2]+sh_video->disp_w*sh_video->disp_h/4; | |
1755 video_out->draw_slice(dst,stride,sh_video->disp_w,sh_video->disp_h,0,0); | |
1756 } else | |
291 | 1757 video_out->draw_frame((uint8_t **)&sh_video->our_out_buffer); |
175 | 1758 t2=GetTimer()-t2;vout_time_usage+=t2*0.000001f; |
715 | 1759 } |
175 | 1760 break; |
1761 } | |
1762 #endif | |
1248 | 1763 #ifdef USE_LIBAVCODEC |
1764 case 5: { // libavcodec | |
1765 unsigned char* start=NULL; | |
1766 unsigned int t=GetTimer(); | |
1767 unsigned int t2; | |
1768 int got_picture=0; | |
1769 int in_size=ds_get_packet(d_video,&start); | |
1770 if(in_size<0){ eof=1;break;} | |
1771 if(in_size>max_framesize) max_framesize=in_size; | |
1772 | |
1773 if(d_video->flags) if(verbose) printf("***keyframe***\n"); | |
1774 | |
1250 | 1775 if(in_size<=0) blit_frame=0; else |
1248 | 1776 if(drop_frame<2){ |
1777 int ret = avcodec_decode_video(&lavc_context, &lavc_picture, | |
1778 &got_picture, start, in_size); | |
1779 if(ret<0) fprintf(stderr, "Error while decoding frame!\n"); | |
1780 } | |
1781 | |
1782 current_module="draw_frame"; | |
1783 | |
1784 if(!drop_frame && got_picture){ | |
1785 t2=GetTimer();t=t2-t;video_time_usage+=t*0.000001f; | |
1786 video_out->draw_slice(lavc_picture.data,lavc_picture.linesize,sh_video->disp_w,sh_video->disp_h,0,0); | |
1787 t2=GetTimer()-t2;vout_time_usage+=t2*0.000001f; | |
1788 } | |
1789 | |
1790 break; | |
1791 } | |
1792 #endif | |
1 | 1793 case 2: { |
1794 HRESULT ret; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
1795 unsigned char* start=NULL; |
1 | 1796 unsigned int t=GetTimer(); |
1797 unsigned int t2; | |
1798 int in_size=ds_get_packet(d_video,&start); | |
1799 if(in_size<0){ eof=1;break;} | |
1800 if(in_size>max_framesize) max_framesize=in_size; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1801 |
979 | 1802 if(d_video->flags) if(verbose) printf("***keyframe***\n"); |
1803 | |
442 | 1804 if(in_size){ |
1805 sh_video->bih->biSizeImage = in_size; | |
855 | 1806 |
856 | 1807 // sh_video->bih->biWidth = 1280; |
1808 // sh_video->o_bih.biWidth = 1280; | |
855 | 1809 // ret = ICDecompress(avi_header.hic, ICDECOMPRESS_NOTKEYFRAME|(ICDECOMPRESS_HURRYUP|ICDECOMPRESS_PREROL), |
980 | 1810 ret = ICDecompress(sh_video->hic, |
1811 ( (d_video->flags&1) ? 0 : ICDECOMPRESS_NOTKEYFRAME ) | | |
1812 ( (drop_frame==2 && !(d_video->flags&1))?(ICDECOMPRESS_HURRYUP|ICDECOMPRESS_PREROL):0 ) , | |
442 | 1813 sh_video->bih, start, |
715 | 1814 &sh_video->o_bih, |
1815 drop_frame ? 0 : sh_video->our_out_buffer); | |
1816 | |
606 | 1817 if(ret){ printf("Error decompressing frame, err=%d\n",(int)ret);break; } |
442 | 1818 } |
470 | 1819 current_module="draw_frame"; |
715 | 1820 if(!drop_frame){ |
1 | 1821 t2=GetTimer();t=t2-t;video_time_usage+=t*0.000001f; |
470 | 1822 // if(out_fmt==IMGFMT_YV12){ |
1823 if(out_fmt==IMGFMT_YV12||out_fmt==IMGFMT_IYUV||out_fmt==IMGFMT_I420){ | |
1824 uint8_t* dst[3]; | |
1825 int stride[3]; | |
1826 stride[0]=sh_video->disp_w; | |
1827 stride[1]=stride[2]=sh_video->disp_w/2; | |
1828 dst[0]=sh_video->our_out_buffer; | |
1829 dst[2]=dst[0]+sh_video->disp_w*sh_video->disp_h; | |
1830 dst[1]=dst[2]+sh_video->disp_w*sh_video->disp_h/4; | |
1831 video_out->draw_slice(dst,stride,sh_video->disp_w,sh_video->disp_h,0,0); | |
1832 } else | |
291 | 1833 video_out->draw_frame((uint8_t **)&sh_video->our_out_buffer); |
1 | 1834 t2=GetTimer()-t2;vout_time_usage+=t2*0.000001f; |
715 | 1835 } |
1 | 1836 break; |
1837 } | |
1838 case 1: { | |
111 | 1839 int in_frame=0; |
398 | 1840 int t=0; |
1841 float newfps; | |
111 | 1842 videobuf_len=0; |
1843 while(videobuf_len<VIDEOBUFFER_SIZE-MAX_VIDEO_PACKET_SIZE){ | |
1844 int i=sync_video_packet(d_video); | |
1845 if(in_frame){ | |
1846 if(i<0x101 || i>=0x1B0){ // not slice code -> end of frame | |
398 | 1847 #if 1 |
111 | 1848 // send END OF FRAME code: |
1849 videobuffer[videobuf_len+0]=0; | |
1850 videobuffer[videobuf_len+1]=0; | |
1851 videobuffer[videobuf_len+2]=1; | |
1852 videobuffer[videobuf_len+3]=0xFF; | |
1853 videobuf_len+=4; | |
1854 #endif | |
1855 if(!i) eof=1; // EOF | |
1856 break; | |
1857 } | |
1858 } else { | |
1859 //if(i==0x100) in_frame=1; // picture startcode | |
1860 if(i>=0x101 && i<0x1B0) in_frame=1; // picture startcode | |
1861 else if(!i){ eof=1; break;} // EOF | |
1862 } | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1863 if(grab_frames==2 && (i==0x1B3 || i==0x1B8)) grab_frames=1; |
111 | 1864 if(!read_video_packet(d_video)){ eof=1; break;} // EOF |
1865 //printf("read packet 0x%X, len=%d\n",i,videobuf_len); | |
1866 } | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1867 |
111 | 1868 if(videobuf_len>max_framesize) max_framesize=videobuf_len; // debug |
1869 //printf("--- SEND %d bytes\n",videobuf_len); | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1870 if(grab_frames==1){ |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1871 FILE *f=fopen("grab.mpg","ab"); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1872 fwrite(videobuffer,videobuf_len-4,1,f); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1873 fclose(f); |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1874 } |
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1875 |
398 | 1876 t-=GetTimer(); |
967 | 1877 mpeg2_decode_data(video_out, videobuffer, videobuffer+videobuf_len,drop_frame); |
398 | 1878 t+=GetTimer(); video_time_usage+=t*0.000001; |
111 | 1879 |
398 | 1880 newfps=frameratecode2framerate[picture->frame_rate_code]*0.0001f; |
442 | 1881 if(ABS(sh_video->fps-newfps)>0.01f) if(!force_fps){ |
398 | 1882 printf("Warning! FPS changed %5.3f -> %5.3f (%f) [%d] \n",sh_video->fps,newfps,sh_video->fps-newfps,picture->frame_rate_code); |
1883 sh_video->fps=newfps; | |
1884 sh_video->frametime=10000.0f/(float)frameratecode2framerate[picture->frame_rate_code]; | |
1 | 1885 } |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
1886 |
398 | 1887 frame_time=(100+picture->repeat_count)*0.01f; |
1888 picture->repeat_count=0; | |
1889 | |
1 | 1890 break; |
1891 } | |
1892 } // switch | |
1893 //------------------------ frame decoded. -------------------- | |
1894 | |
398 | 1895 // Increase video timers: |
1896 num_frames+=frame_time; | |
1897 frame_time*=sh_video->frametime; | |
442 | 1898 if(file_format==DEMUXER_TYPE_ASF && !force_fps){ |
398 | 1899 // .ASF files has no fixed FPS - just frame durations! |
1900 float d=d_video->pts-pts1; | |
1901 if(d>=0 && d<5) frame_time=d; | |
595 | 1902 if(d>0){ |
1903 if(verbose) | |
1904 if((int)sh_video->fps==1000) | |
1905 printf("\rASF framerate: %d fps \n",(int)(1.0f/d)); | |
1906 sh_video->frametime=d; // 1ms | |
1907 sh_video->fps=1.0f/d; | |
1908 } | |
398 | 1909 } |
1910 v_frame+=frame_time; | |
780 | 1911 //v_pts+=frame_time; |
746 | 1912 time_frame+=frame_time; // for nosound |
1913 | |
780 | 1914 if(file_format==DEMUXER_TYPE_MPEG_PS) d_video->pts+=frame_time; |
940 | 1915 |
1916 if(verbose>1) printf("*** ftime=%5.3f ***\n",frame_time); | |
780 | 1917 |
798 | 1918 if(drop_frame){ |
746 | 1919 |
798 | 1920 if(has_audio){ |
955 | 1921 int delay=audio_out->get_delay(); |
798 | 1922 if(verbose>1)printf("delay=%d\n",delay); |
1923 time_frame=v_frame; | |
1924 time_frame-=a_frame-(float)delay/(float)sh_audio->o_bps; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1925 if(time_frame>-2*frame_time) { |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1926 drop_frame=0; // stop dropping frames |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1927 if (verbose>0) printf("\nstop frame drop %.2f\n", time_frame); |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1928 }else{ |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1929 ++drop_frame_cnt; |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1930 if (verbose > 0 && drop_frame_cnt%10 == 0) |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1931 printf("\nstill dropping, %.2f\n", time_frame); |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1932 } |
798 | 1933 } |
1934 | |
1935 } else { | |
780 | 1936 // It's time to sleep... |
1937 current_module="sleep"; | |
1938 | |
1939 time_frame-=GetRelativeTime(); // reset timer | |
1940 | |
1941 if(has_audio){ | |
955 | 1942 int delay=audio_out->get_delay(); |
758 | 1943 if(verbose>1)printf("delay=%d\n",delay); |
746 | 1944 time_frame=v_frame; |
1945 time_frame-=a_frame-(float)delay/(float)sh_audio->o_bps; | |
798 | 1946 // we are out of time... drop next frame! |
940 | 1947 if(time_frame<-2*frame_time){ |
798 | 1948 drop_frame=frame_dropping; // tricky! |
1949 ++drop_frame_cnt; | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1950 if (verbose>0) printf("\nframe drop %d, %.2f\n", drop_frame, time_frame); |
798 | 1951 } |
780 | 1952 } else { |
1124
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
1953 if( (time_frame<-3*frame_time || time_frame>3*frame_time) || benchmark) |
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
1954 time_frame=0; |
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
1955 |
780 | 1956 } |
798 | 1957 |
758 | 1958 if(verbose>1)printf("sleep: %5.3f a:%6.3f v:%6.3f \n",time_frame,a_frame,v_frame); |
746 | 1959 |
1960 while(time_frame>0.005){ | |
1961 if(time_frame<=0.020) | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1962 usec_sleep(10000); // sleeps 1 clock tick (10ms)! |
746 | 1963 else |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1964 usec_sleep(1000000*(time_frame-0.002)); |
746 | 1965 time_frame-=GetRelativeTime(); |
1966 } | |
117 | 1967 |
715 | 1968 current_module="flip_page"; |
1250 | 1969 if(blit_frame) video_out->flip_page(); |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
1970 // usec_sleep(50000); // test only! |
780 | 1971 |
715 | 1972 } |
780 | 1973 |
1974 current_module=NULL; | |
715 | 1975 |
1 | 1976 if(eof) break; |
220 | 1977 if(force_redraw){ |
1978 --force_redraw; | |
577 | 1979 if(!force_redraw) osd_function=OSD_PLAY; |
746 | 1980 continue; |
220 | 1981 } |
1 | 1982 |
1983 // printf("A:%6.1f V:%6.1f A-V:%7.3f frame=%5.2f \r",d_audio->pts,d_video->pts,d_audio->pts-d_video->pts,a_frame); | |
1984 // fflush(stdout); | |
1985 | |
1986 #if 1 | |
1987 /*================ A-V TIMESTAMP CORRECTION: =========================*/ | |
1988 if(has_audio){ | |
780 | 1989 float a_pts=0; |
1990 float v_pts=0; | |
1991 | |
746 | 1992 // unplayed bytes in our and soundcard/dma buffer: |
955 | 1993 int delay_bytes=audio_out->get_delay()+sh_audio->a_buffer_len; |
746 | 1994 float delay=(float)delay_bytes/(float)sh_audio->o_bps; |
1995 | |
780 | 1996 if(pts_from_bps){ |
1997 // PTS = (audio position)/(bytes per sec) | |
815 | 1998 // a_pts=(ds_tell(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; |
1999 a_pts=(ds_tell(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->wf->nAvgBytesPerSec; | |
1 | 2000 delay_corrected=1; // hack |
889 | 2001 v_pts=d_video->pack_no*(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; |
2002 if(verbose)printf("%5.3f|",v_pts-d_video->pts); | |
780 | 2003 } else { |
2004 if(!delay_corrected && d_audio->pts){ | |
746 | 2005 float x=d_audio->pts-d_video->pts-(delay+audio_delay); |
2006 float y=-(delay+audio_delay); | |
1 | 2007 printf("Initial PTS delay: %5.3f sec (calculated: %5.3f)\n",x,y); |
933 | 2008 initial_pts_delay+=x; |
1 | 2009 audio_delay+=x; |
2010 delay_corrected=1; | |
340 | 2011 if(verbose) |
1 | 2012 printf("v: audio_delay=%5.3f buffer_delay=%5.3f a.pts=%5.3f v.pts=%5.3f\n", |
746 | 2013 audio_delay,delay,d_audio->pts,d_video->pts); |
1 | 2014 } |
780 | 2015 // PTS = (last timestamp) + (bytes after last timestamp)/(bytes per sec) |
746 | 2016 a_pts=d_audio->pts; |
2017 a_pts+=(ds_tell_pts(d_audio)-sh_audio->a_in_buffer_len)/(float)sh_audio->i_bps; | |
889 | 2018 v_pts=d_video->pts-frame_time; |
780 | 2019 } |
746 | 2020 |
933 | 2021 if(verbose>1)printf("### A:%8.3f (%8.3f) V:%8.3f A-V:%7.4f \n",a_pts,a_pts-audio_delay-delay,v_pts,(a_pts-delay-audio_delay)-v_pts); |
780 | 2022 |
2023 if(frame_corr_num==1){ | |
2024 float x=frame_correction; | |
398 | 2025 if(delay_corrected){ |
746 | 2026 // printf("A:%6.1f V:%6.1f A-V:%7.3f",a_pts-audio_delay-delay,v_pts,x); |
2027 printf("A:%6.1f (%6.1f) V:%6.1f A-V:%7.3f",a_pts,a_pts-audio_delay-delay,v_pts,x); | |
780 | 2028 x*=0.1f; |
1 | 2029 if(x<-max_pts_correction) x=-max_pts_correction; else |
2030 if(x> max_pts_correction) x= max_pts_correction; | |
780 | 2031 if(default_max_pts_correction>=0) |
2032 max_pts_correction=default_max_pts_correction; | |
2033 else | |
2034 max_pts_correction=sh_video->frametime*0.10; // +-10% of time | |
1 | 2035 a_frame+=x; c_total+=x; |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
2036 printf(" ct:%7.3f %3d %2d%% %2d%% %4.1f%% %d\r",c_total, |
1 | 2037 (int)num_frames, |
2038 (v_frame>0.5)?(int)(100.0*video_time_usage/(double)v_frame):0, | |
2039 (v_frame>0.5)?(int)(100.0*vout_time_usage/(double)v_frame):0, | |
442 | 2040 (v_frame>0.5)?(100.0*audio_time_usage/(double)v_frame):0 |
798 | 2041 ,drop_frame_cnt |
1 | 2042 ); |
2043 fflush(stdout); | |
2044 } | |
2045 frame_corr_num=0; frame_correction=0; | |
2046 } | |
780 | 2047 |
746 | 2048 if(frame_corr_num>=0) frame_correction+=(a_pts-delay-audio_delay)-v_pts; |
780 | 2049 |
1 | 2050 } else { |
2051 // No audio: | |
780 | 2052 //if(d_video->pts) |
955 | 2053 float v_pts=d_video->pts; |
1 | 2054 if(frame_corr_num==5){ |
2055 // printf("A: --- V:%6.1f \r",v_pts); | |
442 | 2056 printf("V:%6.1f %3d %2d%% %2d%% %3.1f%% \r",v_pts, |
1 | 2057 (int)num_frames, |
2058 (v_frame>0.5)?(int)(100.0*video_time_usage/(double)v_frame):0, | |
2059 (v_frame>0.5)?(int)(100.0*vout_time_usage/(double)v_frame):0, | |
442 | 2060 (v_frame>0.5)?(100.0*audio_time_usage/(double)v_frame):0 |
2061 ); | |
1 | 2062 |
2063 fflush(stdout); | |
2064 frame_corr_num=0; | |
2065 } | |
2066 } | |
2067 ++frame_corr_num; | |
2068 #endif | |
2069 | |
220 | 2070 if(osd_visible){ |
2071 --osd_visible; | |
2072 if(!osd_visible) vo_osd_progbar_type=-1; // disable | |
2073 } | |
371 | 2074 |
2075 if(osd_function==OSD_PAUSE){ | |
2076 printf("\n------ PAUSED -------\r");fflush(stdout); | |
1156 | 2077 if (audio_out && has_audio) |
2078 audio_out->pause(); // pause audio, keep data if possible | |
723 | 2079 #ifdef HAVE_GUI |
2080 if ( nogui ) | |
2081 { | |
2082 #endif | |
2083 while( | |
371 | 2084 #ifdef HAVE_LIRC |
723 | 2085 lirc_mp_getinput()<=0 && |
371 | 2086 #endif |
723 | 2087 (!f || getch2(20)<=0) && mplayer_get_key()<=0){ |
2088 video_out->check_events(); | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
2089 if(!f) usec_sleep(1000); // do not eat the CPU |
723 | 2090 } |
2091 osd_function=OSD_PLAY; | |
2092 #ifdef HAVE_GUI | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
2093 } else while( osd_function != OSD_PLAY ) usec_sleep( 1000 ); |
723 | 2094 #endif |
1156 | 2095 if (audio_out && has_audio) |
2096 audio_out->resume(); // resume audio | |
371 | 2097 } |
2098 | |
746 | 2099 |
2100 if(!force_redraw) break; | |
1 | 2101 } // while(v_frame<a_frame || force_redraw) |
2102 | |
2103 | |
2104 //================= Keyboard events, SEEKing ==================== | |
2105 | |
723 | 2106 { int c; |
1 | 2107 while( |
2108 #ifdef HAVE_LIRC | |
2109 (c=lirc_mp_getinput())>0 || | |
2110 #endif | |
701 | 2111 (f && (c=getch2(0))>0) || (c=mplayer_get_key())>0) switch(c){ |
1 | 2112 // seek 10 sec |
2113 case KEY_RIGHT: | |
220 | 2114 osd_function=OSD_FFW; |
1 | 2115 rel_seek_secs+=10;break; |
2116 case KEY_LEFT: | |
220 | 2117 osd_function=OSD_REW; |
1 | 2118 rel_seek_secs-=10;break; |
2119 // seek 1 min | |
2120 case KEY_UP: | |
220 | 2121 osd_function=OSD_FFW; |
1 | 2122 rel_seek_secs+=60;break; |
2123 case KEY_DOWN: | |
220 | 2124 osd_function=OSD_REW; |
1 | 2125 rel_seek_secs-=60;break; |
651 | 2126 // seek 10 min |
2127 case KEY_PAGE_UP: | |
2128 rel_seek_secs+=600;break; | |
2129 case KEY_PAGE_DOWN: | |
2130 rel_seek_secs-=600;break; | |
1 | 2131 // delay correction: |
2132 case '+': | |
746 | 2133 audio_delay+=0.1; // increase audio buffer delay |
1 | 2134 a_frame-=0.1; |
2135 break; | |
2136 case '-': | |
746 | 2137 audio_delay-=0.1; // decrease audio buffer delay |
1 | 2138 a_frame+=0.1; |
2139 break; | |
2140 // quit | |
2141 case KEY_ESC: // ESC | |
2142 case KEY_ENTER: // ESC | |
2143 case 'q': exit_player("Quit"); | |
36 | 2144 case 'g': grab_frames=2;break; |
1 | 2145 // pause |
2146 case 'p': | |
2147 case ' ': | |
220 | 2148 osd_function=OSD_PAUSE; |
371 | 2149 break; |
2150 case 'o': // toggle OSD | |
2151 osd_level=(osd_level+1)%3; | |
1 | 2152 break; |
939 | 2153 case 'z': |
2154 sub_delay -= 0.1; | |
2155 break; | |
2156 case 'x': | |
2157 sub_delay += 0.1; | |
2158 break; | |
459 | 2159 case '*': |
555 | 2160 case '/': { |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
2161 float mixer_l, mixer_r; |
555 | 2162 mixer_getvolume( &mixer_l,&mixer_r ); |
2163 if(c=='*'){ | |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
2164 mixer_l++; if ( mixer_l > 100 ) mixer_l = 100; |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
2165 mixer_r++; if ( mixer_r > 100 ) mixer_r = 100; |
555 | 2166 } else { |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
2167 mixer_l--; if ( mixer_l < 0 ) mixer_l = 0; |
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
2168 mixer_r--; if ( mixer_r < 0 ) mixer_r = 0; |
555 | 2169 } |
2170 mixer_setvolume( mixer_l,mixer_r ); | |
2171 | |
2172 if(osd_level){ | |
2173 osd_visible=sh_video->fps; // 1 sec | |
2174 vo_osd_progbar_type=OSD_VOLUME; | |
2175 vo_osd_progbar_value=(mixer_l+mixer_r)*5/4; | |
2176 //printf("volume: %d\n",vo_osd_progbar_value); | |
2177 } | |
2178 } | |
2179 break; | |
459 | 2180 case 'm': |
510 | 2181 mixer_usemaster=!mixer_usemaster; |
459 | 2182 break; |
715 | 2183 case 'd': |
798 | 2184 frame_dropping=(frame_dropping+1)%3; |
2185 printf("== drop: %d == \n",frame_dropping); | |
715 | 2186 break; |
1 | 2187 } |
651 | 2188 if (seek_to_sec) { |
937 | 2189 int a,b; float d; |
2190 | |
2191 if (sscanf(seek_to_sec, "%d:%d:%f", &a,&b,&d)==3) | |
2192 rel_seek_secs += 3600*a +60*b +d ; | |
2193 else if (sscanf(seek_to_sec, "%d:%f", &a, &d)==2) | |
2194 rel_seek_secs += 60*a +d; | |
2195 else if (sscanf(seek_to_sec, "%f", &d)==1) | |
2196 rel_seek_secs += d; | |
2197 | |
2198 seek_to_sec = NULL; | |
651 | 2199 } |
937 | 2200 |
1 | 2201 if(rel_seek_secs) |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2202 if(file_format==DEMUXER_TYPE_AVI && demuxer->idx_size<=0){ |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2203 printf("Can't seek in raw .AVI streams! (index required, try with the -idx switch!) \n"); |
1 | 2204 } else { |
2205 int skip_audio_bytes=0; | |
2206 float skip_audio_secs=0; | |
2207 | |
2208 // clear demux buffers: | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
2209 if(has_audio){ ds_free_packs(d_audio);sh_audio->a_buffer_len=0;} |
1 | 2210 ds_free_packs(d_video); |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2211 |
296 | 2212 // printf("sh_audio->a_buffer_len=%d \n",sh_audio->a_buffer_len); |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
2213 |
1 | 2214 |
2215 switch(file_format){ | |
2216 | |
2217 case DEMUXER_TYPE_AVI: { | |
2218 //================= seek in AVI ========================== | |
398 | 2219 int rel_seek_frames=rel_seek_secs*sh_video->fps; |
1 | 2220 int curr_audio_pos=0; |
2221 int audio_chunk_pos=-1; | |
2222 int video_chunk_pos=d_video->pos; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2223 |
940 | 2224 skip_video_frames=0; |
1 | 2225 avi_audio_pts=0; |
2226 | |
940 | 2227 // find nearest video keyframe chunk pos: |
1 | 2228 if(rel_seek_frames>0){ |
2229 // seek forward | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2230 while(video_chunk_pos<demuxer->idx_size){ |
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2231 int id=((AVIINDEXENTRY *)demuxer->idx)[video_chunk_pos].ckid; |
1 | 2232 if(avi_stream_id(id)==d_video->id){ // video frame |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2233 if((--rel_seek_frames)<0 && ((AVIINDEXENTRY *)demuxer->idx)[video_chunk_pos].dwFlags&AVIIF_KEYFRAME) break; |
1 | 2234 ++skip_audio_bytes; |
2235 } | |
2236 ++video_chunk_pos; | |
2237 } | |
2238 } else { | |
2239 // seek backward | |
2240 while(video_chunk_pos>=0){ | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2241 int id=((AVIINDEXENTRY *)demuxer->idx)[video_chunk_pos].ckid; |
1 | 2242 if(avi_stream_id(id)==d_video->id){ // video frame |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2243 if((++rel_seek_frames)>0 && ((AVIINDEXENTRY *)demuxer->idx)[video_chunk_pos].dwFlags&AVIIF_KEYFRAME) break; |
1 | 2244 --skip_audio_bytes; |
2245 } | |
2246 --video_chunk_pos; | |
2247 } | |
2248 } | |
889 | 2249 demuxer->idx_pos_a=demuxer->idx_pos_v=demuxer->idx_pos=video_chunk_pos; |
1 | 2250 // printf("%d frames skipped\n",skip_audio_bytes); |
2251 | |
2252 // re-calc video pts: | |
889 | 2253 d_video->pack_no=0; |
1 | 2254 for(i=0;i<video_chunk_pos;i++){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2255 int id=((AVIINDEXENTRY *)demuxer->idx)[i].ckid; |
889 | 2256 if(avi_stream_id(id)==d_video->id) ++d_video->pack_no; |
1 | 2257 } |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
2258 num_frames=d_video->pack_no; |
889 | 2259 avi_video_pts=d_video->pack_no*(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; |
2260 | |
1 | 2261 if(has_audio){ |
2262 int i; | |
2263 int apos=0; | |
2264 int last=0; | |
2265 int len=0; | |
2266 | |
2267 // calc new audio position in audio stream: (using avg.bps value) | |
442 | 2268 curr_audio_pos=(avi_video_pts) * sh_audio->wf->nAvgBytesPerSec; |
1 | 2269 if(curr_audio_pos<0)curr_audio_pos=0; |
2270 #if 1 | |
2271 curr_audio_pos&=~15; // requires for PCM formats!!! | |
2272 #else | |
442 | 2273 curr_audio_pos/=sh_audio->wf->nBlockAlign; |
2274 curr_audio_pos*=sh_audio->wf->nBlockAlign; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2275 demuxer->audio_seekable=1; |
1 | 2276 #endif |
2277 | |
2278 // find audio chunk pos: | |
2279 for(i=0;i<video_chunk_pos;i++){ | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2280 int id=((AVIINDEXENTRY *)demuxer->idx)[i].ckid; |
1 | 2281 if(avi_stream_id(id)==d_audio->id){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2282 len=((AVIINDEXENTRY *)demuxer->idx)[i].dwChunkLength; |
1 | 2283 last=i; |
2284 if(apos<=curr_audio_pos && curr_audio_pos<(apos+len)){ | |
2285 if(verbose)printf("break;\n"); | |
2286 break; | |
2287 } | |
2288 apos+=len; | |
2289 } | |
2290 } | |
2291 if(verbose)printf("XXX i=%d last=%d apos=%d curr_audio_pos=%d \n", | |
2292 i,last,apos,curr_audio_pos); | |
2293 // audio_chunk_pos=last; // maybe wrong (if not break; ) | |
2294 audio_chunk_pos=i; // maybe wrong (if not break; ) | |
2295 skip_audio_bytes=curr_audio_pos-apos; | |
2296 | |
2297 // update stream position: | |
2298 d_audio->pos=audio_chunk_pos; | |
2299 d_audio->dpos=apos; | |
933 | 2300 d_audio->pts=initial_pts_delay+(float)apos/(float)sh_audio->wf->nAvgBytesPerSec; |
889 | 2301 demuxer->idx_pos_a=demuxer->idx_pos_v=demuxer->idx_pos=audio_chunk_pos; |
1 | 2302 |
303 | 2303 if(!(sh_audio->codec->flags&CODECS_FLAG_SEEKABLE)){ |
1 | 2304 #if 0 |
2305 // curr_audio_pos=apos; // selected audio codec can't seek in chunk | |
442 | 2306 skip_audio_secs=(float)skip_audio_bytes/(float)sh_audio->wf->nAvgBytesPerSec; |
1 | 2307 //printf("Seek_AUDIO: %d bytes --> %5.3f secs\n",skip_audio_bytes,skip_audio_secs); |
2308 skip_audio_bytes=0; | |
2309 #else | |
442 | 2310 int d=skip_audio_bytes % sh_audio->wf->nBlockAlign; |
1 | 2311 skip_audio_bytes-=d; |
2312 // curr_audio_pos-=d; | |
442 | 2313 skip_audio_secs=(float)d/(float)sh_audio->wf->nAvgBytesPerSec; |
1 | 2314 //printf("Seek_AUDIO: %d bytes --> %5.3f secs\n",d,skip_audio_secs); |
2315 #endif | |
2316 } | |
2317 // now: audio_chunk_pos=pos in index | |
2318 // skip_audio_bytes=bytes to skip from that chunk | |
2319 // skip_audio_secs=time to play audio before video (if can't skip) | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2320 |
1 | 2321 // calc skip_video_frames & adjust video pts counter: |
2322 // i=last; | |
889 | 2323 for(i=demuxer->idx_pos;i<video_chunk_pos;i++){ |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2324 int id=((AVIINDEXENTRY *)demuxer->idx)[i].ckid; |
889 | 2325 if(avi_stream_id(id)==d_video->id) ++skip_video_frames; |
1 | 2326 } |
889 | 2327 // requires for correct audio pts calculation (demuxer): |
2328 avi_video_pts-=skip_video_frames*(float)sh_video->video.dwScale/(float)sh_video->video.dwRate; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2329 |
1 | 2330 } |
2331 | |
2332 if(verbose) printf("SEEK: idx=%d (a:%d v:%d) v.skip=%d a.skip=%d/%4.3f \n", | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2333 demuxer->idx_pos,audio_chunk_pos,video_chunk_pos, |
1 | 2334 skip_video_frames,skip_audio_bytes,skip_audio_secs); |
2335 | |
2336 } | |
2337 break; | |
2338 | |
2339 case DEMUXER_TYPE_ASF: { | |
2340 //================= seek in ASF ========================== | |
2341 float p_rate=10; // packets / sec | |
2342 int rel_seek_packs=rel_seek_secs*p_rate; | |
587
8511095c5283
stage#1 completed: c files no more included from mplayer.c
arpi_esp
parents:
578
diff
changeset
|
2343 int rel_seek_bytes=rel_seek_packs*asf_packetsize; |
1 | 2344 int newpos; |
2345 //printf("ASF: packs: %d duration: %d \n",(int)fileh.packets,*((int*)&fileh.duration)); | |
2346 // printf("ASF_seek: %d secs -> %d packs -> %d bytes \n", | |
2347 // rel_seek_secs,rel_seek_packs,rel_seek_bytes); | |
2348 newpos=demuxer->filepos+rel_seek_bytes; | |
638 | 2349 if(newpos<0 || newpos<demuxer->movi_start) newpos=demuxer->movi_start; |
645 | 2350 // printf("\r -- asf: newpos=%d -- \n",newpos); |
1 | 2351 stream_seek(demuxer->stream,newpos); |
1009 | 2352 |
2353 ds_fill_buffer(d_video); | |
2354 if(has_audio) ds_fill_buffer(d_audio); | |
2355 | |
2356 while(1){ | |
2357 if(has_audio){ | |
2358 // sync audio: | |
2359 if (d_video->pts > d_audio->pts){ | |
2360 if(!ds_fill_buffer(d_audio)) has_audio=0; // skip audio. EOF? | |
2361 continue; | |
2362 } | |
2363 } | |
2364 if(d_video->flags&1) break; // found a keyframe! | |
2365 if(!ds_fill_buffer(d_video)) break; // skip frame. EOF? | |
2366 } | |
2367 | |
1 | 2368 } |
2369 break; | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2370 |
1 | 2371 case DEMUXER_TYPE_MPEG_ES: |
2372 case DEMUXER_TYPE_MPEG_PS: { | |
2373 //================= seek in MPEG ========================== | |
2374 int newpos; | |
2375 if(picture->bitrate==0x3FFFF) // unspecified? | |
2376 newpos=demuxer->filepos+2324*75*rel_seek_secs; // 174.3 kbyte/sec | |
2377 else | |
2378 newpos=demuxer->filepos+(picture->bitrate*1000/16)*rel_seek_secs; | |
2379 | |
2380 if(newpos<seek_to_byte) newpos=seek_to_byte; | |
495
d4eb6bd44bbc
Seeking to sector boundary (STREAM_BUFFER_SIZE) for MPEGs
lgb
parents:
492
diff
changeset
|
2381 newpos&=~(STREAM_BUFFER_SIZE-1); /* sector boundary */ |
1 | 2382 stream_seek(demuxer->stream,newpos); |
2383 // re-sync video: | |
2384 videobuf_code_len=0; // reset ES stream buffer | |
2385 while(1){ | |
2386 int i=sync_video_packet(d_video); | |
2387 if(i==0x1B3 || i==0x1B8) break; // found it! | |
2388 if(!i || !skip_video_packet(d_video)){ eof=1; break;} // EOF | |
2389 } | |
2390 } | |
2391 break; | |
2392 | |
2393 } // switch(file_format) | |
2394 | |
595 | 2395 // Set OSD: |
2396 if(osd_level){ | |
2397 int len=((demuxer->movi_end-demuxer->movi_start)>>8); | |
2398 if(len>0){ | |
2399 osd_visible=sh_video->fps; // 1 sec | |
2400 vo_osd_progbar_type=0; | |
598 | 2401 vo_osd_progbar_value=(demuxer->filepos-demuxer->movi_start)/len; |
595 | 2402 } |
780 | 2403 //printf("avi filepos = %d (len=%d)\n",vo_osd_progbar_value,len); |
595 | 2404 } |
2405 | |
1 | 2406 //====================== re-sync audio: ===================== |
2407 if(has_audio){ | |
2408 | |
2409 if(skip_audio_bytes){ | |
2410 demux_read_data(d_audio,NULL,skip_audio_bytes); | |
889 | 2411 //d_audio->pts=0; // PTS is outdated because of the raw data skipping |
1 | 2412 } |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2413 |
1 | 2414 current_module="resync_audio"; |
2415 | |
442 | 2416 switch(sh_audio->codec->driver){ |
1 | 2417 case 1: |
2418 MP3_DecodeFrame(NULL,-2); // resync | |
2419 MP3_DecodeFrame(NULL,-2); // resync | |
2420 MP3_DecodeFrame(NULL,-2); // resync | |
2421 break; | |
2422 case 3: | |
2423 ac3_bitstream_reset(); // reset AC3 bitstream buffer | |
2424 // if(verbose){ printf("Resyncing AC3 audio...");fflush(stdout);} | |
291 | 2425 sh_audio->ac3_frame=ac3_decode_frame(); // resync |
1 | 2426 // if(verbose) printf(" OK!\n"); |
2427 break; | |
2428 case 4: | |
291 | 2429 case 7: |
2430 sh_audio->a_in_buffer_len=0; // reset ACM/DShow audio buffer | |
1 | 2431 break; |
2432 } | |
2433 | |
2434 // re-sync PTS (MPEG-PS only!!!) | |
2435 if(file_format==DEMUXER_TYPE_MPEG_PS) | |
2436 if(d_video->pts && d_audio->pts){ | |
2437 if (d_video->pts < d_audio->pts){ | |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2438 |
1 | 2439 } else { |
2440 while(d_video->pts > d_audio->pts){ | |
442 | 2441 switch(sh_audio->codec->driver){ |
1 | 2442 case 1: MP3_DecodeFrame(NULL,-2);break; // skip MPEG frame |
291 | 2443 case 3: sh_audio->ac3_frame=ac3_decode_frame();break; // skip AC3 frame |
1 | 2444 default: ds_fill_buffer(d_audio); // skip PCM frame |
2445 } | |
2446 } | |
2447 } | |
2448 } | |
2449 | |
889 | 2450 current_module=NULL; |
722 | 2451 |
1038
b36fb1ae4b53
applied solaris8/netbsd/other fixes patch by J¸«ärgen Keil <jk@tools.de>
arpi_esp
parents:
1026
diff
changeset
|
2452 audio_out->reset(); // stop audio, throwing away buffered data |
1 | 2453 |
2454 c_total=0; // kell ez? | |
2455 printf("A:%6.1f V:%6.1f A-V:%7.3f",d_audio->pts,d_video->pts,0.0f); | |
2456 printf(" ct:%7.3f \r",c_total);fflush(stdout); | |
2457 } else { | |
2458 printf("A: --- V:%6.1f \r",d_video->pts);fflush(stdout); | |
2459 } | |
2460 | |
2461 max_pts_correction=0.1; | |
889 | 2462 frame_corr_num=0; // -5 |
2463 frame_correction=0; | |
1 | 2464 force_redraw=5; |
746 | 2465 a_frame=-skip_audio_secs; |
1 | 2466 v_frame=0; // !!!!!! |
2467 audio_time_usage=0; video_time_usage=0; vout_time_usage=0; | |
2468 // num_frames=real_num_frames=0; | |
721 | 2469 |
1 | 2470 } |
723 | 2471 rel_seek_secs=0; |
1 | 2472 } // keyboard event handler |
2473 | |
220 | 2474 //================= Update OSD ==================== |
955 | 2475 { if(osd_level>=2){ |
780 | 2476 int pts=d_video->pts; |
595 | 2477 if(pts==osd_last_pts-1) ++pts; else osd_last_pts=pts; |
371 | 2478 vo_osd_text=osd_text_buffer; |
595 | 2479 sprintf(vo_osd_text,"%c %02d:%02d:%02d",osd_function,pts/3600,(pts/60)%60,pts%60); |
371 | 2480 } else { |
2481 vo_osd_text=NULL; | |
2482 } | |
220 | 2483 // for(i=1;i<=11;i++) osd_text_buffer[10+i]=i;osd_text_buffer[10+i]=0; |
371 | 2484 // vo_osd_text=osd_text_buffer; |
458
49b0474b2e26
I really hope that you will learn how to use cvs, sooner or later...
arpi_esp
parents:
452
diff
changeset
|
2485 |
258 | 2486 // find sub |
1204 | 2487 if(subtitles && d_video->pts>0){ |
780 | 2488 int pts=d_video->pts; |
398 | 2489 if(sub_fps==0) sub_fps=sh_video->fps; |
482 | 2490 current_module="find_sub"; |
780 | 2491 find_sub(subtitles,sub_uses_time?(100*(pts+sub_delay)):((pts+sub_delay)*sub_fps)); // FIXME! frame counter... |
482 | 2492 current_module=NULL; |
258 | 2493 } |
554 | 2494 |
2495 // DVD sub: | |
557 | 2496 { unsigned char* packet=NULL; |
2497 int len=ds_get_packet_sub(d_dvdsub,&packet); | |
2498 if(len>=2){ | |
2499 int len2; | |
2500 len2=(packet[0]<<8)+packet[1]; | |
561 | 2501 if(verbose) printf("\rDVD sub: %d / %d \n",len,len2); |
2502 if(len==len2) | |
2503 spudec_decode(packet,len); | |
2504 else | |
2505 printf("fragmented dvd-subs not yet supported!!!\n"); | |
557 | 2506 } else if(len>=0) { |
2507 printf("invalud dvd sub\n"); | |
554 | 2508 } |
2509 } | |
2510 | |
220 | 2511 } |
1 | 2512 |
2513 } // while(!eof) | |
2514 | |
2515 exit_player("End of file"); | |
109 | 2516 } |
2517 return 1; | |
2518 } |