Mercurial > mplayer.hg
annotate mplayer.c @ 33907:30aade4fd660
Quick-and-dirty support for reading Google/YouTube subtitle format.
Note that advanced features like replacing HTML entities and possibly
a lot more things are missing.
author | reimar |
---|---|
date | Mon, 15 Aug 2011 20:33:45 +0000 |
parents | e0d211c62cf7 |
children | b3d3034bc162 |
rev | line source |
---|---|
30429
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
1 /* |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
2 * This file is part of MPlayer. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
3 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
4 * MPlayer is free software; you can redistribute it and/or modify |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
5 * it under the terms of the GNU General Public License as published by |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
6 * the Free Software Foundation; either version 2 of the License, or |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
7 * (at your option) any later version. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
8 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
9 * MPlayer is distributed in the hope that it will be useful, |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
12 * GNU General Public License for more details. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
13 * |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
14 * You should have received a copy of the GNU General Public License along |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
15 * with MPlayer; if not, write to the Free Software Foundation, Inc., |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
17 */ |
c1a3f1bbba26
Add license header to all top-level files missing them.
diego
parents:
30378
diff
changeset
|
18 |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
19 #include "config.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
20 |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
21 #include <errno.h> |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
22 #include <fcntl.h> |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
23 #include <limits.h> |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
24 #include <signal.h> |
1430 | 25 #include <stdio.h> |
26 #include <stdlib.h> | |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
27 #include <string.h> |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
28 #include <time.h> |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
29 #include <unistd.h> |
32724
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
30 #include <assert.h> |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
31 #include <sys/stat.h> |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
32 #include <sys/time.h> |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
33 #include <sys/types.h> |
12360 | 34 |
27727
48c1ae64255b
Replace preprocessor check for WIN32 with checks for __MINGW32__ and __CYGWIN__.
diego
parents:
27635
diff
changeset
|
35 #if defined(__MINGW32__) || defined(__CYGWIN__) |
12358
133e0ebde74d
Make it compile on mingw again. Now it is finally possible to include windows.h in mplayer.c
faust3
parents:
12332
diff
changeset
|
36 #define _UWIN 1 /*disable Non-underscored versions of non-ANSI functions as otherwise int eof would conflict with eof()*/ |
133e0ebde74d
Make it compile on mingw again. Now it is finally possible to include windows.h in mplayer.c
faust3
parents:
12332
diff
changeset
|
37 #include <windows.h> |
133e0ebde74d
Make it compile on mingw again. Now it is finally possible to include windows.h in mplayer.c
faust3
parents:
12332
diff
changeset
|
38 #endif |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
39 |
9831 | 40 #ifndef __MINGW32__ |
41 #include <sys/ioctl.h> | |
1428
a90d889eb649
largefile patch by Stephen Davies <steve@daviesfam.org>
arpi
parents:
1422
diff
changeset
|
42 #include <sys/wait.h> |
9831 | 43 #else |
33363 | 44 #define SIGHUP 1 /* hangup */ |
45 #define SIGQUIT 3 /* quit */ | |
46 #define SIGKILL 9 /* kill (cannot be caught or ignored) */ | |
47 #define SIGBUS 10 /* bus error */ | |
48 #define SIGPIPE 13 /* broken pipe */ | |
9831 | 49 #endif |
50 | |
3015 | 51 #ifdef HAVE_RTC |
14381
dc7b86065e3c
RTC support on FreeBSD, inspired by a patch from Michael Johnson
diego
parents:
14296
diff
changeset
|
52 #ifdef __linux__ |
2889
0d8553a47d1a
RTC support, softsleep and optional new timing code by Dap
arpi
parents:
2880
diff
changeset
|
53 #include <linux/rtc.h> |
14381
dc7b86065e3c
RTC support on FreeBSD, inspired by a patch from Michael Johnson
diego
parents:
14296
diff
changeset
|
54 #else |
dc7b86065e3c
RTC support on FreeBSD, inspired by a patch from Michael Johnson
diego
parents:
14296
diff
changeset
|
55 #include <rtc.h> |
dc7b86065e3c
RTC support on FreeBSD, inspired by a patch from Michael Johnson
diego
parents:
14296
diff
changeset
|
56 #define RTC_IRQP_SET RTCIO_IRQP_SET |
dc7b86065e3c
RTC support on FreeBSD, inspired by a patch from Michael Johnson
diego
parents:
14296
diff
changeset
|
57 #define RTC_PIE_ON RTCIO_PIE_ON |
16490
f17b3c152fd6
Add comments to a few #endif statements in order to make clear which
diego
parents:
16489
diff
changeset
|
58 #endif /* __linux__ */ |
f17b3c152fd6
Add comments to a few #endif statements in order to make clear which
diego
parents:
16489
diff
changeset
|
59 #endif /* HAVE_RTC */ |
2889
0d8553a47d1a
RTC support, softsleep and optional new timing code by Dap
arpi
parents:
2880
diff
changeset
|
60 |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
61 /* |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
62 * In Mac OS X the SDL-lib is built upon Cocoa. The easiest way to |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
63 * make it all work is to use the builtin SDL-bootstrap code, which |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
64 * will be done automatically by replacing our main() if we include SDL.h. |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
65 */ |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
66 #if defined(__APPLE__) && defined(CONFIG_SDL) |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
67 #ifdef CONFIG_SDL_SDL_H |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
68 #include <SDL/SDL.h> |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
69 #else |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
70 #include <SDL.h> |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
71 #endif |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
72 #endif |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
73 |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
74 #include "gui/interface.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
75 #include "input/input.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
76 #include "libao2/audio_out.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
77 #include "libavutil/avstring.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
78 #include "libavutil/intreadwrite.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
79 #include "libmenu/menu.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
80 #include "libmpcodecs/dec_audio.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
81 #include "libmpcodecs/dec_video.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
82 #include "libmpcodecs/mp_image.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
83 #include "libmpcodecs/vd.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
84 #include "libmpcodecs/vf.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
85 #include "libmpdemux/demuxer.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
86 #include "libmpdemux/stheader.h" |
32466
9e627a1793b1
Move font_load.[ch], font_load_ft.c and osd_font.h from libvo to sub.
cigaes
parents:
32461
diff
changeset
|
87 #include "sub/font_load.h" |
32467 | 88 #include "sub/sub.h" |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
89 #include "libvo/video_out.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
90 #include "stream/cache2.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
91 #include "stream/stream.h" |
31877
e30fe0cb79cd
Add incomplete clipinf reading support to display audio
reimar
parents:
31839
diff
changeset
|
92 #include "stream/stream_bd.h" |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
93 #include "stream/stream_dvdnav.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
94 #include "stream/stream_radio.h" |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
19227
diff
changeset
|
95 #include "stream/tv.h" |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
96 #include "access_mpcontext.h" |
32461 | 97 #include "sub/ass_mp.h" |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
98 #include "cfg-mplayer-def.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
99 #include "codec-cfg.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
100 #include "command.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
101 #include "edl.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
102 #include "help_mp.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
103 #include "m_config.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
104 #include "m_option.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
105 #include "m_property.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
106 #include "m_struct.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
107 #include "metadata.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
108 #include "mixer.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
109 #include "mp_core.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
110 #include "mp_fifo.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
111 #include "mp_msg.h" |
32889
db45f9bd690d
10l: forgot mp_strings.h header include with mp_asprintf prototype.
cboesch
parents:
32886
diff
changeset
|
112 #include "mp_strings.h" |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
113 #include "mpcommon.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
114 #include "mplayer.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
115 #include "osdep/getch2.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
116 #include "osdep/timer.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
117 #include "parser-cfg.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
118 #include "parser-mpcmd.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
119 #include "path.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
120 #include "playtree.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
121 #include "playtreeparser.h" |
32456 | 122 #include "sub/spudec.h" |
32454
69d3be4d52a2
Create a new directory, "sub", for subtitles and OSD related code.
cigaes
parents:
32438
diff
changeset
|
123 #include "sub/subreader.h" |
32459
1a605463f62b
Move vobsub.[ch] and unrar_exec.[ch] to the sub directory.
cigaes
parents:
32456
diff
changeset
|
124 #include "sub/vobsub.h" |
32460 | 125 #include "sub/eosd.h" |
31982
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
126 #include "osdep/getch2.h" |
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
127 #include "osdep/timer.h" |
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
128 |
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
129 #include "udp_sync.h" |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
130 |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
131 #ifdef CONFIG_X11 |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
132 #include "libvo/x11_common.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
133 #endif |
29432 | 134 #ifdef CONFIG_DVBIN |
19271
64d82a45a05d
introduce new 'stream' directory for all stream layer related components and split them from libmpdemux
ben
parents:
19227
diff
changeset
|
135 #include "stream/dvbin.h" |
29432 | 136 #endif |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
137 #ifdef CONFIG_DVDREAD |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
138 #include "stream/stream_dvd.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
139 #endif |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
140 |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
141 int slave_mode; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
142 int player_idle_mode; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
143 int quiet; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
144 int enable_mouse_movements; |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
145 float start_volume = -1; |
33363 | 146 double start_pts = MP_NOPTS_VALUE; |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
147 char *heartbeat_cmd; |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
148 static int max_framesize; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
149 |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
150 int noconsolecontrols; |
1 | 151 //**************************************************************************// |
152 | |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
153 // Not all functions in mplayer.c take the context as an argument yet |
22993 | 154 static MPContext mpctx_s = { |
33363 | 155 .osd_function = OSD_PLAY, |
156 .begin_skip = MP_NOPTS_VALUE, | |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
157 .play_tree_step = 1, |
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
158 .global_sub_pos = -1, |
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
159 .set_of_sub_pos = -1, |
33363 | 160 .file_format = DEMUXER_TYPE_UNKNOWN, |
161 .loop_times = -1, | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
162 #ifdef CONFIG_DVBIN |
33363 | 163 .last_dvb_step = 1, |
22281 | 164 #endif |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
165 }; |
1 | 166 |
22993 | 167 static MPContext *mpctx = &mpctx_s; |
168 | |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
169 int fixed_vo; |
7677
33562a65e9e8
_EXPERIMENTAL_ option: -fixed-vo for libvo spec compliance testing
arpi
parents:
7628
diff
changeset
|
170 |
2557 | 171 // benchmark: |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
172 double video_time_usage; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
173 double vout_time_usage; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
174 static double audio_time_usage; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
175 static int total_time_usage_start; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
176 static int total_frame_cnt; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
177 static int drop_frame_cnt; // total number of dropped frames |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
178 int benchmark; |
1124
0e95f30ffd4c
-frames and -benchmark options to make chl & gabucino happy
arpi_esp
parents:
1059
diff
changeset
|
179 |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
180 // options: |
30176
6fb92182aff3
At startup and while seeking avoid to introduce pointless sleeps and possibly
reimar
parents:
30175
diff
changeset
|
181 #define DEFAULT_STARTUP_DECODE_RETRY 8 |
33363 | 182 int auto_quality; |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
183 static int output_quality; |
1439 | 184 |
33363 | 185 float playback_speed = 1.0; |
7605
c3bbe602aff3
new option -speed, to set playback speed rate (examples: -speed 1:3 or -speed 5)
arpi
parents:
7604
diff
changeset
|
186 |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
187 int use_gui; |
9291
64b8c5a07c2c
- It adds an option enqueue/noenqueue, so users can choose if they want to
arpi
parents:
9217
diff
changeset
|
188 |
27343 | 189 #ifdef CONFIG_GUI |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
190 int enqueue; |
9291
64b8c5a07c2c
- It adds an option enqueue/noenqueue, so users can choose if they want to
arpi
parents:
9217
diff
changeset
|
191 #endif |
64b8c5a07c2c
- It adds an option enqueue/noenqueue, so users can choose if they want to
arpi
parents:
9217
diff
changeset
|
192 |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
193 static int list_properties; |
17914
f9cb6fc1608a
Add an option to list the properties: -list-properties
albeu
parents:
17911
diff
changeset
|
194 |
33363 | 195 int osd_level = 1; |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18286
diff
changeset
|
196 // if nonzero, hide current OSD contents when GetTimerMS() reaches this |
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18286
diff
changeset
|
197 unsigned int osd_visible; |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
198 int osd_duration = 1000; |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
199 int osd_fractions; // determines how fractions of seconds are displayed |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
200 // on OSD |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
201 |
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
202 int term_osd = 1; |
33363 | 203 static char *term_osd_esc = "\x1b[A\r\x1b[K"; |
204 static char *playing_msg; | |
2557 | 205 // seek: |
22312 | 206 static double seek_to_sec; |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
207 static off_t seek_to_byte; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
208 static off_t step_sec; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
209 static int loop_seek; |
7559
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7529
diff
changeset
|
210 |
19973
02a18c52a42a
after a long time, finally i could add -endpos option to mplayer executable.
ptt
parents:
19946
diff
changeset
|
211 static m_time_size_t end_at = { .type = END_AT_NONE, .pos = 0 }; |
02a18c52a42a
after a long time, finally i could add -endpos option to mplayer executable.
ptt
parents:
19946
diff
changeset
|
212 |
7576
c135f7646036
new opt: -autosync, controls ao->get_delay() smoothing (default: disabled)
arpi
parents:
7563
diff
changeset
|
213 // A/V sync: |
33363 | 214 int autosync; // 30 might be a good default value. |
7576
c135f7646036
new opt: -autosync, controls ao->get_delay() smoothing (default: disabled)
arpi
parents:
7563
diff
changeset
|
215 |
7559
b645204ea527
some cleanup - made private vars/funcs static, removed obsolete externs
arpi
parents:
7529
diff
changeset
|
216 // may be changed by GUI: (FIXME!) |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
217 float rel_seek_secs; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
218 int abs_seek_pos; |
2557 | 219 |
220 // codecs: | |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
221 char **audio_codec_list; // override audio codec |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
222 char **video_codec_list; // override video codec |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
223 char **audio_fm_list; // override audio codec family |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
224 char **video_fm_list; // override video codec family |
1285
202d9e2dc202
-vcodec option (maybe some other name would be better though) to select between driver types without editing codecs.conf. mplayer will default to normal codec search loop if it does not find codec for the specified driver type. config range checking for the parameter (an integer) should be cleaned, IMHO
lgb
parents:
1255
diff
changeset
|
225 |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
226 // streaming: |
33363 | 227 int audio_id = -1; |
228 int video_id = -1; | |
229 int dvdsub_id = -1; | |
29855
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
230 // this dvdsub_id was selected via slang |
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
231 // use this to allow dvdnav to follow -slang across stream resets, |
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
232 // in particular the subtitle ID for a language changes |
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
233 int dvdsub_lang_id; |
33363 | 234 int vobsub_id = -1; |
235 char *audio_lang; | |
236 char *dvdsub_lang; | |
237 char *filename; | |
238 int file_filter = 1; | |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
239 |
2353 | 240 // cache2: |
33363 | 241 int stream_cache_size = -1; |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
242 #ifdef CONFIG_STREAM_CACHE |
33363 | 243 float stream_cache_min_percent = 20.0; |
244 float stream_cache_seek_min_percent = 50.0; | |
2353 | 245 #endif |
246 | |
2557 | 247 // dump: |
32438
faefba58f413
Implement a basic capture feature, available through -capture.
diego
parents:
32415
diff
changeset
|
248 char *stream_dump_name = "stream.dump"; |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
249 int stream_dump_type; |
33390 | 250 uint64_t stream_dump_count; |
251 unsigned stream_dump_start_time; | |
252 unsigned stream_dump_last_print_time; | |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
253 int capture_dump; |
2557 | 254 |
255 // A-V sync: | |
33363 | 256 static float default_max_pts_correction = -1; |
257 static float max_pts_correction; //default_max_pts_correction; | |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
258 static float c_total; |
33363 | 259 float audio_delay; |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
260 static int ignore_start; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
261 |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
262 static int softsleep; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
263 |
33363 | 264 double force_fps; |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
265 static int force_srate; |
33503
d54614382edc
Actually use the AF_FORMAT_UNKNOWN define instead of having it in a comment.
reimar
parents:
33495
diff
changeset
|
266 static int audio_output_format = AF_FORMAT_UNKNOWN; |
33363 | 267 int frame_dropping; // option 0=no drop 1= drop vo 2= drop decode |
268 static int play_n_frames = -1; | |
269 static int play_n_frames_mf = -1; | |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
270 |
1 | 271 // screen info: |
33363 | 272 char **video_driver_list; |
273 char **audio_driver_list; | |
5075 | 274 |
1014
e01dc1a88edf
fixed punkso's mess... local variables moved back to main()
arpi_esp
parents:
1009
diff
changeset
|
275 // sub: |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
276 char *font_name; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
277 char *sub_font_name; |
33363 | 278 float font_factor = 0.75; |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
279 char **sub_name; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
280 char **sub_paths; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
281 float sub_delay; |
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
282 float sub_fps; |
33363 | 283 int sub_auto = 1; |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
284 char *vobsub_name; |
33363 | 285 int subcc_enabled; |
8361
2202c00001e3
overlapping subtitles support is now optional, can be disabled (-nooverlapsub)
arpi
parents:
8360
diff
changeset
|
286 int suboverlap_enabled = 1; |
21140 | 287 |
33363 | 288 char *current_module; // for debugging |
6781 | 289 |
27345
b597fd2924b4
Rename preprocessor directive HAVE_MENU --> CONFIG_MENU.
diego
parents:
27343
diff
changeset
|
290 #ifdef CONFIG_MENU |
33363 | 291 static const vf_info_t *const libmenu_vfs[] = { |
292 &vf_info_menu, | |
293 NULL | |
8198 | 294 }; |
33363 | 295 static vf_instance_t *vf_menu; |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
296 int use_menu; |
33363 | 297 static char *menu_cfg; |
298 static char *menu_root = "main"; | |
8198 | 299 #endif |
300 | |
5055 | 301 #ifdef HAVE_RTC |
19756 | 302 static int nortc = 1; |
33363 | 303 static char *rtc_device; |
5055 | 304 #endif |
305 | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
306 edl_record_ptr edl_records; ///< EDL entries memory area |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
307 edl_record_ptr next_edl_record; ///< only for traversing edl_records |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
308 short edl_decision; ///< 1 when an EDL operation has been made. |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
309 short edl_needs_reset; ///< 1 if we need to reset EDL next pointer |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
310 short edl_backward; ///< 1 if we need to skip to the beginning of the next EDL record |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
311 FILE *edl_fd; ///< fd to write to when in -edlout mode. |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
312 // Number of seconds to add to the seek when jumping out |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
313 // of EDL scene in backward direction. This is needed to |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
314 // have some time after the seek to decide what to do next |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
315 // (next seek, pause,...), otherwise after the seek it will |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
316 // enter the same scene again and skip forward immediately |
31580
b6c2b541e1a6
Implement edl-backward-delay to avoid jumping right over an
reynaldo
parents:
31515
diff
changeset
|
317 float edl_backward_delay = 2; |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
318 int edl_start_pts; ///< Automatically add/sub this from EDL start/stop pos |
20251
2971196cd8c6
Disable loading of file-specific configuration file from the same
rtogni
parents:
20207
diff
changeset
|
319 int use_filedir_conf; |
29862
fbb1f57a313e
Added -name, -title and -use-filename-title options and implementation in X11 vos
ptt
parents:
29857
diff
changeset
|
320 int use_filename_title; |
8531
1aa2c9b460af
Merged EDL 0.5 patch - it's something like Quicktime's edit lists.
arpi
parents:
8494
diff
changeset
|
321 |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
322 static unsigned int initialized_flags; |
31514
c6195b5575cc
cosmetics: Move volstep global var to the top where all other global vars live.
diego
parents:
31513
diff
changeset
|
323 |
33287 | 324 int volstep = 3; ///< step size of mixer changes |
31514
c6195b5575cc
cosmetics: Move volstep global var to the top where all other global vars live.
diego
parents:
31513
diff
changeset
|
325 |
31801 | 326 #ifdef CONFIG_CRASH_DEBUG |
327 static char *prog_path; | |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
328 static int crash_debug; |
31801 | 329 #endif |
330 | |
31515
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
331 /* This header requires all the global variable declarations. */ |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
332 #include "cfg-mplayer.h" |
823f39ab650b
Clean up #include handling in mplayer.c and mencoder.c.
diego
parents:
31514
diff
changeset
|
333 |
25765
304fc0bbefe1
audio_out / video_out structs should be treated as const
reimar
parents:
25658
diff
changeset
|
334 const void *mpctx_get_video_out(MPContext *mpctx) |
22284 | 335 { |
336 return mpctx->video_out; | |
337 } | |
338 | |
28259
f313c0ff6882
Add missing const qualifier to mpctx_get_audio_out function declaration.
diego
parents:
28185
diff
changeset
|
339 const void *mpctx_get_audio_out(MPContext *mpctx) |
22286 | 340 { |
22411
cf4c052b6d60
Fix copy-paste bug (must have broken something in the GUI)
uau
parents:
22365
diff
changeset
|
341 return mpctx->audio_out; |
22286 | 342 } |
343 | |
25364 | 344 void *mpctx_get_demuxer(MPContext *mpctx) |
345 { | |
346 return mpctx->demuxer; | |
347 } | |
348 | |
22284 | 349 void *mpctx_get_playtree_iter(MPContext *mpctx) |
350 { | |
351 return mpctx->playtree_iter; | |
352 } | |
353 | |
22286 | 354 void *mpctx_get_mixer(MPContext *mpctx) |
355 { | |
356 return &mpctx->mixer; | |
357 } | |
358 | |
22290 | 359 int mpctx_get_global_sub_size(MPContext *mpctx) |
22286 | 360 { |
361 return mpctx->global_sub_size; | |
362 } | |
363 | |
25026
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24982
diff
changeset
|
364 int mpctx_get_osd_function(MPContext *mpctx) |
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24982
diff
changeset
|
365 { |
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24982
diff
changeset
|
366 return mpctx->osd_function; |
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24982
diff
changeset
|
367 } |
afead6ecb8ba
Remove the pause filter and the cmd queue hack, to know the mplayer going to
ulion
parents:
24982
diff
changeset
|
368 |
33363 | 369 static int is_valid_metadata_type(metadata_t type) |
370 { | |
371 switch (type) { | |
372 /* check for valid video stream */ | |
373 case META_VIDEO_CODEC: | |
374 case META_VIDEO_BITRATE: | |
375 case META_VIDEO_RESOLUTION: | |
376 if (!mpctx->sh_video) | |
377 return 0; | |
378 break; | |
379 | |
380 /* check for valid audio stream */ | |
381 case META_AUDIO_CODEC: | |
382 case META_AUDIO_BITRATE: | |
383 case META_AUDIO_SAMPLES: | |
384 if (!mpctx->sh_audio) | |
385 return 0; | |
386 break; | |
387 | |
388 /* check for valid demuxer */ | |
389 case META_INFO_TITLE: | |
390 case META_INFO_ARTIST: | |
391 case META_INFO_ALBUM: | |
392 case META_INFO_YEAR: | |
393 case META_INFO_COMMENT: | |
394 case META_INFO_TRACK: | |
395 case META_INFO_GENRE: | |
396 if (!mpctx->demuxer) | |
397 return 0; | |
398 break; | |
399 | |
400 default: | |
401 break; | |
402 } | |
403 | |
404 return 1; | |
405 } | |
406 | |
407 static char *get_demuxer_info(char *tag) | |
408 { | |
409 char **info = mpctx->demuxer->info; | |
410 int n; | |
411 | |
412 if (!info || !tag) | |
413 return NULL; | |
414 | |
415 for (n = 0; info[2 * n] != NULL; n++) | |
416 if (!strcasecmp(info[2 * n], tag)) | |
417 break; | |
418 | |
419 return info[2 * n + 1] ? strdup(info[2 * n + 1]) : NULL; | |
19532
13599373bb02
added new helpers to allow easy metadata retrieval and make libmenu use them
ben
parents:
19529
diff
changeset
|
420 } |
13599373bb02
added new helpers to allow easy metadata retrieval and make libmenu use them
ben
parents:
19529
diff
changeset
|
421 |
33363 | 422 char *get_metadata(metadata_t type) |
423 { | |
424 sh_audio_t *const sh_audio = mpctx->sh_audio; | |
425 sh_video_t *const sh_video = mpctx->sh_video; | |
426 | |
427 if (!is_valid_metadata_type(type)) | |
428 return NULL; | |
429 | |
430 switch (type) { | |
431 case META_NAME: | |
432 return strdup(mp_basename(filename)); | |
433 | |
434 case META_VIDEO_CODEC: | |
435 if (sh_video->format == 0x10000001) | |
436 return strdup("mpeg1"); | |
437 else if (sh_video->format == 0x10000002) | |
438 return strdup("mpeg2"); | |
439 else if (sh_video->format == 0x10000004) | |
440 return strdup("mpeg4"); | |
441 else if (sh_video->format == 0x10000005) | |
442 return strdup("h264"); | |
443 else if (sh_video->format >= 0x20202020) | |
444 return mp_asprintf("%.4s", (char *)&sh_video->format); | |
445 return mp_asprintf("0x%08X", sh_video->format); | |
446 | |
447 case META_VIDEO_BITRATE: | |
448 return mp_asprintf("%d kbps", (int)(sh_video->i_bps * 8 / 1024)); | |
449 | |
450 case META_VIDEO_RESOLUTION: | |
451 return mp_asprintf("%d x %d", sh_video->disp_w, sh_video->disp_h); | |
452 | |
453 case META_AUDIO_CODEC: | |
454 if (sh_audio->codec && sh_audio->codec->name) | |
455 return strdup(sh_audio->codec->name); | |
456 break; | |
457 | |
458 case META_AUDIO_BITRATE: | |
459 return mp_asprintf("%d kbps", (int)(sh_audio->i_bps * 8 / 1000)); | |
460 | |
461 case META_AUDIO_SAMPLES: | |
462 return mp_asprintf("%d Hz, %d ch.", sh_audio->samplerate, sh_audio->channels); | |
463 | |
464 /* check for valid demuxer */ | |
465 case META_INFO_TITLE: | |
466 return get_demuxer_info("Title"); | |
467 | |
468 case META_INFO_ARTIST: | |
469 return get_demuxer_info("Artist"); | |
470 | |
471 case META_INFO_ALBUM: | |
472 return get_demuxer_info("Album"); | |
473 | |
474 case META_INFO_YEAR: | |
475 return get_demuxer_info("Year"); | |
476 | |
477 case META_INFO_COMMENT: | |
478 return get_demuxer_info("Comment"); | |
479 | |
480 case META_INFO_TRACK: | |
481 return get_demuxer_info("Track"); | |
482 | |
483 case META_INFO_GENRE: | |
484 return get_demuxer_info("Genre"); | |
485 | |
486 default: | |
487 break; | |
488 } | |
489 | |
19532
13599373bb02
added new helpers to allow easy metadata retrieval and make libmenu use them
ben
parents:
19529
diff
changeset
|
490 return NULL; |
19529
9a59c33bee29
new option for libmenu that allow display of properties and metadata of currently played stream
ben
parents:
19521
diff
changeset
|
491 } |
9a59c33bee29
new option for libmenu that allow display of properties and metadata of currently played stream
ben
parents:
19521
diff
changeset
|
492 |
31277
5d5bda998a2f
Move code printing -identify output for a file to a separate function.
reimar
parents:
31262
diff
changeset
|
493 static void print_file_properties(const MPContext *mpctx, const char *filename) |
5d5bda998a2f
Move code printing -identify output for a file to a separate function.
reimar
parents:
31262
diff
changeset
|
494 { |
33363 | 495 double video_start_pts = MP_NOPTS_VALUE; |
496 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILENAME=%s\n", | |
497 filename_recode(filename)); | |
498 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_DEMUXER=%s\n", mpctx->demuxer->desc->name); | |
499 if (mpctx->sh_video) { | |
500 /* Assume FOURCC if all bytes >= 0x20 (' ') */ | |
501 if (mpctx->sh_video->format >= 0x20202020) | |
502 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_FORMAT=%.4s\n", (char *)&mpctx->sh_video->format); | |
503 else | |
504 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_FORMAT=0x%08X\n", mpctx->sh_video->format); | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
505 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_BITRATE=%d\n", mpctx->sh_video->i_bps * 8); |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
506 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_WIDTH=%d\n", mpctx->sh_video->disp_w); |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
507 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_HEIGHT=%d\n", mpctx->sh_video->disp_h); |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
508 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_FPS=%5.3f\n", mpctx->sh_video->fps); |
33363 | 509 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_ASPECT=%1.4f\n", mpctx->sh_video->aspect); |
510 video_start_pts = ds_get_next_pts(mpctx->d_video); | |
511 } | |
512 if (mpctx->sh_audio) { | |
513 /* Assume FOURCC if all bytes >= 0x20 (' ') */ | |
514 if (mpctx->sh_audio->format >= 0x20202020) | |
515 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_FORMAT=%.4s\n", (char *)&mpctx->sh_audio->format); | |
516 else | |
517 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_FORMAT=%d\n", mpctx->sh_audio->format); | |
518 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_BITRATE=%d\n", mpctx->sh_audio->i_bps * 8); | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
519 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_RATE=%d\n", mpctx->sh_audio->samplerate); |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
520 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_NCH=%d\n", mpctx->sh_audio->channels); |
33363 | 521 start_pts = ds_get_next_pts(mpctx->d_audio); |
522 } | |
523 if (video_start_pts != MP_NOPTS_VALUE) { | |
524 if (start_pts == MP_NOPTS_VALUE || !mpctx->sh_audio || | |
525 (mpctx->sh_video && video_start_pts < start_pts)) | |
526 start_pts = video_start_pts; | |
527 } | |
528 if (start_pts != MP_NOPTS_VALUE) | |
529 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_START_TIME=%.2f\n", start_pts); | |
31277
5d5bda998a2f
Move code printing -identify output for a file to a separate function.
reimar
parents:
31262
diff
changeset
|
530 else |
33363 | 531 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_START_TIME=unknown\n"); |
532 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_LENGTH=%.2f\n", demuxer_get_time_length(mpctx->demuxer)); | |
533 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SEEKABLE=%d\n", | |
534 mpctx->stream->seek && (!mpctx->demuxer || mpctx->demuxer->seekable)); | |
535 if (mpctx->demuxer) { | |
536 if (mpctx->demuxer->num_chapters == 0) | |
537 stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_NUM_CHAPTERS, &mpctx->demuxer->num_chapters); | |
538 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_CHAPTERS=%d\n", mpctx->demuxer->num_chapters); | |
539 } | |
31277
5d5bda998a2f
Move code printing -identify output for a file to a separate function.
reimar
parents:
31262
diff
changeset
|
540 } |
5d5bda998a2f
Move code printing -identify output for a file to a separate function.
reimar
parents:
31262
diff
changeset
|
541 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
542 #ifdef CONFIG_DVDNAV |
33363 | 543 static void mp_dvdnav_context_free(MPContext *ctx) |
544 { | |
545 if (ctx->nav_smpi) | |
546 free_mp_image(ctx->nav_smpi); | |
25824 | 547 ctx->nav_smpi = NULL; |
32511
b39155e98ac3
Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents:
32467
diff
changeset
|
548 free(ctx->nav_buffer); |
33363 | 549 ctx->nav_buffer = NULL; |
550 ctx->nav_start = NULL; | |
25824 | 551 ctx->nav_in_size = 0; |
552 } | |
33363 | 553 |
8198 | 554 #endif |
33363 | 555 |
556 void uninit_player(unsigned int mask) | |
557 { | |
558 mask &= initialized_flags; | |
559 | |
560 mp_msg(MSGT_CPLAYER, MSGL_DBG2, "\n*** uninit(0x%X)\n", mask); | |
561 | |
562 if (mask & INITIALIZED_ACODEC) { | |
563 initialized_flags &= ~INITIALIZED_ACODEC; | |
564 current_module = "uninit_acodec"; | |
565 if (mpctx->sh_audio) | |
566 uninit_audio(mpctx->sh_audio); | |
567 #ifdef CONFIG_GUI | |
568 if (use_gui) | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
569 gui(GUI_SET_AFILTER, NULL); |
33363 | 570 #endif |
571 mpctx->sh_audio = NULL; | |
572 mpctx->mixer.afilter = NULL; | |
8023 | 573 } |
33363 | 574 |
575 if (mask & INITIALIZED_VCODEC) { | |
576 initialized_flags &= ~INITIALIZED_VCODEC; | |
577 current_module = "uninit_vcodec"; | |
578 if (mpctx->sh_video) | |
579 uninit_video(mpctx->sh_video); | |
580 mpctx->sh_video = NULL; | |
581 #ifdef CONFIG_MENU | |
582 vf_menu = NULL; | |
25824 | 583 #endif |
33363 | 584 } |
585 | |
586 if (mask & INITIALIZED_DEMUXER) { | |
587 initialized_flags &= ~INITIALIZED_DEMUXER; | |
588 current_module = "free_demuxer"; | |
589 if (mpctx->demuxer) { | |
590 mpctx->stream = mpctx->demuxer->stream; | |
591 free_demuxer(mpctx->demuxer); | |
592 } | |
593 mpctx->demuxer = NULL; | |
31839
5edb6679ccad
100l, do not free vo_spudec if e.g. just the audio is reinitialized.
reimar
parents:
31837
diff
changeset
|
594 } |
33363 | 595 |
596 // kill the cache process: | |
597 if (mask & INITIALIZED_STREAM) { | |
598 initialized_flags &= ~INITIALIZED_STREAM; | |
599 current_module = "uninit_stream"; | |
600 if (mpctx->stream) | |
601 free_stream(mpctx->stream); | |
602 mpctx->stream = NULL; | |
603 } | |
604 | |
605 if (mask & INITIALIZED_VO) { | |
606 initialized_flags &= ~INITIALIZED_VO; | |
607 current_module = "uninit_vo"; | |
608 mpctx->video_out->uninit(); | |
609 mpctx->video_out = NULL; | |
610 #ifdef CONFIG_DVDNAV | |
611 mp_dvdnav_context_free(mpctx); | |
33276
e7f4c0ae303d
Move freeing of subtitle data to uninit_player so it not only happens
reimar
parents:
33257
diff
changeset
|
612 #endif |
33363 | 613 if (vo_spudec) { |
614 current_module = "uninit_spudec"; | |
615 spudec_free(vo_spudec); | |
616 vo_spudec = NULL; | |
617 } | |
33276
e7f4c0ae303d
Move freeing of subtitle data to uninit_player so it not only happens
reimar
parents:
33257
diff
changeset
|
618 } |
33363 | 619 |
620 // Must be after libvo uninit, as few vo drivers (svgalib) have tty code. | |
621 if (mask & INITIALIZED_GETCH2) { | |
622 initialized_flags &= ~INITIALIZED_GETCH2; | |
623 current_module = "uninit_getch2"; | |
624 mp_msg(MSGT_CPLAYER, MSGL_DBG2, "\n[[[uninit getch2]]]\n"); | |
625 // restore terminal: | |
626 getch2_disable(); | |
627 } | |
628 | |
629 if (mask & INITIALIZED_SUBS) { | |
630 initialized_flags &= ~INITIALIZED_SUBS; | |
631 if (mpctx->set_of_sub_size > 0) { | |
632 int i; | |
633 current_module = "sub_free"; | |
634 for (i = 0; i < mpctx->set_of_sub_size; ++i) { | |
635 sub_free(mpctx->set_of_subtitles[i]); | |
33276
e7f4c0ae303d
Move freeing of subtitle data to uninit_player so it not only happens
reimar
parents:
33257
diff
changeset
|
636 #ifdef CONFIG_ASS |
33363 | 637 if (mpctx->set_of_ass_tracks[i]) |
638 ass_free_track(mpctx->set_of_ass_tracks[i]); | |
33276
e7f4c0ae303d
Move freeing of subtitle data to uninit_player so it not only happens
reimar
parents:
33257
diff
changeset
|
639 #endif |
33363 | 640 } |
641 mpctx->set_of_sub_size = 0; | |
642 } | |
643 vo_sub_last = vo_sub = NULL; | |
644 subdata = NULL; | |
645 #ifdef CONFIG_ASS | |
646 ass_track = NULL; | |
647 if (ass_library) | |
648 ass_clear_fonts(ass_library); | |
649 #endif | |
650 } | |
651 | |
652 if (mask & INITIALIZED_VOBSUB) { | |
653 initialized_flags &= ~INITIALIZED_VOBSUB; | |
654 current_module = "uninit_vobsub"; | |
655 if (vo_vobsub) | |
656 vobsub_close(vo_vobsub); | |
657 vo_vobsub = NULL; | |
658 } | |
659 | |
660 if (mask & INITIALIZED_AO) { | |
661 initialized_flags &= ~INITIALIZED_AO; | |
662 current_module = "uninit_ao"; | |
663 if (mpctx->edl_muted) | |
664 mixer_mute(&mpctx->mixer); | |
665 if (mpctx->audio_out) | |
666 mpctx->audio_out->uninit(mpctx->eof ? 0 : 1); | |
667 mpctx->audio_out = NULL; | |
668 } | |
1856 | 669 |
27343 | 670 #ifdef CONFIG_GUI |
33363 | 671 if (mask & INITIALIZED_GUI) { |
672 initialized_flags &= ~INITIALIZED_GUI; | |
673 current_module = "uninit_gui"; | |
674 guiDone(); | |
675 } | |
1856 | 676 #endif |
677 | |
33363 | 678 if (mask & INITIALIZED_INPUT) { |
679 initialized_flags &= ~INITIALIZED_INPUT; | |
680 current_module = "uninit_input"; | |
681 mp_input_uninit(); | |
27345
b597fd2924b4
Rename preprocessor directive HAVE_MENU --> CONFIG_MENU.
diego
parents:
27343
diff
changeset
|
682 #ifdef CONFIG_MENU |
33363 | 683 if (use_menu) |
684 menu_uninit(); | |
25433 | 685 #endif |
33363 | 686 } |
687 | |
688 current_module = NULL; | |
1856 | 689 } |
690 | |
30518
654cad7ea876
Rename exit_reason_t enum to exit_reason and do not typedef it.
diego
parents:
30506
diff
changeset
|
691 void exit_player_with_rc(enum exit_reason how, int rc) |
654cad7ea876
Rename exit_reason_t enum to exit_reason and do not typedef it.
diego
parents:
30506
diff
changeset
|
692 { |
31982
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
693 #ifdef CONFIG_NETWORKING |
33363 | 694 if (udp_master) |
695 send_udp(udp_ip, udp_port, "bye"); | |
31982
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
696 #endif /* CONFIG_NETWORKING */ |
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
697 |
33363 | 698 if (mpctx->user_muted && !mpctx->edl_muted) |
699 mixer_mute(&mpctx->mixer); | |
700 uninit_player(INITIALIZED_ALL); | |
27727
48c1ae64255b
Replace preprocessor check for WIN32 with checks for __MINGW32__ and __CYGWIN__.
diego
parents:
27635
diff
changeset
|
701 #if defined(__MINGW32__) || defined(__CYGWIN__) |
33363 | 702 timeEndPeriod(1); |
26689
4cf30c0ca561
Request a timer resolution of 1 ms on Windows, the default of
reimar
parents:
26479
diff
changeset
|
703 #endif |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27370
diff
changeset
|
704 #ifdef CONFIG_X11 |
27343 | 705 #ifdef CONFIG_GUI |
33363 | 706 if (!use_gui) |
6016 | 707 #endif |
33363 | 708 vo_uninit(); // Close the X11 connection (if any is open). |
6015 | 709 #endif |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1709
diff
changeset
|
710 |
27393 | 711 #ifdef CONFIG_FREETYPE |
33363 | 712 current_module = "uninit_font"; |
713 if (sub_font && sub_font != vo_font) | |
714 free_font_desc(sub_font); | |
715 sub_font = NULL; | |
716 if (vo_font) | |
717 free_font_desc(vo_font); | |
718 vo_font = NULL; | |
719 done_freetype(); | |
13956
5d8f11a627ae
free freetype descriptor and library and mconfig data right before exit
iive
parents:
13946
diff
changeset
|
720 #endif |
33363 | 721 free_osd_list(); |
13956
5d8f11a627ae
free freetype descriptor and library and mconfig data right before exit
iive
parents:
13946
diff
changeset
|
722 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
723 #ifdef CONFIG_ASS |
33363 | 724 ass_library_done(ass_library); |
725 ass_library = NULL; | |
20477 | 726 #endif |
727 | |
33363 | 728 current_module = "exit_player"; |
729 | |
730 if (mpctx->playtree_iter) | |
731 play_tree_iter_free(mpctx->playtree_iter); | |
732 mpctx->playtree_iter = NULL; | |
733 if (mpctx->playtree) | |
734 play_tree_free(mpctx->playtree, 1); | |
735 mpctx->playtree = NULL; | |
736 | |
737 free(edl_records); // free mem allocated for EDL | |
738 edl_records = NULL; | |
739 switch (how) { | |
740 case EXIT_QUIT: | |
741 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_ExitingHow, MSGTR_Exit_quit); | |
742 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=QUIT\n"); | |
743 break; | |
744 case EXIT_EOF: | |
745 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_ExitingHow, MSGTR_Exit_eof); | |
746 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=EOF\n"); | |
747 break; | |
748 case EXIT_ERROR: | |
749 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_ExitingHow, MSGTR_Exit_error); | |
750 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=ERROR\n"); | |
751 break; | |
752 default: | |
753 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_EXIT=NONE\n"); | |
754 } | |
755 mp_msg(MSGT_CPLAYER, MSGL_DBG2, "max framesize was %d bytes\n", max_framesize); | |
756 | |
757 // must be last since e.g. mp_msg uses option values | |
758 // that will be freed by this. | |
759 if (mconfig) | |
760 m_config_free(mconfig); | |
761 mconfig = NULL; | |
762 | |
763 exit(rc); | |
8644
0bfd73828e33
This patch fixes so that the exit code (or return code if you like) is set
arpi
parents:
8635
diff
changeset
|
764 } |
0bfd73828e33
This patch fixes so that the exit code (or return code if you like) is set
arpi
parents:
8635
diff
changeset
|
765 |
30518
654cad7ea876
Rename exit_reason_t enum to exit_reason and do not typedef it.
diego
parents:
30506
diff
changeset
|
766 void exit_player(enum exit_reason how) |
654cad7ea876
Rename exit_reason_t enum to exit_reason and do not typedef it.
diego
parents:
30506
diff
changeset
|
767 { |
33363 | 768 exit_player_with_rc(how, 1); |
1156 | 769 } |
770 | |
13391 | 771 #ifndef __MINGW32__ |
33363 | 772 static void child_sighandler(int x) |
773 { | |
774 pid_t pid; | |
33490 | 775 do { |
776 pid = waitpid(-1, NULL, WNOHANG); | |
777 } while (pid > 0); | |
13391 | 778 } |
33363 | 779 |
13794 | 780 #endif |
33363 | 781 |
782 static void exit_sighandler(int x) | |
783 { | |
784 static int sig_count; | |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27393
diff
changeset
|
785 #ifdef CONFIG_CRASH_DEBUG |
33363 | 786 if (!crash_debug || x != SIGTRAP) |
787 #endif | |
788 ++sig_count; | |
789 if (initialized_flags == 0 && sig_count > 1) | |
790 exit(1); | |
791 if (sig_count == 5) { | |
792 /* We're crashing bad and can't uninit cleanly :( | |
793 * by popular request, we make one last (dirty) | |
794 * effort to restore the user's | |
795 * terminal. */ | |
796 getch2_disable(); | |
797 exit(1); | |
798 } | |
799 if (sig_count == 6) | |
800 exit(1); | |
801 if (sig_count > 6) { | |
802 // can't stop :( | |
803 #ifndef __MINGW32__ | |
804 kill(getpid(), SIGKILL); | |
805 #endif | |
806 } | |
807 mp_msg(MSGT_CPLAYER, MSGL_FATAL, "\n" MSGTR_IntBySignal, x, | |
808 current_module ? current_module : "unknown" | |
809 ); | |
810 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_SIGNAL=%d\n", x); | |
811 if (sig_count <= 1) | |
812 switch (x) { | |
813 case SIGINT: | |
814 case SIGPIPE: | |
815 case SIGQUIT: | |
816 case SIGTERM: | |
817 case SIGKILL: | |
818 async_quit_request = 1; | |
819 return; // killed from keyboard (^C) or killed [-9] | |
820 case SIGILL: | |
821 #if CONFIG_RUNTIME_CPUDETECT | |
822 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_Exit_SIGILL_RTCpuSel); | |
823 #else | |
824 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_Exit_SIGILL); | |
825 #endif | |
826 case SIGFPE: | |
827 case SIGSEGV: | |
828 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_Exit_SIGSEGV_SIGFPE); | |
829 default: | |
830 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_Exit_SIGCRASH); | |
831 #ifdef CONFIG_CRASH_DEBUG | |
832 if (crash_debug) { | |
833 int gdb_pid; | |
834 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forking...\n"); | |
835 gdb_pid = fork(); | |
836 mp_msg(MSGT_CPLAYER, MSGL_INFO, "Forked...\n"); | |
837 if (gdb_pid == 0) { // We are the child | |
838 char spid[20]; | |
839 snprintf(spid, sizeof(spid), "%i", getppid()); | |
840 getch2_disable(); // allow terminal to work properly with gdb | |
841 if (execlp("gdb", "gdb", prog_path, spid, "-ex", "bt", NULL) == -1) | |
842 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't start gdb\n"); | |
843 } else if (gdb_pid < 0) | |
844 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Couldn't fork\n"); | |
845 else { | |
846 waitpid(gdb_pid, NULL, 0); | |
847 } | |
848 if (x == SIGTRAP) | |
849 return; | |
850 } | |
851 #endif | |
13794 | 852 } |
33363 | 853 getch2_disable(); |
854 exit(1); | |
1156 | 855 } |
856 | |
33363 | 857 static void parse_cfgfiles(m_config_t *conf) |
723 | 858 { |
33363 | 859 char *conffile; |
860 int conffile_fd; | |
861 if (!disable_system_conf && | |
862 m_config_parse_config_file(conf, MPLAYER_CONFDIR "/mplayer.conf") < 0) | |
863 exit_player(EXIT_NONE); | |
864 if ((conffile = get_path("")) == NULL) { | |
865 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_NoHomeDir); | |
866 } else { | |
9831 | 867 #ifdef __MINGW32__ |
33363 | 868 mkdir(conffile); |
9831 | 869 #else |
33363 | 870 mkdir(conffile, 0777); |
9831 | 871 #endif |
33363 | 872 free(conffile); |
873 if ((conffile = get_path("config")) == NULL) { | |
874 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_GetpathProblem); | |
875 } else { | |
876 if ((conffile_fd = open(conffile, O_CREAT | O_EXCL | O_WRONLY, 0666)) != -1) { | |
877 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CreatingCfgFile, conffile); | |
878 write(conffile_fd, default_config, strlen(default_config)); | |
879 close(conffile_fd); | |
880 } | |
881 if (!disable_user_conf && | |
882 m_config_parse_config_file(conf, conffile) < 0) | |
883 exit_player(EXIT_NONE); | |
884 free(conffile); | |
885 } | |
178 | 886 } |
1 | 887 } |
888 | |
25635
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
889 #define PROFILE_CFG_PROTOCOL "protocol." |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
890 |
33363 | 891 static void load_per_protocol_config(m_config_t *conf, const char *const file) |
25635
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
892 { |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
893 char *str; |
33363 | 894 char protocol[strlen(PROFILE_CFG_PROTOCOL) + strlen(file) + 1]; |
25635
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
895 m_profile_t *p; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
896 |
25635
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
897 /* does filename actually uses a protocol ? */ |
33363 | 898 str = strstr(file, "://"); |
25635
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
899 if (!str) |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
900 return; |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
901 |
33363 | 902 sprintf(protocol, "%s%s", PROFILE_CFG_PROTOCOL, file); |
903 protocol[strlen(PROFILE_CFG_PROTOCOL) + strlen(file) - strlen(str)] = '\0'; | |
904 p = m_config_get_profile(conf, protocol); | |
905 if (p) { | |
906 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_LoadingProtocolProfile, protocol); | |
907 m_config_set_profile(conf, p); | |
25635
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
908 } |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
909 } |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
910 |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
911 #define PROFILE_CFG_EXTENSION "extension." |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
912 |
33363 | 913 static void load_per_extension_config(m_config_t *conf, const char *const file) |
25635
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
914 { |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
915 char *str; |
33363 | 916 char extension[strlen(PROFILE_CFG_EXTENSION) + 8]; |
25635
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
917 m_profile_t *p; |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
918 |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
919 /* does filename actually have an extension ? */ |
33363 | 920 str = strrchr(filename, '.'); |
25635
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
921 if (!str) |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
922 return; |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
923 |
33363 | 924 sprintf(extension, PROFILE_CFG_EXTENSION); |
925 strncat(extension, ++str, 7); | |
926 p = m_config_get_profile(conf, extension); | |
927 if (p) { | |
928 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_LoadingExtensionProfile, extension); | |
929 m_config_set_profile(conf, p); | |
25635
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
930 } |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
931 } |
25f6dca4df74
add support for per protocol and per extension playback profile loading
ben
parents:
25625
diff
changeset
|
932 |
25641 | 933 #define PROFILE_CFG_VO "vo." |
934 #define PROFILE_CFG_AO "ao." | |
935 | |
33363 | 936 static void load_per_output_config(m_config_t *conf, char *cfg, char *out) |
25641 | 937 { |
33363 | 938 char profile[strlen(cfg) + strlen(out) + 1]; |
25641 | 939 m_profile_t *p; |
940 | |
33363 | 941 sprintf(profile, "%s%s", cfg, out); |
942 p = m_config_get_profile(conf, profile); | |
943 if (p) { | |
944 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_LoadingExtensionProfile, profile); | |
945 m_config_set_profile(conf, p); | |
25641 | 946 } |
947 } | |
948 | |
29561
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
949 /** |
33287 | 950 * @brief Tries to load a config file. |
29561
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
951 * @return 0 if file was not found, 1 otherwise |
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
952 */ |
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
953 static int try_load_config(m_config_t *conf, const char *file) |
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
954 { |
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
955 struct stat st; |
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
956 if (stat(file, &st)) |
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
957 return 0; |
33363 | 958 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_LoadingConfig, file); |
959 m_config_parse_config_file(conf, file); | |
29561
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
960 return 1; |
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
961 } |
82ff5f35918a
Factor out code to try and load a config file only if it exists.
reimar
parents:
29432
diff
changeset
|
962 |
33363 | 963 static void load_per_file_config(m_config_t *conf, const char *const file) |
8614
49e36bf2f342
The patch adds support for a per-file config, which is loaded before
arpi
parents:
8612
diff
changeset
|
964 { |
49e36bf2f342
The patch adds support for a per-file config, which is loaded before
arpi
parents:
8612
diff
changeset
|
965 char *confpath; |
29594
331320b4557b
Limit amount of data allocated on stack, strlen(filename) is not a good idea for
reimar
parents:
29592
diff
changeset
|
966 char cfg[PATH_MAX]; |
32588 | 967 const char *name; |
8614
49e36bf2f342
The patch adds support for a per-file config, which is loaded before
arpi
parents:
8612
diff
changeset
|
968 |
29594
331320b4557b
Limit amount of data allocated on stack, strlen(filename) is not a good idea for
reimar
parents:
29592
diff
changeset
|
969 if (strlen(file) > PATH_MAX - 14) { |
331320b4557b
Limit amount of data allocated on stack, strlen(filename) is not a good idea for
reimar
parents:
29592
diff
changeset
|
970 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Filename is too long, can not load file or directory specific config files\n"); |
331320b4557b
Limit amount of data allocated on stack, strlen(filename) is not a good idea for
reimar
parents:
29592
diff
changeset
|
971 return; |
331320b4557b
Limit amount of data allocated on stack, strlen(filename) is not a good idea for
reimar
parents:
29592
diff
changeset
|
972 } |
33363 | 973 sprintf(cfg, "%s.conf", file); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
974 |
32588 | 975 name = mp_basename(cfg); |
29592
ccdfb20713eb
Add support for directory-specific mplayer.conf configuration file.
reimar
parents:
29571
diff
changeset
|
976 if (use_filedir_conf) { |
29594
331320b4557b
Limit amount of data allocated on stack, strlen(filename) is not a good idea for
reimar
parents:
29592
diff
changeset
|
977 char dircfg[PATH_MAX]; |
29592
ccdfb20713eb
Add support for directory-specific mplayer.conf configuration file.
reimar
parents:
29571
diff
changeset
|
978 strcpy(dircfg, cfg); |
ccdfb20713eb
Add support for directory-specific mplayer.conf configuration file.
reimar
parents:
29571
diff
changeset
|
979 strcpy(dircfg + (name - cfg), "mplayer.conf"); |
ccdfb20713eb
Add support for directory-specific mplayer.conf configuration file.
reimar
parents:
29571
diff
changeset
|
980 try_load_config(conf, dircfg); |
ccdfb20713eb
Add support for directory-specific mplayer.conf configuration file.
reimar
parents:
29571
diff
changeset
|
981 |
ccdfb20713eb
Add support for directory-specific mplayer.conf configuration file.
reimar
parents:
29571
diff
changeset
|
982 if (try_load_config(conf, cfg)) |
ccdfb20713eb
Add support for directory-specific mplayer.conf configuration file.
reimar
parents:
29571
diff
changeset
|
983 return; |
ccdfb20713eb
Add support for directory-specific mplayer.conf configuration file.
reimar
parents:
29571
diff
changeset
|
984 } |
ccdfb20713eb
Add support for directory-specific mplayer.conf configuration file.
reimar
parents:
29571
diff
changeset
|
985 |
33363 | 986 if ((confpath = get_path(name)) != NULL) { |
987 try_load_config(conf, confpath); | |
988 | |
989 free(confpath); | |
8614
49e36bf2f342
The patch adds support for a per-file config, which is loaded before
arpi
parents:
8612
diff
changeset
|
990 } |
49e36bf2f342
The patch adds support for a per-file config, which is loaded before
arpi
parents:
8612
diff
changeset
|
991 } |
49e36bf2f342
The patch adds support for a per-file config, which is loaded before
arpi
parents:
8612
diff
changeset
|
992 |
18316
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
993 /* When libmpdemux performs a blocking operation (network connection or |
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
994 * cache filling) if the operation fails we use this function to check |
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
995 * if it was interrupted by the user. |
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
996 * The function returns a new value for eof. */ |
33363 | 997 static int libmpdemux_was_interrupted(int eof) |
998 { | |
999 mp_cmd_t *cmd; | |
1000 if ((cmd = mp_input_get_cmd(0, 0, 0)) != NULL) { | |
1001 switch (cmd->id) { | |
1002 case MP_CMD_QUIT: | |
1003 run_command(mpctx, cmd); | |
1004 case MP_CMD_PLAY_TREE_STEP: | |
1005 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY; | |
1006 mpctx->play_tree_step = (cmd->args[0].v.i == 0) ? 1 : cmd->args[0].v.i; | |
1007 break; | |
1008 case MP_CMD_PLAY_TREE_UP_STEP: | |
1009 eof = (cmd->args[0].v.i > 0) ? PT_UP_NEXT : PT_UP_PREV; | |
1010 break; | |
1011 case MP_CMD_PLAY_ALT_SRC_STEP: | |
1012 eof = (cmd->args[0].v.i > 0) ? PT_NEXT_SRC : PT_PREV_SRC; | |
1013 break; | |
1014 } | |
1015 mp_cmd_free(cmd); | |
1016 } | |
1017 return eof; | |
4825
41d2da3bd082
Make blocking call in libmpdemux interuptable (only with new input,
albeu
parents:
4818
diff
changeset
|
1018 } |
41d2da3bd082
Make blocking call in libmpdemux interuptable (only with new input,
albeu
parents:
4818
diff
changeset
|
1019 |
33363 | 1020 static int playtree_add_playlist(play_tree_t *entry) |
8925
5c15777f1c07
this patch adds an fallback to playlist (any but the plaintext-list format)
arpi
parents:
8913
diff
changeset
|
1021 { |
33363 | 1022 play_tree_add_bpf(entry, filename); |
9301
7841308ad250
this patch fixes latest bug, discovered by .so ... (relative filenames &
arpi
parents:
9291
diff
changeset
|
1023 |
27343 | 1024 #ifdef CONFIG_GUI |
33363 | 1025 if (use_gui) { |
1026 if (entry) { | |
33752 | 1027 guiPlaylistAdd(entry, mconfig); |
33363 | 1028 play_tree_free_list(entry, 1); |
1029 } | |
1030 } else | |
9291
64b8c5a07c2c
- It adds an option enqueue/noenqueue, so users can choose if they want to
arpi
parents:
9217
diff
changeset
|
1031 #endif |
33363 | 1032 { |
1033 if (!entry) { | |
1034 entry = mpctx->playtree_iter->tree; | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1035 if (play_tree_iter_step(mpctx->playtree_iter, 1, 0) != PLAY_TREE_ITER_ENTRY) |
33363 | 1036 return PT_NEXT_ENTRY; |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1037 // Loop with a single file |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1038 if (mpctx->playtree_iter->tree == entry && |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1039 play_tree_iter_up_step(mpctx->playtree_iter, 1, 0) != PLAY_TREE_ITER_ENTRY) |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1040 return PT_NEXT_ENTRY; |
33363 | 1041 play_tree_remove(entry, 1, 1); |
1042 return PT_NEXT_SRC; | |
1043 } | |
1044 play_tree_insert_entry(mpctx->playtree_iter->tree, entry); | |
1045 play_tree_set_params_from(entry, mpctx->playtree_iter->tree); | |
1046 entry = mpctx->playtree_iter->tree; | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1047 if (play_tree_iter_step(mpctx->playtree_iter, 1, 0) != PLAY_TREE_ITER_ENTRY) |
33363 | 1048 return PT_NEXT_ENTRY; |
1049 play_tree_remove(entry, 1, 1); | |
8925
5c15777f1c07
this patch adds an fallback to playlist (any but the plaintext-list format)
arpi
parents:
8913
diff
changeset
|
1050 } |
5c15777f1c07
this patch adds an fallback to playlist (any but the plaintext-list format)
arpi
parents:
8913
diff
changeset
|
1051 return PT_NEXT_SRC; |
5c15777f1c07
this patch adds an fallback to playlist (any but the plaintext-list format)
arpi
parents:
8913
diff
changeset
|
1052 } |
5c15777f1c07
this patch adds an fallback to playlist (any but the plaintext-list format)
arpi
parents:
8913
diff
changeset
|
1053 |
25264
42aa06653705
When auto loading subs, log warning instead of error for load failure.
ulion
parents:
25251
diff
changeset
|
1054 void add_subtitles(char *filename, float fps, int noerr) |
9870
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1055 { |
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1056 sub_data *subd; |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
1057 #ifdef CONFIG_ASS |
31792
55dacfca4a43
Rename libass types to match upstream libass >= 0.9.7
greg
parents:
31762
diff
changeset
|
1058 ASS_Track *asst = 0; |
18937
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18934
diff
changeset
|
1059 #endif |
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18934
diff
changeset
|
1060 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1061 if (filename == NULL || mpctx->set_of_sub_size >= MAX_SUBTITLE_FILES) |
33363 | 1062 return; |
9870
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1063 |
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1064 subd = sub_read_file(filename, fps); |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
1065 #ifdef CONFIG_ASS |
18937
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18934
diff
changeset
|
1066 if (ass_enabled) |
27393 | 1067 #ifdef CONFIG_ICONV |
30473
7446f58b6899
Add support for loading ASS subtitles through the stream layer and thus e.g.
reimar
parents:
30429
diff
changeset
|
1068 asst = ass_read_stream(ass_library, filename, sub_cp); |
20477 | 1069 #else |
30473
7446f58b6899
Add support for loading ASS subtitles through the stream layer and thus e.g.
reimar
parents:
30429
diff
changeset
|
1070 asst = ass_read_stream(ass_library, filename, 0); |
20477 | 1071 #endif |
19468 | 1072 if (ass_enabled && subd && !asst) |
20477 | 1073 asst = ass_read_subdata(ass_library, subd, fps); |
19401
c0c3a2f8bb32
Add subdata to ass_track conversion for external subtitles.
eugeni
parents:
19380
diff
changeset
|
1074 |
25264
42aa06653705
When auto loading subs, log warning instead of error for load failure.
ulion
parents:
25251
diff
changeset
|
1075 if (!asst && !subd) |
18937
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18934
diff
changeset
|
1076 #else |
33363 | 1077 if (!subd) |
18937
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18934
diff
changeset
|
1078 #endif |
25264
42aa06653705
When auto loading subs, log warning instead of error for load failure.
ulion
parents:
25251
diff
changeset
|
1079 mp_msg(MSGT_CPLAYER, noerr ? MSGL_WARN : MSGL_ERR, MSGTR_CantLoadSub, |
33363 | 1080 filename_recode(filename)); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1081 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
1082 #ifdef CONFIG_ASS |
33363 | 1083 if (!asst && !subd) |
1084 return; | |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1085 mpctx->set_of_ass_tracks[mpctx->set_of_sub_size] = asst; |
18937
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18934
diff
changeset
|
1086 #else |
33363 | 1087 if (!subd) |
1088 return; | |
18937
9e95ac641e77
Initial libass release (without mencoder support).
eugeni
parents:
18934
diff
changeset
|
1089 #endif |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1090 mpctx->set_of_subtitles[mpctx->set_of_sub_size] = subd; |
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1091 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_ID=%d\n", mpctx->set_of_sub_size); |
22002
ebd2d5efb11b
filename double-conversion, especially usefull for CJK users :-)
gpoirier
parents:
21930
diff
changeset
|
1092 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_FILE_SUB_FILENAME=%s\n", |
33363 | 1093 filename_recode(filename)); |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1094 ++mpctx->set_of_sub_size; |
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1095 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AddedSubtitleFile, mpctx->set_of_sub_size, |
33363 | 1096 filename_recode(filename)); |
9870
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1097 } |
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1098 |
33363 | 1099 static int add_vob_subtitle(const char *vobname, const char *const ifo, int force, void *spu) |
32724
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1100 { |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1101 if (!vobname) |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1102 return 0; |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1103 |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1104 assert(!vo_vobsub); |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1105 |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1106 vo_vobsub = vobsub_open(vobname, ifo, force, spu); |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1107 |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1108 if (!vo_vobsub && force) |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1109 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_CantLoadSub, |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1110 filename_recode(vobname)); |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1111 |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1112 return !!vo_vobsub; |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1113 } |
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
1114 |
13501
a5004eb92a79
fix sub_select fiasco with global sub numbering. now multiple sub sources can be managed in essentially one list.
joey
parents:
13500
diff
changeset
|
1115 // FIXME: if/when the GUI calls this, global sub numbering gets (potentially) broken. |
17566
f580a7755ac5
Patch by Stefan Huehner / stefan % huehner ! org \
rathann
parents:
17553
diff
changeset
|
1116 void update_set_of_subtitles(void) |
33363 | 1117 { |
9870
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1118 // subdata was changed, set_of_sub... have to be updated. |
33363 | 1119 sub_data **const set_of_subtitles = mpctx->set_of_subtitles; |
9870
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1120 int i; |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1121 if (mpctx->set_of_sub_size > 0 && subdata == NULL) { // *subdata was deleted |
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1122 for (i = mpctx->set_of_sub_pos + 1; i < mpctx->set_of_sub_size; ++i) |
33363 | 1123 set_of_subtitles[i - 1] = set_of_subtitles[i]; |
1124 set_of_subtitles[mpctx->set_of_sub_size - 1] = NULL; | |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1125 --mpctx->set_of_sub_size; |
33363 | 1126 if (mpctx->set_of_sub_size > 0) |
1127 subdata = set_of_subtitles[mpctx->set_of_sub_pos = 0]; | |
1128 } else if (mpctx->set_of_sub_size > 0 && subdata != NULL) { // *subdata was changed | |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1129 set_of_subtitles[mpctx->set_of_sub_pos] = subdata; |
33363 | 1130 } else if (mpctx->set_of_sub_size <= 0 && subdata != NULL) { // *subdata was added |
1131 set_of_subtitles[mpctx->set_of_sub_pos = mpctx->set_of_sub_size] = subdata; | |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1132 ++mpctx->set_of_sub_size; |
9870
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1133 } |
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1134 } |
09d630a4f991
support for multiple subtitle files by Marcin Wojdyr <wojdyr@unipress.waw.pl>
henry
parents:
9831
diff
changeset
|
1135 |
13710 | 1136 /** |
33287 | 1137 * @brief Append a formatted string. |
1138 * @param buf buffer to print into | |
1139 * @param pos position of terminating 0 in buf | |
1140 * @param len maximum number of characters in buf, not including terminating 0 | |
1141 * @param format printf format string | |
13857
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1142 */ |
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1143 static void saddf(char *buf, unsigned *pos, int len, const char *format, ...) |
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1144 { |
33363 | 1145 va_list va; |
1146 va_start(va, format); | |
1147 *pos += vsnprintf(&buf[*pos], len - *pos, format, va); | |
1148 va_end(va); | |
1149 if (*pos >= len) { | |
1150 buf[len] = 0; | |
1151 *pos = len; | |
1152 } | |
13857
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1153 } |
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1154 |
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1155 /** |
33287 | 1156 * @brief Append time in the hh:mm:ss.f format. |
1157 * @param buf buffer to print into | |
1158 * @param pos position of terminating 0 in buf | |
1159 * @param len maximum number of characters in buf, not including terminating 0 | |
1160 * @param time time value to convert/append | |
16654 | 1161 */ |
33363 | 1162 static void sadd_hhmmssf(char *buf, unsigned *pos, int len, float time) |
1163 { | |
1164 int64_t tenths = 10 * time; | |
1165 int f1 = tenths % 10; | |
1166 int ss = (tenths / 10) % 60; | |
1167 int mm = (tenths / 600) % 60; | |
1168 int hh = tenths / 36000; | |
1169 if (time <= 0) { | |
1170 saddf(buf, pos, len, "unknown"); | |
1171 return; | |
1172 } | |
1173 if (hh > 0) | |
1174 saddf(buf, pos, len, "%2d:", hh); | |
1175 if (hh > 0 || mm > 0) | |
1176 saddf(buf, pos, len, "%02d:", mm); | |
1177 saddf(buf, pos, len, "%02d.%1d", ss, f1); | |
16654 | 1178 } |
1179 | |
1180 /** | |
33287 | 1181 * @brief Print the status line. |
1182 * @param a_pos audio position | |
1183 * @param a_v A-V desynchronization | |
1184 * @param corr amount out A-V synchronization | |
13857
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1185 */ |
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1186 static void print_status(float a_pos, float a_v, float corr) |
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1187 { |
33363 | 1188 sh_video_t *const sh_video = mpctx->sh_video; |
1189 int width; | |
1190 char *line; | |
1191 unsigned pos = 0; | |
1192 get_screen_size(); | |
1193 if (screen_width > 0) | |
1194 width = screen_width; | |
1195 else | |
1196 width = 80; | |
27727
48c1ae64255b
Replace preprocessor check for WIN32 with checks for __MINGW32__ and __CYGWIN__.
diego
parents:
27635
diff
changeset
|
1197 #if defined(__MINGW32__) || defined(__CYGWIN__) || defined(__OS2__) |
33363 | 1198 /* Windows command line is broken (MinGW's rxvt works, but we |
1199 * should not depend on that). */ | |
1200 width--; | |
13928 | 1201 #endif |
33363 | 1202 line = malloc(width + 1); // one additional char for the terminating null |
1203 | |
1204 // Audio time | |
1205 if (mpctx->sh_audio) { | |
1206 saddf(line, &pos, width, "A:%6.1f ", a_pos); | |
1207 if (!sh_video) { | |
1208 float len = demuxer_get_time_length(mpctx->demuxer); | |
1209 saddf(line, &pos, width, "("); | |
1210 sadd_hhmmssf(line, &pos, width, a_pos); | |
1211 saddf(line, &pos, width, ") of %.1f (", len); | |
1212 sadd_hhmmssf(line, &pos, width, len); | |
1213 saddf(line, &pos, width, ") "); | |
1214 } | |
13857
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1215 } |
33363 | 1216 |
1217 // Video time | |
1218 if (sh_video) | |
1219 saddf(line, &pos, width, "V:%6.1f ", sh_video->pts); | |
1220 | |
1221 // A-V sync | |
1222 if (mpctx->sh_audio && sh_video) | |
1223 saddf(line, &pos, width, "A-V:%7.3f ct:%7.3f ", a_v, corr); | |
1224 | |
1225 // Video stats | |
1226 if (sh_video) | |
1227 saddf(line, &pos, width, "%3d/%3d ", | |
1228 (int)sh_video->num_frames, | |
1229 (int)sh_video->num_frames_decoded); | |
1230 | |
1231 // CPU usage | |
1232 if (sh_video) { | |
1233 if (sh_video->timer > 0.5) | |
1234 saddf(line, &pos, width, "%2d%% %2d%% %4.1f%% ", | |
1235 (int)(100.0 * video_time_usage * playback_speed / (double)sh_video->timer), | |
1236 (int)(100.0 * vout_time_usage * playback_speed / (double)sh_video->timer), | |
1237 (100.0 * audio_time_usage * playback_speed / (double)sh_video->timer)); | |
1238 else | |
1239 saddf(line, &pos, width, "??%% ??%% ??,?%% "); | |
1240 } else if (mpctx->sh_audio) { | |
1241 if (mpctx->delay > 0.5) | |
1242 saddf(line, &pos, width, "%4.1f%% ", | |
1243 100.0 * audio_time_usage / (double)mpctx->delay); | |
1244 else | |
1245 saddf(line, &pos, width, "??,?%% "); | |
1246 } | |
1247 | |
1248 // VO stats | |
1249 if (sh_video) | |
1250 saddf(line, &pos, width, "%d %d ", drop_frame_cnt, output_quality); | |
13857
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1251 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
1252 #ifdef CONFIG_STREAM_CACHE |
33363 | 1253 // cache stats |
1254 if (stream_cache_size > 0) | |
1255 saddf(line, &pos, width, "%d%% ", cache_fill_status(mpctx->stream)); | |
13857
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1256 #endif |
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1257 |
33363 | 1258 // other |
1259 if (playback_speed != 1) | |
1260 saddf(line, &pos, width, "%4.2fx ", playback_speed); | |
1261 | |
1262 // end | |
1263 if (erase_to_end_of_line) { | |
1264 line[pos] = 0; | |
1265 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s%s\r", line, erase_to_end_of_line); | |
1266 } else { | |
1267 memset(&line[pos], ' ', width - pos); | |
1268 line[width] = 0; | |
1269 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, "%s\r", line); | |
1270 } | |
1271 free(line); | |
13857
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1272 } |
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1273 |
33390 | 1274 static void stream_dump_progress_start(void) |
1275 { | |
1276 stream_dump_start_time = stream_dump_last_print_time = GetTimerMS(); | |
1277 } | |
1278 | |
1279 static void stream_dump_progress(uint64_t len, stream_t *stream) | |
1280 { | |
1281 unsigned t = GetTimerMS(); | |
1282 uint64_t start = stream->start_pos; | |
1283 uint64_t end = stream->end_pos; | |
1284 uint64_t pos = stream->pos; | |
1285 | |
1286 stream_dump_count += len; | |
1287 if (t - stream_dump_last_print_time - 1000 > UINT_MAX / 2) | |
1288 return; | |
1289 stream_dump_last_print_time = t; | |
1290 /* TODO: pretty print sizes; ETA */ | |
1291 if (end > start && pos >= start && pos <= end) { | |
1292 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, MSGTR_DumpBytesWrittenPercent, | |
1293 stream_dump_count, 100.0 * (pos - start) / (end - start)); | |
1294 } else { | |
1295 mp_msg(MSGT_STATUSLINE, MSGL_STATUS, MSGTR_DumpBytesWritten, | |
1296 stream_dump_count); | |
1297 } | |
1298 } | |
1299 | |
1300 static void stream_dump_progress_end(void) | |
1301 { | |
1302 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_DumpBytesWrittenTo, | |
1303 stream_dump_count, stream_dump_name); | |
1304 } | |
1305 | |
13857
38424a8eb0ea
reworked the status line to avoid scrolling and remove duplicate code.
reimar
parents:
13794
diff
changeset
|
1306 /** |
33287 | 1307 * @brief Build a chain of audio filters that converts the input format. |
13710 | 1308 * to the ao's format, taking into account the current playback_speed. |
33287 | 1309 * @param sh_audio describes the requested input format of the chain. |
1310 * @param ao_data describes the requested output format of the chain. | |
13710 | 1311 */ |
32561
17bb5a38ae2e
build_afilter_chain is not safe to use directly, thus make it
reimar
parents:
32543
diff
changeset
|
1312 static int build_afilter_chain(sh_audio_t *sh_audio, ao_data_t *ao_data) |
13710 | 1313 { |
33363 | 1314 int new_srate; |
1315 int result; | |
1316 if (!sh_audio) { | |
27343 | 1317 #ifdef CONFIG_GUI |
33363 | 1318 if (use_gui) |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
1319 gui(GUI_SET_AFILTER, NULL); |
14254 | 1320 #endif |
33363 | 1321 mpctx->mixer.afilter = NULL; |
1322 return 0; | |
24896 | 1323 } |
33363 | 1324 if (af_control_any_rev(sh_audio->afilter, |
1325 AF_CONTROL_PLAYBACK_SPEED | AF_CONTROL_SET, | |
1326 &playback_speed)) { | |
1327 new_srate = sh_audio->samplerate; | |
1328 } else { | |
1329 new_srate = sh_audio->samplerate * playback_speed; | |
1330 if (new_srate != ao_data->samplerate) { | |
1331 // limits are taken from libaf/af_resample.c | |
1332 if (new_srate < 8000) | |
1333 new_srate = 8000; | |
1334 if (new_srate > 192000) | |
1335 new_srate = 192000; | |
1336 playback_speed = (float)new_srate / (float)sh_audio->samplerate; | |
1337 } | |
1338 } | |
1339 result = init_audio_filters(sh_audio, new_srate, | |
1340 &ao_data->samplerate, &ao_data->channels, &ao_data->format); | |
1341 mpctx->mixer.afilter = sh_audio->afilter; | |
27343 | 1342 #ifdef CONFIG_GUI |
33363 | 1343 if (use_gui) |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
1344 gui(GUI_SET_AFILTER, sh_audio->afilter); |
14254 | 1345 #endif |
33363 | 1346 return result; |
13710 | 1347 } |
8800 | 1348 |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1349 typedef struct mp_osd_msg mp_osd_msg_t; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1350 struct mp_osd_msg { |
33363 | 1351 mp_osd_msg_t *prev; ///< Previous message on the stack |
33287 | 1352 char msg[128]; ///< Message text |
33363 | 1353 int id, level, started; |
1354 unsigned time; ///< Display duration in ms | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1355 }; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1356 |
33363 | 1357 static mp_osd_msg_t *osd_msg_stack; ///< OSD message stack |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1358 |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1359 /** |
33287 | 1360 * @brief Add a message on the OSD message stack. |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1361 * |
33287 | 1362 * If a message with the same id is already present in the stack |
1363 * it is pulled on top of the stack, otherwise a new message is created. | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1364 */ |
33363 | 1365 void set_osd_msg(int id, int level, int time, const char *fmt, ...) |
1366 { | |
1367 mp_osd_msg_t *msg, *last = NULL; | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1368 va_list va; |
17929
6fe95ee39422
Fix osd_show_msg alignment and make sure msg strings
albeu
parents:
17928
diff
changeset
|
1369 int r; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1370 |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1371 // look if the id is already in the stack |
33363 | 1372 for (msg = osd_msg_stack; msg && msg->id != id; |
1373 last = msg, msg = msg->prev) ; | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1374 // not found: alloc it |
33363 | 1375 if (!msg) { |
1376 msg = calloc(1, sizeof(mp_osd_msg_t)); | |
1377 msg->prev = osd_msg_stack; | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1378 osd_msg_stack = msg; |
33363 | 1379 } else if (last) { // found, but it's not on top of the stack |
1380 last->prev = msg->prev; | |
1381 msg->prev = osd_msg_stack; | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1382 osd_msg_stack = msg; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1383 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1384 // write the msg |
33363 | 1385 va_start(va, fmt); |
28378 | 1386 r = vsnprintf(msg->msg, 128, fmt, va); |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1387 va_end(va); |
33363 | 1388 if (r >= 128) |
1389 msg->msg[127] = 0; | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1390 // set id and time |
33363 | 1391 msg->id = id; |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1392 msg->level = level; |
33363 | 1393 msg->time = time; |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1394 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1395 |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1396 /** |
33287 | 1397 * @brief Remove a message from the OSD stack. |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1398 * |
33287 | 1399 * This function can be used to get rid of a message right away. |
17057
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1400 */ |
33363 | 1401 void rm_osd_msg(int id) |
1402 { | |
1403 mp_osd_msg_t *msg, *last = NULL; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1404 |
17057
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1405 // Search for the msg |
33363 | 1406 for (msg = osd_msg_stack; msg && msg->id != id; |
1407 last = msg, msg = msg->prev) ; | |
1408 if (!msg) | |
1409 return; | |
17057
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1410 |
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1411 // Detach it from the stack and free it |
33363 | 1412 if (last) |
17057
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1413 last->prev = msg->prev; |
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1414 else |
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1415 osd_msg_stack = msg->prev; |
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1416 free(msg); |
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1417 } |
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1418 |
d301c1833d12
Add a function to remove osd msg and use it to remove the "OSD: enabled"
albeu
parents:
17021
diff
changeset
|
1419 /** |
33287 | 1420 * @brief Remove all messages from the OSD stack. |
17938 | 1421 */ |
33363 | 1422 static void clear_osd_msgs(void) |
1423 { | |
1424 mp_osd_msg_t *msg = osd_msg_stack, *prev = NULL; | |
1425 while (msg) { | |
17938 | 1426 prev = msg->prev; |
1427 free(msg); | |
1428 msg = prev; | |
1429 } | |
1430 osd_msg_stack = NULL; | |
1431 } | |
1432 | |
1433 /** | |
33287 | 1434 * @brief Get the current message from the OSD stack. |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1435 * |
33287 | 1436 * This function decrements the message timer and destroys the old ones. |
1437 * The message that should be displayed is returned (if any). | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1438 */ |
33363 | 1439 static mp_osd_msg_t *get_osd_msg(void) |
1440 { | |
1441 mp_osd_msg_t *msg, *prev, *last = NULL; | |
33257
40b298f9dc77
Remove some useless static and global zero initializations.
cboesch
parents:
33256
diff
changeset
|
1442 static unsigned last_update; |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1443 unsigned now = GetTimerMS(); |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1444 unsigned diff; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1445 char hidden_dec_done = 0; |
24091 | 1446 |
1447 if (osd_visible) { | |
33363 | 1448 // 36000000 means max timed visibility is 1 hour into the future, if |
1449 // the difference is greater assume it's wrapped around from below 0 | |
1450 if (osd_visible - now > 36000000) { | |
1451 osd_visible = 0; | |
1452 vo_osd_progbar_type = -1; // disable | |
1453 vo_osd_changed(OSDTYPE_PROGBAR); | |
1454 if (mpctx->osd_function != OSD_PAUSE) | |
1455 mpctx->osd_function = OSD_PLAY; | |
1456 } | |
24091 | 1457 } |
1458 | |
33363 | 1459 if (!last_update) |
1460 last_update = now; | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1461 diff = now >= last_update ? now - last_update : 0; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1462 |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1463 last_update = now; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1464 |
18316
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
1465 // Look for the first message in the stack with high enough level. |
33363 | 1466 for (msg = osd_msg_stack; msg; last = msg, msg = prev) { |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1467 prev = msg->prev; |
33363 | 1468 if (msg->level > osd_level && hidden_dec_done) |
1469 continue; | |
18316
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
1470 // The message has a high enough level or it is the first hidden one |
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
1471 // in both cases we decrement the timer or kill it. |
33363 | 1472 if (!msg->started || msg->time > diff) { |
1473 if (msg->started) | |
1474 msg->time -= diff; | |
1475 else | |
1476 msg->started = 1; | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1477 // display it |
33363 | 1478 if (msg->level <= osd_level) |
1479 return msg; | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1480 hidden_dec_done = 1; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1481 continue; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1482 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1483 // kill the message |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1484 free(msg); |
33363 | 1485 if (last) { |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1486 last->prev = prev; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1487 msg = last; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1488 } else { |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1489 osd_msg_stack = prev; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1490 msg = NULL; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1491 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1492 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1493 // Nothing found |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1494 return NULL; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1495 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1496 |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1497 /** |
33287 | 1498 * @brief Display the OSD bar. |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1499 * |
18316
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
1500 * Display the OSD bar or fall back on a simple message. |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1501 */ |
33363 | 1502 void set_osd_bar(int type, const char *name, double min, double max, double val) |
1503 { | |
1504 if (osd_level < 1) | |
1505 return; | |
1506 | |
1507 if (mpctx->sh_video) { | |
18287
292337d09af2
Remove updating of vo_mouse_timer_const from the main loop and also
uau
parents:
18286
diff
changeset
|
1508 osd_visible = (GetTimerMS() + 1000) | 1; |
33363 | 1509 vo_osd_progbar_type = type; |
1510 vo_osd_progbar_value = 256 * (val - min) / (max - min); | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1511 vo_osd_changed(OSDTYPE_PROGBAR); |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1512 return; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1513 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1514 |
33363 | 1515 set_osd_msg(OSD_MSG_BAR, 1, osd_duration, "%s: %d %%", |
1516 name, ROUND(100 * (val - min) / (max - min))); | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1517 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1518 |
29670
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1519 /** |
33287 | 1520 * @brief Display text subtitles on the OSD. |
29670
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1521 */ |
33363 | 1522 void set_osd_subtitle(subtitle *subs) |
1523 { | |
29670
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1524 int i; |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1525 vo_sub = subs; |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1526 vo_osd_changed(OSDTYPE_SUBTITLE); |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1527 if (!mpctx->sh_video) { |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1528 // reverse order, since newest set_osd_msg is displayed first |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1529 for (i = SUB_MAX_TEXT - 1; i >= 0; i--) { |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1530 if (!subs || i >= subs->lines || !subs->text[i]) |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1531 rm_osd_msg(OSD_MSG_SUB_BASE + i); |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1532 else { |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1533 // HACK: currently display time for each sub line except the last is set to 2 seconds. |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1534 int display_time = i == subs->lines - 1 ? 180000 : 2000; |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1535 set_osd_msg(OSD_MSG_SUB_BASE + i, 1, display_time, "%s", subs->text[i]); |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1536 } |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1537 } |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1538 } |
2e3751815a21
Add support for displaying subtitles on the command-line when playing
reimar
parents:
29668
diff
changeset
|
1539 } |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1540 |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1541 /** |
33287 | 1542 * @brief Update the OSD message line. |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1543 * |
18316
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
1544 * This function displays the current message on the vo OSD or on the term. |
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
1545 * If the stack is empty and the OSD level is high enough the timer |
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
1546 * is displayed (only on the vo OSD). |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1547 */ |
33363 | 1548 static void update_osd_msg(void) |
1549 { | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1550 mp_osd_msg_t *msg; |
28378 | 1551 static char osd_text[128] = ""; |
1552 static char osd_text_timer[128]; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1553 |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1554 // we need some mem for vo_osd_text |
33363 | 1555 vo_osd_text = (unsigned char *)osd_text; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1556 |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1557 // Look if we have a msg |
33363 | 1558 if ((msg = get_osd_msg())) { |
1559 if (strcmp(osd_text, msg->msg)) { | |
1560 strncpy((char *)osd_text, msg->msg, 127); | |
1561 if (mpctx->sh_video) | |
1562 vo_osd_changed(OSDTYPE_OSD); | |
1563 else if (term_osd) | |
1564 mp_msg(MSGT_CPLAYER, MSGL_STATUS, "%s%s\n", term_osd_esc, msg->msg); | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1565 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1566 return; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1567 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1568 |
33363 | 1569 if (mpctx->sh_video) { |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1570 // fallback on the timer |
33363 | 1571 if (osd_level >= 2) { |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1572 int len = demuxer_get_time_length(mpctx->demuxer); |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1573 int percentage = -1; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1574 char percentage_text[10]; |
32793 | 1575 char fractions_text[4]; |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1576 int pts = demuxer_get_current_time(mpctx->demuxer); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1577 |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1578 if (mpctx->osd_show_percentage) |
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1579 percentage = demuxer_get_percent_pos(mpctx->demuxer); |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1580 |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1581 if (percentage >= 0) |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1582 snprintf(percentage_text, 9, " (%d%%)", percentage); |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1583 else |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1584 percentage_text[0] = 0; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1585 |
33363 | 1586 if (osd_fractions == 1) { |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1587 // print fractions as sub-second timestamp |
32793 | 1588 snprintf(fractions_text, sizeof(fractions_text), ".%02d", |
33363 | 1589 (int)((mpctx->sh_video->pts - pts) * 100 + 0.5) |
32793 | 1590 % 100); |
33363 | 1591 } else if (osd_fractions == 2) { |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1592 // print fractions by estimating the frame count within the |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1593 // second |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1594 |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1595 // rounding or cutting off numbers after the decimal point |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1596 // causes problems because of float's precision and movies, |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1597 // whose first frame is not exactly at timestamp 0. Therefore, |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1598 // we add 0.2 and cut off at the decimal point, which proved |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1599 // as good heuristic |
32793 | 1600 snprintf(fractions_text, sizeof(fractions_text), ".%02d", |
33363 | 1601 (int)((mpctx->sh_video->pts - pts) * |
1602 mpctx->sh_video->fps + 0.2)); | |
32793 | 1603 } else { |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1604 // do not print fractions |
32793 | 1605 fractions_text[0] = 0; |
1606 } | |
1607 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1608 if (osd_level == 3) |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1609 snprintf(osd_text_timer, 63, |
32793 | 1610 "%c %02d:%02d:%02d%s / %02d:%02d:%02d%s", |
33363 | 1611 mpctx->osd_function, pts / 3600, (pts / 60) % 60, pts % 60, |
1612 fractions_text, len / 3600, (len / 60) % 60, len % 60, | |
32793 | 1613 percentage_text); |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1614 else |
32793 | 1615 snprintf(osd_text_timer, 63, "%c %02d:%02d:%02d%s%s", |
33363 | 1616 mpctx->osd_function, pts / 3600, (pts / 60) % 60, |
1617 pts % 60, fractions_text, percentage_text); | |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1618 } else |
33363 | 1619 osd_text_timer[0] = 0; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1620 |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1621 // always decrement the percentage timer |
33363 | 1622 if (mpctx->osd_show_percentage) |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1623 mpctx->osd_show_percentage--; |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1624 |
33363 | 1625 if (strcmp(osd_text, osd_text_timer)) { |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1626 strncpy(osd_text, osd_text_timer, 63); |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1627 vo_osd_changed(OSDTYPE_OSD); |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1628 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1629 return; |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1630 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1631 |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1632 // Clear the term osd line |
33363 | 1633 if (term_osd && osd_text[0]) { |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1634 osd_text[0] = 0; |
33363 | 1635 printf("%s\n", term_osd_esc); |
16992
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1636 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1637 } |
58e526a6a8dc
Big OSD cleanup. Replace the mess with 100's of counter vars
albeu
parents:
16968
diff
changeset
|
1638 |
33363 | 1639 void reinit_audio_chain(void) |
1640 { | |
29801
7ac1f37f8aa5
Whitespace cosmetics: reindent reinit_audio_chain function
reimar
parents:
29800
diff
changeset
|
1641 if (!mpctx->sh_audio) |
7ac1f37f8aa5
Whitespace cosmetics: reindent reinit_audio_chain function
reimar
parents:
29800
diff
changeset
|
1642 return; |
31671
4541f1921482
Add support for parameter changes (e.g. channel count) during playback.
reimar
parents:
31670
diff
changeset
|
1643 if (!(initialized_flags & INITIALIZED_ACODEC)) { |
33363 | 1644 current_module = "init_audio_codec"; |
1645 mp_msg(MSGT_CPLAYER, MSGL_INFO, "==========================================================================\n"); | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
1646 if (!init_best_audio_codec(mpctx->sh_audio, audio_codec_list, audio_fm_list)) |
31673 | 1647 goto init_error; |
33363 | 1648 initialized_flags |= INITIALIZED_ACODEC; |
1649 mp_msg(MSGT_CPLAYER, MSGL_INFO, "==========================================================================\n"); | |
31671
4541f1921482
Add support for parameter changes (e.g. channel count) during playback.
reimar
parents:
31670
diff
changeset
|
1650 } |
4541f1921482
Add support for parameter changes (e.g. channel count) during playback.
reimar
parents:
31670
diff
changeset
|
1651 |
4541f1921482
Add support for parameter changes (e.g. channel count) during playback.
reimar
parents:
31670
diff
changeset
|
1652 if (!(initialized_flags & INITIALIZED_AO)) { |
33363 | 1653 current_module = "af_preinit"; |
1654 ao_data.samplerate = force_srate; | |
1655 ao_data.channels = 0; | |
1656 ao_data.format = audio_output_format; | |
31673 | 1657 // first init to detect best values |
33363 | 1658 if (!init_audio_filters(mpctx->sh_audio, // preliminary init |
1659 // input: | |
1660 mpctx->sh_audio->samplerate, | |
1661 // output: | |
1662 &ao_data.samplerate, &ao_data.channels, &ao_data.format)) { | |
1663 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_AudioFilterChainPreinitError); | |
31673 | 1664 exit_player(EXIT_ERROR); |
1665 } | |
33363 | 1666 current_module = "ao2_init"; |
31673 | 1667 mpctx->audio_out = init_best_audio_out(audio_driver_list, |
1668 0, // plugin flag | |
1669 ao_data.samplerate, | |
1670 ao_data.channels, | |
1671 ao_data.format, 0); | |
33363 | 1672 if (!mpctx->audio_out) { |
1673 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_CannotInitAO); | |
31673 | 1674 goto init_error; |
1675 } | |
33363 | 1676 initialized_flags |= INITIALIZED_AO; |
1677 mp_msg(MSGT_CPLAYER, MSGL_INFO, "AO: [%s] %dHz %dch %s (%d bytes per sample)\n", | |
31673 | 1678 mpctx->audio_out->info->short_name, |
1679 ao_data.samplerate, ao_data.channels, | |
1680 af_fmt2str_short(ao_data.format), | |
33363 | 1681 af_fmt2bits(ao_data.format) / 8); |
1682 mp_msg(MSGT_CPLAYER, MSGL_V, "AO: Description: %s\nAO: Author: %s\n", | |
31673 | 1683 mpctx->audio_out->info->name, mpctx->audio_out->info->author); |
33363 | 1684 if (strlen(mpctx->audio_out->info->comment) > 0) |
1685 mp_msg(MSGT_CPLAYER, MSGL_V, "AO: Comment: %s\n", mpctx->audio_out->info->comment); | |
31671
4541f1921482
Add support for parameter changes (e.g. channel count) during playback.
reimar
parents:
31670
diff
changeset
|
1686 } |
4541f1921482
Add support for parameter changes (e.g. channel count) during playback.
reimar
parents:
31670
diff
changeset
|
1687 |
18679
e52e101e9e59
moved audio codec/filters/out to a separate function that is called both at init() and to switch audio stream
nicodvb
parents:
18406
diff
changeset
|
1688 // init audio filters: |
33363 | 1689 current_module = "af_init"; |
1690 if (!build_afilter_chain(mpctx->sh_audio, &ao_data)) { | |
1691 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_NoMatchingFilter); | |
29801
7ac1f37f8aa5
Whitespace cosmetics: reindent reinit_audio_chain function
reimar
parents:
29800
diff
changeset
|
1692 goto init_error; |
18679
e52e101e9e59
moved audio codec/filters/out to a separate function that is called both at init() and to switch audio stream
nicodvb
parents:
18406
diff
changeset
|
1693 } |
29801
7ac1f37f8aa5
Whitespace cosmetics: reindent reinit_audio_chain function
reimar
parents:
29800
diff
changeset
|
1694 mpctx->mixer.audio_out = mpctx->audio_out; |
33363 | 1695 mpctx->mixer.volstep = volstep; |
29801
7ac1f37f8aa5
Whitespace cosmetics: reindent reinit_audio_chain function
reimar
parents:
29800
diff
changeset
|
1696 return; |
29794
df1826dcdb2d
Disable audio when initializing the filter chain fails (can happen e.g. when the hwmpa
reimar
parents:
29785
diff
changeset
|
1697 |
df1826dcdb2d
Disable audio when initializing the filter chain fails (can happen e.g. when the hwmpa
reimar
parents:
29785
diff
changeset
|
1698 init_error: |
33363 | 1699 uninit_player(INITIALIZED_ACODEC | INITIALIZED_AO); // close codec and possibly AO |
1700 mpctx->sh_audio = mpctx->d_audio->sh = NULL; // -> nosound | |
29794
df1826dcdb2d
Disable audio when initializing the filter chain fails (can happen e.g. when the hwmpa
reimar
parents:
29785
diff
changeset
|
1701 mpctx->d_audio->id = -2; |
18679
e52e101e9e59
moved audio codec/filters/out to a separate function that is called both at init() and to switch audio stream
nicodvb
parents:
18406
diff
changeset
|
1702 } |
e52e101e9e59
moved audio codec/filters/out to a separate function that is called both at init() and to switch audio stream
nicodvb
parents:
18406
diff
changeset
|
1703 |
18710
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1704 // Return pts value corresponding to the end point of audio written to the |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1705 // ao so far. |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1706 static double written_audio_pts(sh_audio_t *sh_audio, demux_stream_t *d_audio) |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1707 { |
24913 | 1708 double buffered_output; |
18710
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1709 // first calculate the end pts of audio that has been output by decoder |
32863
674117ab7ce7
Move MPlayer's audio pts calculation code into mp_common.c and reuse it in
reimar
parents:
32814
diff
changeset
|
1710 double a_pts = calc_a_pts(sh_audio, d_audio); |
18710
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1711 // Now a_pts hopefully holds the pts for end of audio from decoder. |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1712 // Substract data in buffers between decoder and audio out. |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1713 |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1714 // Decoded but not filtered |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1715 a_pts -= sh_audio->a_buffer_len / (double)sh_audio->o_bps; |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1716 |
24900 | 1717 // Data buffered in audio filters, measured in bytes of "missing" output |
24913 | 1718 buffered_output = af_calc_delay(sh_audio->afilter); |
24900 | 1719 |
18710
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1720 // Data that was ready for ao but was buffered because ao didn't fully |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1721 // accept everything to internal buffers yet |
24900 | 1722 buffered_output += sh_audio->a_out_buffer_len; |
1723 | |
1724 // Filters divide audio length by playback_speed, so multiply by it | |
1725 // to get the length in original units without speedup or slowdown | |
1726 a_pts -= buffered_output * playback_speed / ao_data.bps; | |
18710
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1727 |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1728 return a_pts; |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1729 } |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1730 |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1731 // Return pts value corresponding to currently playing audio. |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
1732 double playing_audio_pts(sh_audio_t *sh_audio, demux_stream_t *d_audio, |
33363 | 1733 const ao_functions_t *audio_out) |
18710
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1734 { |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1735 return written_audio_pts(sh_audio, d_audio) - playback_speed * |
33363 | 1736 audio_out->get_delay(); |
18710
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1737 } |
c528c6c518f1
Clean up audio pts handling, make audio pts tracking in the audio-only
uau
parents:
18682
diff
changeset
|
1738 |
33495 | 1739 static int is_at_end(MPContext *mpctx, m_time_size_t *end_at, double pts) |
1740 { | |
1741 switch (end_at->type) { | |
1742 case END_AT_TIME: return end_at->pos <= pts; | |
1743 case END_AT_SIZE: return end_at->pos <= stream_tell(mpctx->stream); | |
1744 } | |
1745 return 0; | |
1746 } | |
1747 | |
33363 | 1748 static int check_framedrop(double frame_time) |
1749 { | |
1750 // check for frame-drop: | |
1751 current_module = "check_framedrop"; | |
1752 if (mpctx->sh_audio && !mpctx->d_audio->eof) { | |
1753 static int dropped_frames; | |
1754 float delay = playback_speed * mpctx->audio_out->get_delay(); | |
1755 float d = delay - mpctx->delay; | |
1756 ++total_frame_cnt; | |
1757 // we should avoid dropping too many frames in sequence unless we | |
1758 // are too late. and we allow 100ms A-V delay here: | |
1759 if (d < -dropped_frames * frame_time - 0.100 && | |
1760 mpctx->osd_function != OSD_PAUSE) { | |
1761 ++drop_frame_cnt; | |
1762 ++dropped_frames; | |
1763 return frame_dropping; | |
1764 } else | |
1765 dropped_frames = 0; | |
1766 } | |
1767 return 0; | |
26228
089dc00275b6
Experimental support for -framedrop with -correct-pts.
reimar
parents:
26159
diff
changeset
|
1768 } |
089dc00275b6
Experimental support for -framedrop with -correct-pts.
reimar
parents:
26159
diff
changeset
|
1769 |
18917
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1770 static int generate_video_frame(sh_video_t *sh_video, demux_stream_t *d_video) |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1771 { |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1772 unsigned char *start; |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1773 int in_size; |
33363 | 1774 int hit_eof = 0; |
18917
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1775 double pts; |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1776 |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1777 while (1) { |
33363 | 1778 int drop_frame = check_framedrop(sh_video->frametime); |
1779 void *decoded_frame; | |
1780 current_module = "decode video"; | |
1781 // XXX Time used in this call is not counted in any performance | |
1782 // timer now, OSD is not updated correctly for filter-added frames | |
1783 if (vf_output_queued_frame(sh_video->vfilter)) | |
1784 break; | |
1785 current_module = "video_read_frame"; | |
1786 in_size = ds_get_packet_pts(d_video, &start, &pts); | |
1787 if (in_size < 0) { | |
1788 // try to extract last frames in case of decoder lag | |
1789 in_size = 0; | |
1790 pts = MP_NOPTS_VALUE; | |
1791 hit_eof = 1; | |
1792 } | |
1793 if (in_size > max_framesize) | |
1794 max_framesize = in_size; | |
1795 current_module = "decode video"; | |
1796 decoded_frame = decode_video(sh_video, start, in_size, drop_frame, pts, NULL); | |
1797 if (decoded_frame) { | |
1798 update_subtitles(sh_video, sh_video->pts, mpctx->d_sub, 0); | |
1799 update_teletext(sh_video, mpctx->demuxer, 0); | |
1800 update_osd_msg(); | |
1801 current_module = "filter video"; | |
1802 if (filter_video(sh_video, decoded_frame, sh_video->pts)) | |
1803 break; | |
1804 } else if (drop_frame) | |
1805 return -1; | |
1806 if (hit_eof) | |
1807 return 0; | |
18917
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1808 } |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1809 return 1; |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1810 } |
d9a75b26da6c
Add a new video pts tracking mode, enabled by option -correct-pts.
uau
parents:
18913
diff
changeset
|
1811 |
20887 | 1812 #ifdef HAVE_RTC |
33363 | 1813 int rtc_fd = -1; |
20887 | 1814 #endif |
1815 | |
1816 static float timing_sleep(float time_frame) | |
1817 { | |
1818 #ifdef HAVE_RTC | |
33363 | 1819 if (rtc_fd >= 0) { |
1820 // -------- RTC ----------- | |
1821 current_module = "sleep_rtc"; | |
20887 | 1822 while (time_frame > 0.000) { |
33363 | 1823 unsigned long rtc_ts; |
1824 if (read(rtc_fd, &rtc_ts, sizeof(rtc_ts)) <= 0) | |
1825 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCReadError, strerror(errno)); | |
1826 time_frame -= GetRelativeTime(); | |
1827 } | |
20887 | 1828 } else |
1829 #endif | |
1830 { | |
33363 | 1831 // assume kernel HZ=100 for softsleep, works with larger HZ but with |
1832 // unnecessarily high CPU usage | |
1833 float margin = softsleep ? 0.011 : 0; | |
1834 current_module = "sleep_timer"; | |
1835 while (time_frame > margin) { | |
1836 usec_sleep(1000000 * (time_frame - margin)); | |
1837 time_frame -= GetRelativeTime(); | |
1838 } | |
1839 if (softsleep) { | |
1840 current_module = "sleep_soft"; | |
1841 if (time_frame < 0) | |
1842 mp_msg(MSGT_AVSYNC, MSGL_WARN, MSGTR_SoftsleepUnderflow); | |
1843 while (time_frame > 0) | |
1844 time_frame -= GetRelativeTime(); // burn the CPU | |
1845 } | |
20887 | 1846 } |
1847 return time_frame; | |
1848 } | |
1849 | |
31612
7fc1f051a19f
Change global subtitle numbering scheme so that demuxers can "asynchronously"
reimar
parents:
31607
diff
changeset
|
1850 static int select_subtitle(MPContext *mpctx) |
31201
203789464176
misc cosmetics: K&R style nits, #include placement, indentation
diego
parents:
31148
diff
changeset
|
1851 { |
33363 | 1852 // find the best sub to use |
1853 int id; | |
1854 int found = 0; | |
1855 mpctx->global_sub_pos = -1; // no subs by default | |
1856 if (vobsub_id >= 0) { | |
1857 // if user asks for a vobsub id, use that first. | |
1858 id = vobsub_id; | |
1859 found = mp_property_do("sub_vob", M_PROPERTY_SET, &id, mpctx) == M_PROPERTY_OK; | |
1860 } | |
1861 | |
1862 if (!found && dvdsub_id >= 0) { | |
1863 // if user asks for a dvd sub id, use that next. | |
1864 id = dvdsub_id; | |
1865 found = mp_property_do("sub_demux", M_PROPERTY_SET, &id, mpctx) == M_PROPERTY_OK; | |
31612
7fc1f051a19f
Change global subtitle numbering scheme so that demuxers can "asynchronously"
reimar
parents:
31607
diff
changeset
|
1866 } |
33363 | 1867 |
1868 if (!found) { | |
1869 // if there are text subs to use, use those. (autosubs come last here) | |
1870 id = 0; | |
1871 found = mp_property_do("sub_file", M_PROPERTY_SET, &id, mpctx) == M_PROPERTY_OK; | |
1872 } | |
1873 | |
1874 if (!found && dvdsub_id == -1) { | |
1875 // finally select subs by language and container hints | |
1876 if (dvdsub_id == -1 && dvdsub_lang) | |
1877 dvdsub_id = demuxer_sub_track_by_lang(mpctx->demuxer, dvdsub_lang); | |
1878 if (dvdsub_id == -1) | |
1879 dvdsub_id = demuxer_default_sub_track(mpctx->demuxer); | |
1880 if (dvdsub_id >= 0) { | |
1881 id = dvdsub_id; | |
1882 found = mp_property_do("sub_demux", M_PROPERTY_SET, &id, mpctx) == M_PROPERTY_OK; | |
1883 } | |
1884 } | |
1885 return found; | |
29854
00ebdb6cb87f
Factor out code that decides which subtitle to play.
reimar
parents:
29804
diff
changeset
|
1886 } |
00ebdb6cb87f
Factor out code that decides which subtitle to play.
reimar
parents:
29804
diff
changeset
|
1887 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
1888 #ifdef CONFIG_DVDNAV |
25824 | 1889 #ifndef FF_B_TYPE |
1890 #define FF_B_TYPE 3 | |
1891 #endif | |
33287 | 1892 /** |
1893 * @brief Store decoded video image. | |
1894 */ | |
33363 | 1895 static mp_image_t *mp_dvdnav_copy_mpi(mp_image_t *to_mpi, |
1896 mp_image_t *from_mpi) | |
1897 { | |
25824 | 1898 mp_image_t *mpi; |
1899 | |
33287 | 1900 // do not store B-frames |
25824 | 1901 if (from_mpi->pict_type == FF_B_TYPE) |
1902 return to_mpi; | |
1903 | |
1904 if (to_mpi && | |
1905 to_mpi->w == from_mpi->w && | |
1906 to_mpi->h == from_mpi->h && | |
1907 to_mpi->imgfmt == from_mpi->imgfmt) | |
1908 mpi = to_mpi; | |
1909 else { | |
1910 if (to_mpi) | |
1911 free_mp_image(to_mpi); | |
1912 if (from_mpi->w == 0 || from_mpi->h == 0) | |
1913 return NULL; | |
33363 | 1914 mpi = alloc_mpi(from_mpi->w, from_mpi->h, from_mpi->imgfmt); |
25824 | 1915 } |
1916 | |
33363 | 1917 copy_mpi(mpi, from_mpi); |
25824 | 1918 return mpi; |
1919 } | |
1920 | |
33363 | 1921 static void mp_dvdnav_reset_stream(MPContext *ctx) |
1922 { | |
25824 | 1923 if (ctx->sh_video) { |
33287 | 1924 // clear video pts |
33363 | 1925 ctx->d_video->pts = 0.0f; |
1926 ctx->sh_video->pts = 0.0f; | |
1927 ctx->sh_video->i_pts = 0.0f; | |
25824 | 1928 ctx->sh_video->last_pts = 0.0f; |
33363 | 1929 ctx->sh_video->num_buffered_pts = 0; |
1930 ctx->sh_video->num_frames = 0; | |
25824 | 1931 ctx->sh_video->num_frames_decoded = 0; |
1932 ctx->sh_video->timer = 0.0f; | |
1933 ctx->sh_video->stream_delay = 0.0f; | |
33363 | 1934 ctx->sh_video->timer = 0; |
25824 | 1935 ctx->demuxer->stream_pts = MP_NOPTS_VALUE; |
1936 } | |
1937 | |
1938 if (ctx->sh_audio) { | |
33287 | 1939 // free audio packets and reset |
25824 | 1940 ds_free_packs(ctx->d_audio); |
1941 audio_delay -= ctx->sh_audio->stream_delay; | |
33363 | 1942 ctx->delay = -audio_delay; |
25824 | 1943 ctx->audio_out->reset(); |
1944 resync_audio_stream(ctx->sh_audio); | |
1945 } | |
1946 | |
1947 audio_delay = 0.0f; | |
31612
7fc1f051a19f
Change global subtitle numbering scheme so that demuxers can "asynchronously"
reimar
parents:
31607
diff
changeset
|
1948 mpctx->sub_counts[SUB_SOURCE_DEMUX] = mp_dvdnav_number_of_subs(mpctx->stream); |
29855
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
1949 if (dvdsub_lang && dvdsub_id == dvdsub_lang_id) { |
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
1950 dvdsub_lang_id = mp_dvdnav_sid_from_lang(ctx->stream, dvdsub_lang); |
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
1951 if (dvdsub_lang_id != dvdsub_id) { |
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
1952 dvdsub_id = dvdsub_lang_id; |
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
1953 select_subtitle(ctx); |
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
1954 } |
5e279f7d7e5d
Remember which subtitle was auto-selected for dvdnav due to -slang
reimar
parents:
29854
diff
changeset
|
1955 } |
25824 | 1956 |
33287 | 1957 // clear all EOF related flags |
25824 | 1958 ctx->d_video->eof = ctx->d_audio->eof = ctx->stream->eof = 0; |
1959 } | |
1960 | |
33287 | 1961 /** |
1962 * @brief Restore last decoded DVDNAV (still frame). | |
1963 */ | |
25824 | 1964 static mp_image_t *mp_dvdnav_restore_smpi(int *in_size, |
1965 unsigned char **start, | |
1966 mp_image_t *decoded_frame) | |
1967 { | |
1968 if (mpctx->stream->type != STREAMTYPE_DVDNAV) | |
1969 return decoded_frame; | |
1970 | |
33510 | 1971 // a change occurred in dvdnav stream |
33363 | 1972 if (mp_dvdnav_cell_has_changed(mpctx->stream, 0)) { |
25824 | 1973 mp_dvdnav_read_wait(mpctx->stream, 1, 1); |
1974 mp_dvdnav_context_free(mpctx); | |
1975 mp_dvdnav_reset_stream(mpctx); | |
1976 mp_dvdnav_read_wait(mpctx->stream, 0, 1); | |
33363 | 1977 mp_dvdnav_cell_has_changed(mpctx->stream, 1); |
25824 | 1978 } |
1979 | |
1980 if (*in_size < 0) { | |
1981 float len; | |
1982 | |
33287 | 1983 // display still frame, if any |
25824 | 1984 if (mpctx->nav_smpi && !mpctx->nav_buffer) |
1985 decoded_frame = mpctx->nav_smpi; | |
1986 | |
33287 | 1987 // increment video frame: continue playing after still frame |
25824 | 1988 len = demuxer_get_time_length(mpctx->demuxer); |
1989 if (mpctx->sh_video->pts >= len && | |
1990 mpctx->sh_video->pts > 0.0 && len > 0.0) { | |
1991 mp_dvdnav_skip_still(mpctx->stream); | |
1992 mp_dvdnav_skip_wait(mpctx->stream); | |
1993 } | |
1994 mpctx->sh_video->pts += 1 / mpctx->sh_video->fps; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
1995 |
25824 | 1996 if (mpctx->nav_buffer) { |
33363 | 1997 *start = mpctx->nav_start; |
25824 | 1998 *in_size = mpctx->nav_in_size; |
1999 if (mpctx->nav_start) | |
33363 | 2000 memcpy(*start, mpctx->nav_buffer, mpctx->nav_in_size); |
25824 | 2001 } |
2002 } | |
2003 | |
2004 return decoded_frame; | |
2005 } | |
2006 | |
33287 | 2007 /** |
2008 * @brief Save last decoded DVDNAV (still frame). | |
2009 */ | |
25824 | 2010 static void mp_dvdnav_save_smpi(int in_size, |
2011 unsigned char *start, | |
2012 mp_image_t *decoded_frame) | |
2013 { | |
2014 if (mpctx->stream->type != STREAMTYPE_DVDNAV) | |
2015 return; | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
2016 |
32511
b39155e98ac3
Remove some useless NULL pointer checks before invoking free() on the pointer.
diego
parents:
32467
diff
changeset
|
2017 free(mpctx->nav_buffer); |
33511
d30b183c3fdc
Make mp_dvdnav_save_smpi more robust and ensure consistency of nav buffer.
reimar
parents:
33510
diff
changeset
|
2018 mpctx->nav_buffer = NULL; |
d30b183c3fdc
Make mp_dvdnav_save_smpi more robust and ensure consistency of nav buffer.
reimar
parents:
33510
diff
changeset
|
2019 mpctx->nav_start = NULL; |
d30b183c3fdc
Make mp_dvdnav_save_smpi more robust and ensure consistency of nav buffer.
reimar
parents:
33510
diff
changeset
|
2020 mpctx->nav_in_size = -1; |
d30b183c3fdc
Make mp_dvdnav_save_smpi more robust and ensure consistency of nav buffer.
reimar
parents:
33510
diff
changeset
|
2021 |
d30b183c3fdc
Make mp_dvdnav_save_smpi more robust and ensure consistency of nav buffer.
reimar
parents:
33510
diff
changeset
|
2022 if (in_size > 0) |
33875 | 2023 mpctx->nav_buffer = malloc(in_size); |
33511
d30b183c3fdc
Make mp_dvdnav_save_smpi more robust and ensure consistency of nav buffer.
reimar
parents:
33510
diff
changeset
|
2024 if (mpctx->nav_buffer) { |
33875 | 2025 mpctx->nav_start = start; |
33511
d30b183c3fdc
Make mp_dvdnav_save_smpi more robust and ensure consistency of nav buffer.
reimar
parents:
33510
diff
changeset
|
2026 mpctx->nav_in_size = in_size; |
33363 | 2027 memcpy(mpctx->nav_buffer, start, in_size); |
33511
d30b183c3fdc
Make mp_dvdnav_save_smpi more robust and ensure consistency of nav buffer.
reimar
parents:
33510
diff
changeset
|
2028 } |
25824 | 2029 |
2030 if (decoded_frame && mpctx->nav_smpi != decoded_frame) | |
33363 | 2031 mpctx->nav_smpi = mp_dvdnav_copy_mpi(mpctx->nav_smpi, decoded_frame); |
25824 | 2032 } |
33363 | 2033 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
2034 #endif /* CONFIG_DVDNAV */ |
25824 | 2035 |
20887 | 2036 static void adjust_sync_and_print_status(int between_frames, float timing_error) |
2037 { | |
33363 | 2038 current_module = "av_sync"; |
2039 | |
2040 if (mpctx->sh_audio) { | |
2041 double a_pts, v_pts; | |
2042 | |
2043 if (autosync) | |
2044 /* | |
2045 * If autosync is enabled, the value for delay must be calculated | |
2046 * a bit differently. It is set only to the difference between | |
2047 * the audio and video timers. Any attempt to include the real | |
2048 * or corrected delay causes the pts_correction code below to | |
2049 * try to correct for the changes in delay which autosync is | |
2050 * trying to measure. This keeps the two from competing, but still | |
2051 * allows the code to correct for PTS drift *only*. (Using a delay | |
2052 * value here, even a "corrected" one, would be incompatible with | |
2053 * autosync mode.) | |
2054 */ | |
2055 a_pts = written_audio_pts(mpctx->sh_audio, mpctx->d_audio) - mpctx->delay; | |
2056 else | |
2057 a_pts = playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out); | |
2058 | |
2059 v_pts = mpctx->sh_video->pts; | |
2060 | |
2061 { | |
2062 static int drop_message; | |
2063 double AV_delay = a_pts - audio_delay - v_pts; | |
2064 double x; | |
2065 // not a good idea to do A-V correction with with bogus values | |
2066 if (a_pts == MP_NOPTS_VALUE || v_pts == MP_NOPTS_VALUE) | |
2067 AV_delay = 0; | |
2068 if (AV_delay > 0.5 && drop_frame_cnt > 50 && drop_message == 0) { | |
2069 ++drop_message; | |
2070 mp_msg(MSGT_AVSYNC, MSGL_WARN, MSGTR_SystemTooSlow); | |
2071 } | |
2072 if (autosync) | |
2073 x = AV_delay * 0.1f; | |
2074 else | |
2075 /* Do not correct target time for the next frame if this frame | |
2076 * was late not because of wrong target time but because the | |
2077 * target time could not be met */ | |
2078 x = (AV_delay + timing_error * playback_speed) * 0.1f; | |
2079 if (x < -max_pts_correction) | |
2080 x = -max_pts_correction; | |
2081 else if (x > max_pts_correction) | |
2082 x = max_pts_correction; | |
2083 if (default_max_pts_correction >= 0) | |
2084 max_pts_correction = default_max_pts_correction; | |
2085 else | |
2086 max_pts_correction = mpctx->sh_video->frametime * 0.10; // +-10% of time | |
2087 if (!between_frames) { | |
2088 mpctx->delay += x; | |
2089 c_total += x; | |
2090 } | |
2091 if (!quiet) | |
2092 print_status(a_pts - audio_delay, AV_delay, c_total); | |
2093 } | |
20887 | 2094 } else { |
33363 | 2095 // No audio: |
2096 | |
2097 if (!quiet) | |
2098 print_status(0, 0, 0); | |
20887 | 2099 } |
2100 } | |
2101 | |
20986 | 2102 static int fill_audio_out_buffers(void) |
20889
35f37142f3b8
Move audio playing code from main() into a separate function.
uau
parents:
20888
diff
changeset
|
2103 { |
35f37142f3b8
Move audio playing code from main() into a separate function.
uau
parents:
20888
diff
changeset
|
2104 unsigned int t; |
35f37142f3b8
Move audio playing code from main() into a separate function.
uau
parents:
20888
diff
changeset
|
2105 double tt; |
35f37142f3b8
Move audio playing code from main() into a separate function.
uau
parents:
20888
diff
changeset
|
2106 int playsize; |
33363 | 2107 int playflags = 0; |
2108 int audio_eof = 0; | |
20890
9e2d69c27ddb
Try filling audio buffers more if they're very large, add some comments.
uau
parents:
20889
diff
changeset
|
2109 int bytes_to_write; |
31671
4541f1921482
Add support for parameter changes (e.g. channel count) during playback.
reimar
parents:
31670
diff
changeset
|
2110 int format_change = 0; |
33363 | 2111 sh_audio_t *const sh_audio = mpctx->sh_audio; |
2112 | |
2113 current_module = "play_audio"; | |
20889
35f37142f3b8
Move audio playing code from main() into a separate function.
uau
parents:
20888
diff
changeset
|
2114 |
35f37142f3b8
Move audio playing code from main() into a separate function.
uau
parents:
20888
diff
changeset
|
2115 while (1) { |
33363 | 2116 int sleep_time; |
2117 // all the current uses of ao_data.pts seem to be in aos that handle | |
2118 // sync completely wrong; there should be no need to use ao_data.pts | |
2119 // in get_space() | |
2120 ao_data.pts = ((mpctx->sh_video ? mpctx->sh_video->timer : 0) + mpctx->delay) * 90000.0; | |
2121 bytes_to_write = mpctx->audio_out->get_space(); | |
2122 if (mpctx->sh_video || bytes_to_write >= ao_data.outburst) | |
2123 break; | |
2124 | |
2125 // handle audio-only case: | |
2126 // this is where mplayer sleeps during audio-only playback | |
2127 // to avoid 100% CPU use | |
2128 sleep_time = (ao_data.outburst - bytes_to_write) * 1000 / ao_data.bps; | |
2129 if (sleep_time < 10) | |
2130 sleep_time = 10; // limit to 100 wakeups per second | |
2131 usec_sleep(sleep_time * 1000); | |
20890
9e2d69c27ddb
Try filling audio buffers more if they're very large, add some comments.
uau
parents:
20889
diff
changeset
|
2132 } |
9e2d69c27ddb
Try filling audio buffers more if they're very large, add some comments.
uau
parents:
20889
diff
changeset
|
2133 |
9e2d69c27ddb
Try filling audio buffers more if they're very large, add some comments.
uau
parents:
20889
diff
changeset
|
2134 while (bytes_to_write) { |
33363 | 2135 int res; |
2136 playsize = bytes_to_write; | |
2137 if (playsize > MAX_OUTBURST) | |
2138 playsize = MAX_OUTBURST; | |
2139 bytes_to_write -= playsize; | |
2140 | |
2141 // Fill buffer if needed: | |
2142 current_module = "decode_audio"; | |
2143 t = GetTimer(); | |
2144 if (!format_change) { | |
2145 res = mp_decode_audio(sh_audio, playsize); | |
2146 format_change = res == -2; | |
2147 } | |
2148 if (!format_change && res < 0) // EOF or error | |
2149 if (mpctx->d_audio->eof) { | |
2150 audio_eof = 1; | |
2151 if (sh_audio->a_out_buffer_len == 0) | |
2152 return 0; | |
2153 } | |
2154 t = GetTimer() - t; | |
2155 tt = t * 0.000001f; | |
2156 audio_time_usage += tt; | |
2157 if (playsize > sh_audio->a_out_buffer_len) { | |
2158 playsize = sh_audio->a_out_buffer_len; | |
2159 if (audio_eof || format_change) | |
2160 playflags |= AOPLAY_FINAL_CHUNK; | |
2161 } | |
2162 if (!playsize) | |
2163 break; | |
2164 | |
2165 // play audio: | |
2166 current_module = "play_audio"; | |
2167 | |
2168 // Is this pts value actually useful for the aos that access it? | |
2169 // They're obviously badly broken in the way they handle av sync; | |
2170 // would not having access to this make them more broken? | |
2171 ao_data.pts = ((mpctx->sh_video ? mpctx->sh_video->timer : 0) + mpctx->delay) * 90000.0; | |
2172 playsize = mpctx->audio_out->play(sh_audio->a_out_buffer, playsize, playflags); | |
2173 | |
2174 if (playsize > 0) { | |
2175 sh_audio->a_out_buffer_len -= playsize; | |
2176 memmove(sh_audio->a_out_buffer, &sh_audio->a_out_buffer[playsize], | |
2177 sh_audio->a_out_buffer_len); | |
2178 mpctx->delay += playback_speed * playsize / (double)ao_data.bps; | |
2179 } else if ((format_change || audio_eof) && mpctx->audio_out->get_delay() < .04) { | |
2180 // Sanity check to avoid hanging in case current ao doesn't output | |
2181 // partial chunks and doesn't check for AOPLAY_FINAL_CHUNK | |
2182 mp_msg(MSGT_CPLAYER, MSGL_WARN, "Audio output truncated at end.\n"); | |
2183 sh_audio->a_out_buffer_len = 0; | |
2184 } | |
20889
35f37142f3b8
Move audio playing code from main() into a separate function.
uau
parents:
20888
diff
changeset
|
2185 } |
31671
4541f1921482
Add support for parameter changes (e.g. channel count) during playback.
reimar
parents:
31670
diff
changeset
|
2186 if (format_change) { |
33363 | 2187 uninit_player(INITIALIZED_AO); |
2188 reinit_audio_chain(); | |
31671
4541f1921482
Add support for parameter changes (e.g. channel count) during playback.
reimar
parents:
31670
diff
changeset
|
2189 } |
20889
35f37142f3b8
Move audio playing code from main() into a separate function.
uau
parents:
20888
diff
changeset
|
2190 return 1; |
35f37142f3b8
Move audio playing code from main() into a separate function.
uau
parents:
20888
diff
changeset
|
2191 } |
20887 | 2192 |
33155
16e5b7f9ddb8
Send udp master updates also when paused and let slave use normal timing
reimar
parents:
33154
diff
changeset
|
2193 static void handle_udp_master(double time) |
16e5b7f9ddb8
Send udp master updates also when paused and let slave use normal timing
reimar
parents:
33154
diff
changeset
|
2194 { |
16e5b7f9ddb8
Send udp master updates also when paused and let slave use normal timing
reimar
parents:
33154
diff
changeset
|
2195 #ifdef CONFIG_NETWORKING |
16e5b7f9ddb8
Send udp master updates also when paused and let slave use normal timing
reimar
parents:
33154
diff
changeset
|
2196 if (udp_master) { |
33363 | 2197 char current_time[256]; |
2198 snprintf(current_time, sizeof(current_time), "%f", time); | |
2199 send_udp(udp_ip, udp_port, current_time); | |
33155
16e5b7f9ddb8
Send udp master updates also when paused and let slave use normal timing
reimar
parents:
33154
diff
changeset
|
2200 } |
16e5b7f9ddb8
Send udp master updates also when paused and let slave use normal timing
reimar
parents:
33154
diff
changeset
|
2201 #endif /* CONFIG_NETWORKING */ |
16e5b7f9ddb8
Send udp master updates also when paused and let slave use normal timing
reimar
parents:
33154
diff
changeset
|
2202 } |
16e5b7f9ddb8
Send udp master updates also when paused and let slave use normal timing
reimar
parents:
33154
diff
changeset
|
2203 |
20986 | 2204 static int sleep_until_update(float *time_frame, float *aq_sleep_time) |
20899
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2205 { |
20904 | 2206 int frame_time_remaining = 0; |
33363 | 2207 current_module = "calc_sleep_time"; |
20899
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2208 |
31982
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
2209 #ifdef CONFIG_NETWORKING |
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
2210 if (udp_slave) { |
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
2211 int udp_master_exited = udp_slave_sync(mpctx); |
33486
e46989c7f47e
Change -udp-slave code to temporarily fall back to normal
reimar
parents:
33481
diff
changeset
|
2212 if (udp_master_exited > 0) { |
31982
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
2213 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_MasterQuit); |
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
2214 exit_player(EXIT_QUIT); |
33486
e46989c7f47e
Change -udp-slave code to temporarily fall back to normal
reimar
parents:
33481
diff
changeset
|
2215 } else if (udp_master_exited == 0) |
e46989c7f47e
Change -udp-slave code to temporarily fall back to normal
reimar
parents:
33481
diff
changeset
|
2216 return 0; |
31982
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
2217 } |
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
2218 #endif /* CONFIG_NETWORKING */ |
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
2219 |
20899
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2220 *time_frame -= GetRelativeTime(); // reset timer |
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2221 |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
2222 if (mpctx->sh_audio && !mpctx->d_audio->eof) { |
33363 | 2223 float delay = mpctx->audio_out->get_delay(); |
2224 mp_dbg(MSGT_AVSYNC, MSGL_DBG2, "delay=%f\n", delay); | |
2225 | |
2226 if (autosync) { | |
2227 /* | |
2228 * Adjust this raw delay value by calculating the expected | |
2229 * delay for this frame and generating a new value which is | |
2230 * weighted between the two. The higher autosync is, the | |
2231 * closer to the delay value gets to that which "-nosound" | |
2232 * would have used, and the longer it will take for A/V | |
2233 * sync to settle at the right value (but it eventually will.) | |
2234 * This settling time is very short for values below 100. | |
2235 */ | |
2236 float predicted = mpctx->delay / playback_speed + *time_frame; | |
2237 float difference = delay - predicted; | |
2238 delay = predicted + difference / (float)autosync; | |
2239 } | |
2240 | |
2241 *time_frame = delay - mpctx->delay / playback_speed; | |
2242 | |
2243 // delay = amount of audio buffered in soundcard/driver | |
2244 if (delay > 0.25) | |
2245 delay = 0.25; | |
2246 else if (delay < 0.10) | |
2247 delay = 0.10; | |
2248 if (*time_frame > delay * 0.6) { | |
2249 // sleep time too big - may cause audio drops (buffer underrun) | |
2250 frame_time_remaining = 1; | |
2251 *time_frame = delay * 0.5; | |
2252 } | |
20899
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2253 } else { |
33363 | 2254 // If we're lagging more than 200 ms behind the right playback rate, |
2255 // don't try to "catch up". | |
2256 // If benchmark is set always output frames as fast as possible | |
2257 // without sleeping. | |
2258 if (*time_frame < -0.2 || benchmark) | |
2259 *time_frame = 0; | |
20899
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2260 } |
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2261 |
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2262 *aq_sleep_time += *time_frame; |
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2263 |
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2264 //============================== SLEEP: =================================== |
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2265 |
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2266 // flag 256 means: libvo driver does its timing (dvb card) |
33363 | 2267 if (*time_frame > 0.001 && !(vo_flags & 256)) |
2268 *time_frame = timing_sleep(*time_frame); | |
31982
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
2269 |
33155
16e5b7f9ddb8
Send udp master updates also when paused and let slave use normal timing
reimar
parents:
33154
diff
changeset
|
2270 handle_udp_master(mpctx->sh_video->pts); |
31982
184969a3a437
Add synchronization of multiple MPlayer instances over UDP.
reimar
parents:
31977
diff
changeset
|
2271 |
20899
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2272 return frame_time_remaining; |
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2273 } |
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2274 |
33363 | 2275 int reinit_video_chain(void) |
2276 { | |
2277 sh_video_t *const sh_video = mpctx->sh_video; | |
2278 double ar = -1.0; | |
20947
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2279 //================== Init VIDEO (codec & libvo) ========================== |
33363 | 2280 if (!fixed_vo || !(initialized_flags & INITIALIZED_VO)) { |
2281 current_module = "preinit_libvo"; | |
2282 | |
2283 //shouldn't we set dvideo->id=-2 when we fail? | |
2284 vo_config_count = 0; | |
2285 //if((mpctx->video_out->preinit(vo_subdevice))!=0){ | |
2286 if (!(mpctx->video_out = init_best_video_out(video_driver_list))) { | |
2287 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_ErrorInitializingVODevice); | |
2288 goto err_out; | |
2289 } | |
2290 initialized_flags |= INITIALIZED_VO; | |
20947
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2291 } |
33363 | 2292 |
2293 if (stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_ASPECT_RATIO, &ar) != STREAM_UNSUPPORTED) | |
2294 mpctx->sh_video->stream_aspect = ar; | |
2295 current_module = "init_video_filters"; | |
2296 { | |
2297 char *vf_arg[] = { "_oldargs_", (char *)mpctx->video_out, NULL }; | |
2298 sh_video->vfilter = vf_open_filter(NULL, "vo", vf_arg); | |
2299 } | |
27345
b597fd2924b4
Rename preprocessor directive HAVE_MENU --> CONFIG_MENU.
diego
parents:
27343
diff
changeset
|
2300 #ifdef CONFIG_MENU |
33363 | 2301 if (use_menu) { |
2302 char *vf_arg[] = { "_oldargs_", menu_root, NULL }; | |
2303 vf_menu = vf_open_plugin(libmenu_vfs, sh_video->vfilter, "menu", vf_arg); | |
2304 if (!vf_menu) { | |
2305 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_CantOpenLibmenuFilterWithThisRootMenu, menu_root); | |
2306 use_menu = 0; | |
2307 } | |
20947
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2308 } |
33363 | 2309 if (vf_menu) |
2310 sh_video->vfilter = vf_menu; | |
20947
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2311 #endif |
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2312 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
2313 #ifdef CONFIG_ASS |
33363 | 2314 if (ass_enabled) { |
2315 int i; | |
2316 int insert = 1; | |
2317 if (vf_settings) | |
2318 for (i = 0; vf_settings[i].name; ++i) | |
2319 if (strcmp(vf_settings[i].name, "ass") == 0) { | |
2320 insert = 0; | |
2321 break; | |
2322 } | |
2323 if (insert) { | |
2324 char *vf_arg[] = { "auto", "1", NULL }; | |
2325 vf_instance_t *vf_ass = vf_open_filter(sh_video->vfilter, "ass", vf_arg); | |
2326 if (vf_ass) | |
2327 sh_video->vfilter = vf_ass; | |
2328 else | |
2329 mp_msg(MSGT_CPLAYER, MSGL_ERR, "ASS: cannot add video filter\n"); | |
20947
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2330 } |
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2331 } |
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2332 #endif |
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2333 |
33363 | 2334 sh_video->vfilter = append_filters(sh_video->vfilter); |
2335 eosd_init(sh_video->vfilter); | |
20947
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2336 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
2337 #ifdef CONFIG_ASS |
33363 | 2338 if (ass_enabled) |
2339 eosd_ass_init(ass_library); | |
20947
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2340 #endif |
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2341 |
33363 | 2342 current_module = "init_video_codec"; |
2343 | |
2344 mp_msg(MSGT_CPLAYER, MSGL_INFO, "==========================================================================\n"); | |
2345 init_best_video_codec(sh_video, video_codec_list, video_fm_list); | |
2346 mp_msg(MSGT_CPLAYER, MSGL_INFO, "==========================================================================\n"); | |
2347 | |
2348 if (!sh_video->initialized) { | |
2349 if (!fixed_vo) | |
2350 uninit_player(INITIALIZED_VO); | |
2351 goto err_out; | |
2352 } | |
2353 | |
2354 initialized_flags |= INITIALIZED_VCODEC; | |
2355 | |
2356 if (sh_video->codec) | |
2357 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODEC=%s\n", sh_video->codec->name); | |
2358 | |
2359 sh_video->last_pts = MP_NOPTS_VALUE; | |
2360 sh_video->num_buffered_pts = 0; | |
2361 sh_video->next_frame_time = 0; | |
2362 | |
2363 if (auto_quality > 0) { | |
2364 // Auto quality option enabled | |
2365 output_quality = get_video_quality_max(sh_video); | |
2366 if (auto_quality > output_quality) | |
2367 auto_quality = output_quality; | |
2368 else | |
2369 output_quality = auto_quality; | |
2370 mp_msg(MSGT_CPLAYER, MSGL_V, "AutoQ: setting quality to %d.\n", output_quality); | |
2371 set_video_quality(sh_video, output_quality); | |
2372 } | |
2373 | |
2374 // ========== Init display (sh_video->disp_w*sh_video->disp_h/out_fmt) ============ | |
2375 | |
2376 current_module = "init_vo"; | |
2377 | |
2378 return 1; | |
21031
e45bb0ee5558
Make sure sh_video == NULL when reinit_video_chain fails.
reimar
parents:
21030
diff
changeset
|
2379 |
e45bb0ee5558
Make sure sh_video == NULL when reinit_video_chain fails.
reimar
parents:
21030
diff
changeset
|
2380 err_out: |
33363 | 2381 mpctx->sh_video = mpctx->d_video->sh = NULL; |
2382 return 0; | |
20947
6baefa24946f
moved video codec/filters/outdevice initialization code to specific function
nicodvb
parents:
20915
diff
changeset
|
2383 } |
20899
c00d8c1aa0ab
Replace sleep time calculation in main() with a separate function.
uau
parents:
20898
diff
changeset
|
2384 |
21077 | 2385 static double update_video(int *blit_frame) |
2386 { | |
33363 | 2387 sh_video_t *const sh_video = mpctx->sh_video; |
21077 | 2388 //-------------------- Decode a frame: ----------------------- |
2389 double frame_time; | |
2390 *blit_frame = 0; // Don't blit if we hit EOF | |
2391 if (!correct_pts) { | |
33363 | 2392 unsigned char *start = NULL; |
2393 void *decoded_frame = NULL; | |
2394 int drop_frame = 0; | |
2395 int in_size; | |
2396 int full_frame; | |
2397 | |
2398 do { | |
2399 current_module = "video_read_frame"; | |
2400 frame_time = sh_video->next_frame_time; | |
2401 in_size = video_read_frame(sh_video, &sh_video->next_frame_time, | |
2402 &start, force_fps); | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
2403 #ifdef CONFIG_DVDNAV |
33363 | 2404 // wait, still frame or EOF |
2405 if (mpctx->stream->type == STREAMTYPE_DVDNAV && in_size < 0) { | |
2406 if (mp_dvdnav_is_eof(mpctx->stream)) | |
2407 return -1; | |
2408 if (mpctx->d_video) | |
2409 mpctx->d_video->eof = 0; | |
2410 if (mpctx->d_audio) | |
2411 mpctx->d_audio->eof = 0; | |
2412 mpctx->stream->eof = 0; | |
2413 } else | |
2414 #endif | |
2415 if (in_size < 0) | |
31201
203789464176
misc cosmetics: K&R style nits, #include placement, indentation
diego
parents:
31148
diff
changeset
|
2416 return -1; |
33363 | 2417 if (in_size > max_framesize) |
2418 max_framesize = in_size; // stats | |
2419 drop_frame = check_framedrop(frame_time); | |
2420 current_module = "decode_video"; | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
2421 #ifdef CONFIG_DVDNAV |
33363 | 2422 full_frame = 1; |
2423 decoded_frame = mp_dvdnav_restore_smpi(&in_size, &start, decoded_frame); | |
2424 // still frame has been reached, no need to decode | |
2425 if (in_size > 0 && !decoded_frame) | |
25824 | 2426 #endif |
33363 | 2427 decoded_frame = decode_video(sh_video, start, in_size, drop_frame, |
2428 sh_video->pts, &full_frame); | |
2429 | |
2430 if (full_frame) { | |
2431 sh_video->timer += frame_time; | |
2432 | |
2433 // Time-based PTS recalculation. | |
2434 // The key to maintaining A-V sync is to not touch PTS until the proper frame is reached | |
2435 if (sh_video->pts != MP_NOPTS_VALUE) { | |
2436 if (sh_video->last_pts != MP_NOPTS_VALUE) { | |
2437 double pts = sh_video->last_pts + frame_time; | |
2438 double ptsdiff = fabs(pts - sh_video->pts); | |
2439 | |
2440 // Allow starting PTS recalculation at the appropriate frame only | |
2441 mpctx->framestep_found |= (ptsdiff <= frame_time * 1.5); | |
2442 | |
2443 // replace PTS only if we're not too close and not too far | |
2444 // and a correctly timed frame has been found, otherwise | |
2445 // keep pts to eliminate rounding errors or catch up with stream | |
2446 if (ptsdiff > frame_time * 20) | |
2447 mpctx->framestep_found = 0; | |
2448 if (ptsdiff * 10 > frame_time && mpctx->framestep_found) | |
2449 sh_video->pts = pts; | |
2450 else | |
2451 mp_dbg(MSGT_AVSYNC, MSGL_DBG2, "Keeping PTS at %6.2f\n", sh_video->pts); | |
2452 } | |
2453 sh_video->last_pts = sh_video->pts; | |
2454 } | |
2455 if (mpctx->sh_audio) | |
2456 mpctx->delay -= frame_time; | |
2457 // video_read_frame can change fps (e.g. for ASF video) | |
2458 vo_fps = sh_video->fps; | |
2459 update_subtitles(sh_video, sh_video->pts, mpctx->d_sub, 0); | |
2460 update_teletext(sh_video, mpctx->demuxer, 0); | |
2461 update_osd_msg(); | |
2462 } | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
2463 #ifdef CONFIG_DVDNAV |
33363 | 2464 // save back last still frame for future display |
2465 mp_dvdnav_save_smpi(in_size, start, decoded_frame); | |
25824 | 2466 #endif |
33363 | 2467 } while (!full_frame); |
2468 | |
2469 current_module = "filter_video"; | |
2470 *blit_frame = (decoded_frame && filter_video(sh_video, decoded_frame, | |
2471 sh_video->pts)); | |
2472 } else { | |
2473 int res = generate_video_frame(sh_video, mpctx->d_video); | |
2474 if (!res) | |
2475 return -1; | |
2476 ((vf_instance_t *)sh_video->vfilter)->control(sh_video->vfilter, | |
2477 VFCTRL_GET_PTS, &sh_video->pts); | |
2478 if (sh_video->pts == MP_NOPTS_VALUE) { | |
2479 mp_msg(MSGT_CPLAYER, MSGL_ERR, "pts after filters MISSING\n"); | |
2480 sh_video->pts = sh_video->last_pts; | |
2481 } | |
2482 if (sh_video->last_pts == MP_NOPTS_VALUE) | |
2483 sh_video->last_pts = sh_video->pts; | |
2484 else if (sh_video->last_pts > sh_video->pts) { | |
2485 // make a guess whether this is some kind of discontinuity | |
33552 | 2486 // we should jump along with or some wrong timestamps we |
33363 | 2487 // should replace instead |
31245
a3adde0a5b83
If an invalid pts value is detected, try to to make up some if it seems
reimar
parents:
31243
diff
changeset
|
2488 if (sh_video->pts < sh_video->last_pts - 20 * sh_video->frametime) |
33363 | 2489 sh_video->last_pts = sh_video->pts; |
2490 else | |
2491 sh_video->pts = sh_video->last_pts + sh_video->frametime; | |
2492 mp_msg(MSGT_CPLAYER, MSGL_V, "pts value < previous\n"); | |
2493 } | |
2494 frame_time = sh_video->pts - sh_video->last_pts; | |
2495 if (!frame_time) | |
2496 frame_time = sh_video->frametime; | |
2497 sh_video->last_pts = sh_video->pts; | |
2498 sh_video->timer += frame_time; | |
2499 if (mpctx->sh_audio) | |
2500 mpctx->delay -= frame_time; | |
2501 *blit_frame = res > 0; | |
21077 | 2502 } |
2503 return frame_time; | |
2504 } | |
2505 | |
25606 | 2506 static void pause_loop(void) |
21082 | 2507 { |
33363 | 2508 mp_cmd_t *cmd; |
32732
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2509 #ifdef CONFIG_STREAM_CACHE |
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2510 int old_cache_fill = stream_cache_size > 0 ? cache_fill_status(mpctx->stream) : 0; |
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2511 #endif |
21082 | 2512 if (!quiet) { |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2513 if (term_osd && !mpctx->sh_video) { |
32730
736b22f11e00
Change MSGTR_Paused definition to allow simplifying some code.
reimar
parents:
32724
diff
changeset
|
2514 set_osd_msg(OSD_MSG_PAUSE, 1, 0, MSGTR_Paused); |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2515 update_osd_msg(); |
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2516 } else |
33363 | 2517 mp_msg(MSGT_CPLAYER, MSGL_STATUS, "\n"MSGTR_Paused "\r"); |
21082 | 2518 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_PAUSED\n"); |
2519 } | |
27343 | 2520 #ifdef CONFIG_GUI |
21082 | 2521 if (use_gui) |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
2522 gui(GUI_SET_STATE, (void *)GUI_PAUSE); |
21082 | 2523 #endif |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
2524 if (mpctx->video_out && mpctx->sh_video && vo_config_count) |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2525 mpctx->video_out->control(VOCTRL_PAUSE, NULL); |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
2526 |
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
2527 if (mpctx->audio_out && mpctx->sh_audio) |
33363 | 2528 mpctx->audio_out->pause(); // pause audio, keep data if possible |
2529 | |
2530 while ((cmd = mp_input_get_cmd(20, 1, 1)) == NULL || cmd->pausing == 4) { | |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2531 if (cmd) { |
33363 | 2532 cmd = mp_input_get_cmd(0, 1, 0); |
2533 run_command(mpctx, cmd); | |
2534 mp_cmd_free(cmd); | |
2535 continue; | |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2536 } |
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2537 if (mpctx->sh_video && mpctx->video_out && vo_config_count) |
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2538 mpctx->video_out->check_events(); |
27343 | 2539 #ifdef CONFIG_GUI |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2540 if (use_gui) { |
33732 | 2541 gui(GUI_HANDLE_EVENTS, 0); |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
2542 gui(GUI_REDRAW, 0); |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
2543 if (guiInfo.Playing != GUI_PAUSE || (rel_seek_secs || abs_seek_pos)) |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2544 break; |
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2545 } |
21082 | 2546 #endif |
27345
b597fd2924b4
Rename preprocessor directive HAVE_MENU --> CONFIG_MENU.
diego
parents:
27343
diff
changeset
|
2547 #ifdef CONFIG_MENU |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2548 if (vf_menu) |
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2549 vf_menu_pause_update(vf_menu); |
21082 | 2550 #endif |
32732
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2551 #ifdef CONFIG_STREAM_CACHE |
32735
c8b9c17890cb
Cosmetics: move if and following { onto same line.
reimar
parents:
32732
diff
changeset
|
2552 if (!quiet && stream_cache_size > 0) { |
32732
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2553 int new_cache_fill = cache_fill_status(mpctx->stream); |
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2554 if (new_cache_fill != old_cache_fill) { |
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2555 if (term_osd && !mpctx->sh_video) { |
33363 | 2556 set_osd_msg(OSD_MSG_PAUSE, 1, 0, MSGTR_Paused " %d%%", |
32732
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2557 new_cache_fill); |
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2558 update_osd_msg(); |
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2559 } else |
33363 | 2560 mp_msg(MSGT_CPLAYER, MSGL_STATUS, MSGTR_Paused " %d%%\r", |
32732
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2561 new_cache_fill); |
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2562 old_cache_fill = new_cache_fill; |
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2563 } |
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2564 } |
67e0128e2f1a
Update PAUSED status line with cache fill status if it changed.
reimar
parents:
32731
diff
changeset
|
2565 #endif |
33181 | 2566 if (mpctx->sh_video) |
2567 handle_udp_master(mpctx->sh_video->pts); | |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2568 usec_sleep(20000); |
21082 | 2569 } |
2570 if (cmd && cmd->id == MP_CMD_PAUSE) { | |
33363 | 2571 cmd = mp_input_get_cmd(0, 1, 0); |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2572 mp_cmd_free(cmd); |
21082 | 2573 } |
33363 | 2574 mpctx->osd_function = OSD_PLAY; |
29937 | 2575 if (mpctx->audio_out && mpctx->sh_audio) { |
29856
3a6ae46759de
Do not call resume on unpausing if we have already reached eof while
reimar
parents:
29855
diff
changeset
|
2576 if (mpctx->eof) // do not play remaining audio if we e.g. switch to the next file |
33363 | 2577 mpctx->audio_out->reset(); |
29856
3a6ae46759de
Do not call resume on unpausing if we have already reached eof while
reimar
parents:
29855
diff
changeset
|
2578 else |
33363 | 2579 mpctx->audio_out->resume(); // resume audio |
29937 | 2580 } |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
2581 if (mpctx->video_out && mpctx->sh_video && vo_config_count) |
33363 | 2582 mpctx->video_out->control(VOCTRL_RESUME, NULL); // resume video |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2583 (void)GetRelativeTime(); // ignore time that passed during pause |
27343 | 2584 #ifdef CONFIG_GUI |
21082 | 2585 if (use_gui) { |
33614 | 2586 if (guiInfo.Playing == GUI_STOP) |
29857
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2587 mpctx->eof = 1; |
d2853289006d
Whitespace cosmetics: fix pause_loop indentation/remove inconsistently used tabs.
reimar
parents:
29856
diff
changeset
|
2588 else |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
2589 gui(GUI_SET_STATE, (void *)GUI_PLAY); |
21082 | 2590 } |
2591 #endif | |
2592 } | |
2593 | |
31956
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2594 static void edl_loadfile(void) |
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2595 { |
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2596 if (edl_filename) { |
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2597 if (edl_records) { |
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2598 free_edl(edl_records); |
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2599 edl_needs_reset = 1; |
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2600 } |
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2601 next_edl_record = edl_records = edl_parse_file(); |
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2602 } |
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2603 } |
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
2604 |
22298 | 2605 // Execute EDL command for the current position if one exists |
2606 static void edl_update(MPContext *mpctx) | |
2607 { | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
2608 if (!edl_records) |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2609 return; |
22298 | 2610 |
2611 if (!mpctx->sh_video) { | |
33363 | 2612 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlNOsh_video); |
2613 free_edl(edl_records); | |
2614 next_edl_record = NULL; | |
2615 edl_records = NULL; | |
2616 return; | |
22298 | 2617 } |
2618 | |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2619 // This indicates that we need to reset next EDL record according |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2620 // to new PTS due to seek or other condition |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2621 if (edl_needs_reset) { |
33363 | 2622 edl_needs_reset = 0; |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2623 mpctx->edl_muted = 0; |
33363 | 2624 next_edl_record = edl_records; |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2625 |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2626 // Find next record, also skip immediately if we are already |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2627 // inside any record |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2628 while (next_edl_record) { |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2629 if (next_edl_record->start_sec > mpctx->sh_video->pts) |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2630 break; |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2631 if (next_edl_record->stop_sec >= mpctx->sh_video->pts) { |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2632 if (edl_backward) { |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2633 mpctx->osd_function = OSD_REW; |
33363 | 2634 edl_decision = 1; |
2635 abs_seek_pos = 0; | |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2636 rel_seek_secs = -(mpctx->sh_video->pts - |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2637 next_edl_record->start_sec + |
31580
b6c2b541e1a6
Implement edl-backward-delay to avoid jumping right over an
reynaldo
parents:
31515
diff
changeset
|
2638 edl_backward_delay); |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2639 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_SKIP: pts [%f], " |
33363 | 2640 "offset [%f], start [%f], stop [%f], length [%f]\n", |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2641 mpctx->sh_video->pts, rel_seek_secs, |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2642 next_edl_record->start_sec, next_edl_record->stop_sec, |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2643 next_edl_record->length_sec); |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2644 return; |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2645 } |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2646 break; |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2647 } |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2648 |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2649 if (next_edl_record->action == EDL_MUTE) |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2650 mpctx->edl_muted = !mpctx->edl_muted; |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2651 |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2652 next_edl_record = next_edl_record->next; |
33363 | 2653 } |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2654 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted) |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2655 mixer_mute(&mpctx->mixer); |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2656 } |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2657 |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2658 if (next_edl_record && |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2659 mpctx->sh_video->pts >= next_edl_record->start_sec) { |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2660 if (next_edl_record->action == EDL_SKIP) { |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2661 mpctx->osd_function = OSD_FFW; |
33363 | 2662 edl_decision = 1; |
2663 abs_seek_pos = 0; | |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2664 rel_seek_secs = next_edl_record->stop_sec - mpctx->sh_video->pts; |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2665 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_SKIP: pts [%f], offset [%f], " |
33363 | 2666 "start [%f], stop [%f], length [%f]\n", |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2667 mpctx->sh_video->pts, rel_seek_secs, |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2668 next_edl_record->start_sec, next_edl_record->stop_sec, |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2669 next_edl_record->length_sec); |
33363 | 2670 } else if (next_edl_record->action == EDL_MUTE) { |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2671 mpctx->edl_muted = !mpctx->edl_muted; |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2672 if ((mpctx->user_muted | mpctx->edl_muted) != mpctx->mixer.muted) |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2673 mixer_mute(&mpctx->mixer); |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2674 mp_msg(MSGT_CPLAYER, MSGL_DBG4, "EDL_MUTE: [%f]\n", |
33363 | 2675 next_edl_record->start_sec); |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2676 } |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2677 next_edl_record = next_edl_record->next; |
22298 | 2678 } |
2679 } | |
2680 | |
25883
baf32110d3fc
Use defines to give names to the different seek flags.
reimar
parents:
25852
diff
changeset
|
2681 // style & SEEK_ABSOLUTE == 0 means seek relative to current position, == 1 means absolute |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
2682 // style & SEEK_FACTOR == 0 means amount in seconds, == 2 means fraction of file length |
22300 | 2683 // return -1 if seek failed (non-seekable stream?), 0 otherwise |
2684 static int seek(MPContext *mpctx, double amount, int style) | |
2685 { | |
2686 current_module = "seek"; | |
2687 if (demux_seek(mpctx->demuxer, amount, audio_delay, style) == 0) | |
33363 | 2688 return -1; |
22300 | 2689 |
30176
6fb92182aff3
At startup and while seeking avoid to introduce pointless sleeps and possibly
reimar
parents:
30175
diff
changeset
|
2690 mpctx->startup_decode_retry = DEFAULT_STARTUP_DECODE_RETRY; |
22300 | 2691 if (mpctx->sh_video) { |
33363 | 2692 current_module = "seek_video_reset"; |
2693 if (vo_config_count) | |
2694 mpctx->video_out->control(VOCTRL_RESET, NULL); | |
2695 mpctx->num_buffered_frames = 0; | |
2696 mpctx->delay = 0; | |
2697 mpctx->time_frame = 0; | |
2698 mpctx->framestep_found = 0; | |
2699 // Not all demuxers set d_video->pts during seek, so this value | |
2700 // (which is used by at least vobsub and edl code below) may | |
2701 // be completely wrong (probably 0). | |
2702 mpctx->sh_video->pts = mpctx->d_video->pts; | |
2703 update_subtitles(mpctx->sh_video, mpctx->sh_video->pts, mpctx->d_sub, 1); | |
2704 update_teletext(mpctx->sh_video, mpctx->demuxer, 1); | |
22300 | 2705 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
2706 |
22300 | 2707 if (mpctx->sh_audio) { |
33363 | 2708 current_module = "seek_audio_reset"; |
2709 mpctx->audio_out->reset(); // stop audio, throwing away buffered data | |
2710 if (!mpctx->sh_video) | |
2711 update_subtitles(NULL, mpctx->sh_audio->pts, mpctx->d_sub, 1); | |
22300 | 2712 } |
2713 | |
25416 | 2714 if (vo_vobsub && mpctx->sh_video) { |
33363 | 2715 current_module = "seek_vobsub_reset"; |
2716 vobsub_seek(vo_vobsub, mpctx->sh_video->pts); | |
22300 | 2717 } |
2718 | |
31700 | 2719 #ifdef CONFIG_ASS |
31227
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
31201
diff
changeset
|
2720 if (ass_enabled && mpctx->d_sub->sh && ((sh_sub_t *)mpctx->d_sub->sh)->ass_track) |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
31201
diff
changeset
|
2721 ass_flush_events(((sh_sub_t *)mpctx->d_sub->sh)->ass_track); |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
31201
diff
changeset
|
2722 #endif |
ee7beb1a3a6e
backport ass_flush_events() from upstream libass and make use of it
aurel
parents:
31201
diff
changeset
|
2723 |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2724 if (edl_records) { |
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2725 edl_needs_reset = 1; |
33363 | 2726 edl_backward = amount < 0; |
31459
1cf0f471ceee
Improves EDL to avoid jumping into a skipped out scene. It also
reynaldo
parents:
31368
diff
changeset
|
2727 } |
22300 | 2728 |
2729 c_total = 0; | |
2730 max_pts_correction = 0.1; | |
33363 | 2731 audio_time_usage = 0; |
2732 video_time_usage = 0; | |
2733 vout_time_usage = 0; | |
2734 drop_frame_cnt = 0; | |
22300 | 2735 |
2736 current_module = NULL; | |
2737 return 0; | |
2738 } | |
2739 | |
26963
8825552ee585
Fix the linking of TOOLS/netstream and TOOLS/vivodump.
diego
parents:
26877
diff
changeset
|
2740 /* This preprocessor directive is a hack to generate a mplayer-nomain.o object |
8825552ee585
Fix the linking of TOOLS/netstream and TOOLS/vivodump.
diego
parents:
26877
diff
changeset
|
2741 * file for some tools to link against. */ |
8825552ee585
Fix the linking of TOOLS/netstream and TOOLS/vivodump.
diego
parents:
26877
diff
changeset
|
2742 #ifndef DISABLE_MAIN |
33363 | 2743 int main(int argc, char *argv[]) |
2744 { | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
2745 int opt_exit = 0; // Flag indicating whether MPlayer should exit without playing anything. |
33363 | 2746 int i; |
2747 | |
2748 common_preinit(); | |
2749 | |
2750 // Create the config context and register the options | |
2751 mconfig = m_config_new(); | |
2752 m_config_register_options(mconfig, mplayer_opts); | |
2753 m_config_register_options(mconfig, common_opts); | |
2754 mp_input_register_options(mconfig); | |
2755 | |
2756 // Preparse the command line | |
2757 m_config_preparse_command_line(mconfig, argc, argv); | |
21930
6af0d674aa53
print_version() and others get executed before the command line has been parsed so -really-quiet does not silence them even though it should according to the verbosity level set by it, this simple change/hack fixes it
michael
parents:
21888
diff
changeset
|
2758 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
2759 #ifdef CONFIG_TV |
33363 | 2760 stream_tv_defaults.immediate = 1; |
7068
6c2d746b17bf
10l, fix compiling without tv. patch by Andreas Hess <jaska@gmx.net>
arpi
parents:
7058
diff
changeset
|
2761 #endif |
5572
8cd761968f35
BSD-BT848 TV update patch by Charles Henrich <henrich@sigbus.com>
arpi
parents:
5520
diff
changeset
|
2762 |
33363 | 2763 if (argc > 1 && argv[1] && |
2764 (!strcmp(argv[1], "-gui") || !strcmp(argv[1], "-nogui"))) { | |
2765 use_gui = !strcmp(argv[1], "-gui"); | |
33466 | 2766 } else if (argv[0] && strstr(mp_basename(argv[0]), GMPlayer)) { |
33363 | 2767 use_gui = 1; |
2768 } | |
1639 | 2769 |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4152
diff
changeset
|
2770 parse_cfgfiles(mconfig); |
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4152
diff
changeset
|
2771 |
27343 | 2772 #ifdef CONFIG_GUI |
33363 | 2773 if (use_gui) { |
2774 initialized_flags |= INITIALIZED_GUI; | |
2775 cfg_read(); | |
33307 | 2776 } |
7019 | 2777 #endif |
4156
22fadd4022b5
playtree-based config patch by Alban Bedel <albeu@free.fr>
arpi
parents:
4152
diff
changeset
|
2778 |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
2779 mpctx->playtree = m_config_parse_mp_command_line(mconfig, argc, argv); |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
2780 if (mpctx->playtree == NULL) { |
33363 | 2781 opt_exit = 1; |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
2782 } else { |
33363 | 2783 mpctx->playtree = play_tree_cleanup(mpctx->playtree); |
2784 if (mpctx->playtree) { | |
2785 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree, mconfig); | |
2786 if (mpctx->playtree_iter) { | |
2787 if (play_tree_iter_step(mpctx->playtree_iter, 0, 0) != PLAY_TREE_ITER_ENTRY) { | |
2788 play_tree_iter_free(mpctx->playtree_iter); | |
2789 mpctx->playtree_iter = NULL; | |
2790 } | |
2791 filename = play_tree_iter_get_file(mpctx->playtree_iter, 1); | |
2792 } | |
2793 } | |
4045
898caa690c0b
playtree support. replaces old playlist and multifile mess. patch by Alban Bedel <albeu@free.fr>
arpi
parents:
3934
diff
changeset
|
2794 } |
33363 | 2795 |
2796 print_version("MPlayer"); | |
32415
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2797 #if (defined(__MINGW32__) || defined(__CYGWIN__)) && defined(CONFIG_GUI) |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2798 void *runningmplayer = FindWindow("MPlayer GUI for Windows", "MPlayer for Windows"); |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2799 if (runningmplayer && filename && use_gui) { |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2800 COPYDATASTRUCT csData; |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2801 char file[MAX_PATH]; |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2802 char *filepart = filename; |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2803 if (GetFullPathName(filename, MAX_PATH, file, &filepart)) { |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2804 csData.dwData = 0; |
33363 | 2805 csData.cbData = strlen(file) * 2; |
32415
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2806 csData.lpData = file; |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2807 SendMessage(runningmplayer, WM_COPYDATA, (WPARAM)runningmplayer, (LPARAM)&csData); |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2808 } |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2809 } |
d1f6c6cf8905
Move gui-specific code out of common_init, it certainly does
reimar
parents:
32383
diff
changeset
|
2810 #endif |
32383
f6e78eef2e1b
Avoid duplicating common init code between MPlayer and mencoder.
reimar
parents:
32382
diff
changeset
|
2811 if (!common_init()) |
f6e78eef2e1b
Avoid duplicating common init code between MPlayer and mencoder.
reimar
parents:
32382
diff
changeset
|
2812 exit_player_with_rc(EXIT_NONE, 0); |
30855 | 2813 |
27343 | 2814 #ifndef CONFIG_GUI |
33363 | 2815 if (use_gui) { |
2816 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_NoGui); | |
2817 use_gui = 0; | |
1709 | 2818 } |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1709
diff
changeset
|
2819 #else |
27727
48c1ae64255b
Replace preprocessor check for WIN32 with checks for __MINGW32__ and __CYGWIN__.
diego
parents:
27635
diff
changeset
|
2820 #if !defined(__MINGW32__) && !defined(__CYGWIN__) |
33363 | 2821 if (use_gui && !vo_init()) { |
2822 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_GuiNeedsX); | |
2823 use_gui = 0; | |
1723
5e4214a7540e
GUI stuff. now seeking works, and xmga renders to video window
arpi
parents:
1709
diff
changeset
|
2824 } |
18945
337d4324c766
No point in checking for X for windows gui, in addition the hackish
reimar
parents:
18939
diff
changeset
|
2825 #endif |
33363 | 2826 if (use_gui && mpctx->playtree_iter) { |
2827 char cwd[PATH_MAX + 2]; | |
2828 // Free Playtree and Playtree-Iter as it's not used by the GUI. | |
2829 play_tree_iter_free(mpctx->playtree_iter); | |
2830 mpctx->playtree_iter = NULL; | |
2831 | |
2832 if (getcwd(cwd, PATH_MAX) != (char *)NULL) { | |
2833 strcat(cwd, "/"); | |
2834 // Prefix relative paths with current working directory | |
2835 play_tree_add_bpf(mpctx->playtree, cwd); | |
2836 } | |
2837 // Import initital playtree into GUI. | |
33752 | 2838 guiPlaylistInitialize(mpctx->playtree, mconfig, enqueue); |
9291
64b8c5a07c2c
- It adds an option enqueue/noenqueue, so users can choose if they want to
arpi
parents:
9217
diff
changeset
|
2839 } |
27343 | 2840 #endif /* CONFIG_GUI */ |
1709 | 2841 |
33363 | 2842 if (video_driver_list && strcmp(video_driver_list[0], "help") == 0) { |
2843 list_video_out(); | |
2844 opt_exit = 1; | |
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
|
2845 } |
5072 | 2846 |
33363 | 2847 if (audio_driver_list && strcmp(audio_driver_list[0], "help") == 0) { |
2848 list_audio_out(); | |
2849 opt_exit = 1; | |
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
|
2850 } |
1639 | 2851 |
33363 | 2852 if (audio_codec_list && strcmp(audio_codec_list[0], "help") == 0) { |
2853 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableAudioCodecs); | |
2854 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_CODECS\n"); | |
2855 list_codecs(1); | |
2856 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); | |
2857 opt_exit = 1; | |
1983 | 2858 } |
33363 | 2859 if (video_codec_list && strcmp(video_codec_list[0], "help") == 0) { |
2860 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_AvailableVideoCodecs); | |
2861 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_CODECS\n"); | |
2862 list_codecs(0); | |
2863 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); | |
2864 opt_exit = 1; | |
1983 | 2865 } |
33363 | 2866 if (video_fm_list && strcmp(video_fm_list[0], "help") == 0) { |
2867 vfm_help(); | |
2868 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); | |
2869 opt_exit = 1; | |
7191
1eadce15446c
-afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents:
7180
diff
changeset
|
2870 } |
33363 | 2871 if (audio_fm_list && strcmp(audio_fm_list[0], "help") == 0) { |
2872 afm_help(); | |
2873 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); | |
2874 opt_exit = 1; | |
7191
1eadce15446c
-afm/-vfm help implemenetd, some cosmetics of ad/vd codec names/comments
arpi
parents:
7180
diff
changeset
|
2875 } |
33363 | 2876 if (af_cfg.list && strcmp(af_cfg.list[0], "help") == 0) { |
2877 af_help(); | |
2878 printf("\n"); | |
2879 opt_exit = 1; | |
13269
aa13937da8a0
mplayer -af help now lists all available audio filters.
ivo
parents:
13228
diff
changeset
|
2880 } |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27370
diff
changeset
|
2881 #ifdef CONFIG_X11 |
33363 | 2882 if (vo_fstype_list && strcmp(vo_fstype_list[0], "help") == 0) { |
2883 fstype_help(); | |
2884 mp_msg(MSGT_FIXME, MSGL_FIXME, "\n"); | |
2885 opt_exit = 1; | |
9317
c7f5df43b937
- support command line parameter -fstype, eg. -fstype layer=12,above,fullscreen
filon
parents:
9315
diff
changeset
|
2886 } |
9336 | 2887 #endif |
33363 | 2888 if ((demuxer_name && strcmp(demuxer_name, "help") == 0) || |
2889 (audio_demuxer_name && strcmp(audio_demuxer_name, "help") == 0) || | |
2890 (sub_demuxer_name && strcmp(sub_demuxer_name, "help") == 0)) { | |
2891 demuxer_help(); | |
2892 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n"); | |
2893 opt_exit = 1; | |
16175 | 2894 } |
33363 | 2895 if (list_properties) { |
2896 property_print_help(); | |
2897 opt_exit = 1; | |
17914
f9cb6fc1608a
Add an option to list the properties: -list-properties
albeu
parents:
17911
diff
changeset
|
2898 } |
1983 | 2899 |
33363 | 2900 if (opt_exit) |
2901 exit_player(EXIT_NONE); | |
16345
feb16d0117c8
allow multiple help clauses on the command line, Patch by kiriuja " mplayer-patches AH en-directo POUM net "
gpoirier
parents:
16323
diff
changeset
|
2902 |
33887 | 2903 if (!filename && !player_idle_mode && !use_gui) { |
33888 | 2904 // no file/vcd/dvd -> show HELP: |
2905 mp_msg(MSGT_CPLAYER, MSGL_INFO, help_text); | |
2906 exit_player_with_rc(EXIT_NONE, 0); | |
1690 | 2907 } |
2908 | |
21342
dc98645820b7
Make MPlayer/MEncoder print the compile-time configuration in verbose mode.
diego
parents:
21219
diff
changeset
|
2909 /* Display what configure line was used */ |
dc98645820b7
Make MPlayer/MEncoder print the compile-time configuration in verbose mode.
diego
parents:
21219
diff
changeset
|
2910 mp_msg(MSGT_CPLAYER, MSGL_V, "Configuration: " CONFIGURATION "\n"); |
dc98645820b7
Make MPlayer/MEncoder print the compile-time configuration in verbose mode.
diego
parents:
21219
diff
changeset
|
2911 |
1690 | 2912 // Many users forget to include command line in bugreports... |
33363 | 2913 if (mp_msg_test(MSGT_CPLAYER, MSGL_V)) { |
33827
277ec491a8a7
Do not translate console messages of verbosity level MSGL_V and above.
diego
parents:
33752
diff
changeset
|
2914 mp_msg(MSGT_CPLAYER, MSGL_INFO, "CommandLine:"); |
33363 | 2915 for (i = 1; i < argc; i++) |
2916 mp_msg(MSGT_CPLAYER, MSGL_INFO, " '%s'", argv[i]); | |
2917 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n"); | |
1690 | 2918 } |
2919 | |
1639 | 2920 //------ load global data first ------ |
955 | 2921 |
3015 | 2922 #ifdef HAVE_RTC |
33363 | 2923 if (!nortc) { |
2924 // seteuid(0); /* Can't hurt to try to get root here */ | |
2925 if ((rtc_fd = open(rtc_device ? rtc_device : "/dev/rtc", O_RDONLY)) < 0) | |
2926 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_RTCDeviceNotOpenable, | |
2927 rtc_device ? rtc_device : "/dev/rtc", strerror(errno)); | |
2928 else { | |
2929 unsigned long irqp = 1024; /* 512 seemed OK. 128 is jerky. */ | |
2930 | |
2931 if (ioctl(rtc_fd, RTC_IRQP_SET, irqp) < 0) { | |
2932 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_LinuxRTCInitErrorIrqpSet, irqp, strerror(errno)); | |
2933 mp_msg(MSGT_CPLAYER, MSGL_HINT, MSGTR_IncreaseRTCMaxUserFreq, irqp); | |
2934 close(rtc_fd); | |
2935 rtc_fd = -1; | |
2936 } else if (ioctl(rtc_fd, RTC_PIE_ON, 0) < 0) { | |
2937 /* variable only by the root */ | |
2938 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_LinuxRTCInitErrorPieOn, strerror(errno)); | |
2939 close(rtc_fd); | |
2940 rtc_fd = -1; | |
2941 } else | |
33827
277ec491a8a7
Do not translate console messages of verbosity level MSGL_V and above.
diego
parents:
33752
diff
changeset
|
2942 mp_msg(MSGT_CPLAYER, MSGL_V, "Using Linux hardware RTC timing (%ldHz).\n", irqp); |
33363 | 2943 } |
2889
0d8553a47d1a
RTC support, softsleep and optional new timing code by Dap
arpi
parents:
2880
diff
changeset
|
2944 } |
27343 | 2945 #ifdef CONFIG_GUI |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
2946 // breaks DGA and SVGAlib and VESA drivers: --A'rpi |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
2947 // and now ? -- Pontscho |
33363 | 2948 if (use_gui) |
2949 setuid(getuid()); // strongly test, please check this. | |
4176
116abdd0aed1
small gtk bug fix (-display bug, baze gabu, miattad fogok elkarhozni:), and remove gui dependencie in mencoder
pontscho
parents:
4160
diff
changeset
|
2950 #endif |
33363 | 2951 if (rtc_fd < 0) |
16490
f17b3c152fd6
Add comments to a few #endif statements in order to make clear which
diego
parents:
16489
diff
changeset
|
2952 #endif /* HAVE_RTC */ |
33363 | 2953 mp_msg(MSGT_CPLAYER, MSGL_V, "Using %s timing\n", |
2954 softsleep ? "software" : timer_name); | |
2889
0d8553a47d1a
RTC support, softsleep and optional new timing code by Dap
arpi
parents:
2880
diff
changeset
|
2955 |
27359
d788e177a35e
Rename some preprocessor directives from CONFIG_* to HAVE_* where appropriate;
diego
parents:
27345
diff
changeset
|
2956 #ifdef HAVE_TERMCAP |
33363 | 2957 if (!use_gui) |
2958 load_termcap(NULL); // load key-codes | |
1639 | 2959 #endif |
2960 | |
1816 | 2961 // ========== Init keyboard FIFO (connection to libvo) ============ |
1694 | 2962 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
2963 // Init input system |
33363 | 2964 current_module = "init_input"; |
2965 mp_input_init(); | |
2966 mp_input_add_key_fd(-1, 0, mplayer_get_key, NULL); | |
2967 if (slave_mode) | |
2968 mp_input_add_cmd_fd(0, USE_SELECT, MP_INPUT_SLAVE_CMD_FUNC, NULL); | |
2969 else if (!noconsolecontrols) | |
2970 mp_input_add_event_fd(0, getch2); | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
2971 // Set the libstream interrupt callback |
33363 | 2972 stream_set_interrupt_callback(mp_input_check_interrupt); |
9831 | 2973 |
27345
b597fd2924b4
Rename preprocessor directive HAVE_MENU --> CONFIG_MENU.
diego
parents:
27343
diff
changeset
|
2974 #ifdef CONFIG_MENU |
33363 | 2975 if (use_menu) { |
2976 if (menu_cfg && menu_init(mpctx, menu_cfg)) | |
33827
277ec491a8a7
Do not translate console messages of verbosity level MSGL_V and above.
diego
parents:
33752
diff
changeset
|
2977 mp_msg(MSGT_CPLAYER, MSGL_V, "Menu initialized: %s\n", menu_cfg); |
33363 | 2978 else { |
2979 menu_cfg = get_path("menu.conf"); | |
2980 if (menu_init(mpctx, menu_cfg)) | |
33827
277ec491a8a7
Do not translate console messages of verbosity level MSGL_V and above.
diego
parents:
33752
diff
changeset
|
2981 mp_msg(MSGT_CPLAYER, MSGL_V, "Menu initialized: %s\n", menu_cfg); |
33363 | 2982 else { |
2983 if (menu_init(mpctx, MPLAYER_CONFDIR "/menu.conf")) | |
33827
277ec491a8a7
Do not translate console messages of verbosity level MSGL_V and above.
diego
parents:
33752
diff
changeset
|
2984 mp_msg(MSGT_CPLAYER, MSGL_V, "Menu initialized: %s\n", MPLAYER_CONFDIR "/menu.conf"); |
33363 | 2985 else { |
33827
277ec491a8a7
Do not translate console messages of verbosity level MSGL_V and above.
diego
parents:
33752
diff
changeset
|
2986 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Menu init failed.\n"); |
33363 | 2987 use_menu = 0; |
2988 } | |
2989 } | |
2990 } | |
2991 } | |
8198 | 2992 #endif |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
2993 |
33363 | 2994 initialized_flags |= INITIALIZED_INPUT; |
2995 current_module = NULL; | |
2996 | |
2997 // Catch signals | |
13391 | 2998 #ifndef __MINGW32__ |
33363 | 2999 signal(SIGCHLD, child_sighandler); |
13391 | 3000 #endif |
4418
8141d2c399e4
A new configurable input system and joystick support for this system
albeu
parents:
4395
diff
changeset
|
3001 |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27393
diff
changeset
|
3002 #ifdef CONFIG_CRASH_DEBUG |
33363 | 3003 prog_path = argv[0]; |
13794 | 3004 #endif |
33363 | 3005 //========= Catch terminate signals: ================ |
3006 // terminate requests: | |
3007 signal(SIGTERM, exit_sighandler); // kill | |
3008 signal(SIGHUP, exit_sighandler); // kill -HUP / xterm closed | |
3009 | |
3010 signal(SIGINT, exit_sighandler); // Interrupt from keyboard | |
3011 | |
3012 signal(SIGQUIT, exit_sighandler); // Quit from keyboard | |
3013 signal(SIGPIPE, exit_sighandler); // Some window managers cause this | |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27393
diff
changeset
|
3014 #ifdef CONFIG_SIGHANDLER |
33363 | 3015 // fatal errors: |
3016 signal(SIGBUS, exit_sighandler); // bus error | |
3017 signal(SIGSEGV, exit_sighandler); // segfault | |
3018 signal(SIGILL, exit_sighandler); // illegal instruction | |
3019 signal(SIGFPE, exit_sighandler); // floating point exc. | |
3020 signal(SIGABRT, exit_sighandler); // abort() | |
27397
d47744b95b78
Give a CONFIG_ prefix to preprocessor directives that lacked one and
diego
parents:
27393
diff
changeset
|
3021 #ifdef CONFIG_CRASH_DEBUG |
33363 | 3022 if (crash_debug) |
3023 signal(SIGTRAP, exit_sighandler); | |
13794 | 3024 #endif |
5367
658ea5d7316a
Allow to disable crasj sighandler to enable creation of coredump files.
atmos4
parents:
5326
diff
changeset
|
3025 #endif |
1639 | 3026 |
27343 | 3027 #ifdef CONFIG_GUI |
33363 | 3028 if (use_gui) { |
3029 guiInit(); | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
3030 gui(GUI_SET_CONTEXT, mpctx); |
33887 | 3031 gui(GUI_SET_STATE, (void *)(filename ? GUI_PLAY : GUI_STOP)); |
33363 | 3032 } |
4963 | 3033 #endif |
3034 | |
5983 | 3035 // ******************* Now, let's see the per-file stuff ******************** |
3036 | |
1639 | 3037 play_next_file: |
1787
de6a0987a08d
stop fixed, fileselector supp. maybe not work, couldn't test
arpi
parents:
1772
diff
changeset
|
3038 |
33363 | 3039 // init global sub numbers |
3040 mpctx->global_sub_size = 0; | |
3041 memset(mpctx->sub_counts, 0, sizeof(mpctx->sub_counts)); | |
3042 | |
3043 if (filename) { | |
3044 load_per_protocol_config(mconfig, filename); | |
3045 load_per_extension_config(mconfig, filename); | |
3046 load_per_file_config(mconfig, filename); | |
3047 } | |
3048 | |
3049 if (video_driver_list) | |
3050 load_per_output_config(mconfig, PROFILE_CFG_VO, video_driver_list[0]); | |
3051 if (audio_driver_list) | |
3052 load_per_output_config(mconfig, PROFILE_CFG_AO, audio_driver_list[0]); | |
25641 | 3053 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3054 // We must enable getch2 here to be able to interrupt network connection |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3055 // or cache filling |
33363 | 3056 if (!noconsolecontrols && !slave_mode) { |
3057 if (initialized_flags & INITIALIZED_GETCH2) | |
3058 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_Getch2InitializedTwice); | |
3059 else | |
3060 getch2_enable(); // prepare stdin for hotkeys... | |
3061 initialized_flags |= INITIALIZED_GETCH2; | |
3062 mp_msg(MSGT_CPLAYER, MSGL_DBG2, "\n[[[init getch2]]]\n"); | |
3063 } | |
4825
41d2da3bd082
Make blocking call in libmpdemux interuptable (only with new input,
albeu
parents:
4818
diff
changeset
|
3064 |
5983 | 3065 // =================== GUI idle loop (STOP state) =========================== |
27343 | 3066 #ifdef CONFIG_GUI |
33363 | 3067 if (use_gui) { |
3068 mpctx->file_format = DEMUXER_TYPE_UNKNOWN; | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
3069 gui(GUI_SET_FILE, 0); |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
3070 while (guiInfo.Playing != GUI_PLAY) { |
33363 | 3071 mp_cmd_t *cmd; |
3072 usec_sleep(20000); | |
33732 | 3073 gui(GUI_HANDLE_EVENTS, 0); |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
3074 gui(GUI_REDRAW, 0); |
33363 | 3075 if ((cmd = mp_input_get_cmd(0, 0, 0)) != NULL) { |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
3076 gui(GUI_RUN_COMMAND, (void *)cmd->id); |
33363 | 3077 mp_cmd_free(cmd); |
3078 } | |
3079 } | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
3080 gui(GUI_PREPARE, 0); |
33555 | 3081 if (guiInfo.StreamType == STREAMTYPE_STREAM) { |
33363 | 3082 play_tree_t *entry = play_tree_new(); |
33555 | 3083 play_tree_add_file(entry, guiInfo.Filename); |
33363 | 3084 if (mpctx->playtree) |
3085 play_tree_free_list(mpctx->playtree->child, 1); | |
3086 else | |
3087 mpctx->playtree = play_tree_new(); | |
3088 play_tree_set_child(mpctx->playtree, entry); | |
3089 if (mpctx->playtree) { | |
3090 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree, mconfig); | |
3091 if (mpctx->playtree_iter) { | |
3092 if (play_tree_iter_step(mpctx->playtree_iter, 0, 0) != PLAY_TREE_ITER_ENTRY) { | |
3093 play_tree_iter_free(mpctx->playtree_iter); | |
3094 mpctx->playtree_iter = NULL; | |
3095 } | |
3096 filename = play_tree_iter_get_file(mpctx->playtree_iter, 1); | |
3097 } | |
3098 } | |
3099 } | |
1787
de6a0987a08d
stop fixed, fileselector supp. maybe not work, couldn't test
arpi
parents:
1772
diff
changeset
|
3100 } |
27343 | 3101 #endif /* CONFIG_GUI */ |
16347
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3102 |
33363 | 3103 while (player_idle_mode && !filename) { |
3104 play_tree_t *entry = NULL; | |
3105 mp_cmd_t *cmd; | |
3106 if (mpctx->video_out && vo_config_count) | |
3107 mpctx->video_out->control(VOCTRL_PAUSE, NULL); | |
3108 while (!(cmd = mp_input_get_cmd(0, 1, 0))) { // wait for command | |
3109 if (mpctx->video_out && vo_config_count) | |
3110 mpctx->video_out->check_events(); | |
3111 usec_sleep(20000); | |
3112 } | |
3113 switch (cmd->id) { | |
16347
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3114 case MP_CMD_LOADFILE: |
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3115 // prepare a tree entry with the new filename |
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3116 entry = play_tree_new(); |
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3117 play_tree_add_file(entry, cmd->args[0].v.s); |
18316
b3be7df634b0
spelling/grammar/wording fixes in doxygen and non-doxygen comments
diego
parents:
18315
diff
changeset
|
3118 // The entry is added to the main playtree after the switch(). |
16347
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3119 break; |
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3120 case MP_CMD_LOADLIST: |
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3121 entry = parse_playlist_file(cmd->args[0].v.s); |
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3122 break; |
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3123 case MP_CMD_QUIT: |
33363 | 3124 exit_player_with_rc(EXIT_QUIT, (cmd->nargs > 0) ? cmd->args[0].v.i : 0); |
16347
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3125 break; |
31670
05a6d70df204
Allow fullscreen switching during -idle. Useful in combination
reimar
parents:
31612
diff
changeset
|
3126 case MP_CMD_VO_FULLSCREEN: |
26264 | 3127 case MP_CMD_GET_PROPERTY: |
3128 case MP_CMD_SET_PROPERTY: | |
3129 case MP_CMD_STEP_PROPERTY: | |
3130 run_command(mpctx, cmd); | |
3131 break; | |
33363 | 3132 } |
3133 | |
3134 mp_cmd_free(cmd); | |
3135 | |
3136 if (entry) { // user entered a command that gave a valid entry | |
3137 if (mpctx->playtree) // the playtree is always a node with one child. let's clear it | |
3138 play_tree_free_list(mpctx->playtree->child, 1); | |
3139 else | |
3140 mpctx->playtree = play_tree_new(); // .. or make a brand new playtree | |
3141 | |
3142 if (!mpctx->playtree) | |
3143 continue; // couldn't make playtree! wait for next command | |
3144 | |
3145 play_tree_set_child(mpctx->playtree, entry); | |
3146 | |
3147 /* Make iterator start at the top the of tree. */ | |
3148 mpctx->playtree_iter = play_tree_iter_new(mpctx->playtree, mconfig); | |
3149 if (!mpctx->playtree_iter) | |
3150 continue; | |
3151 | |
3152 // find the first real item in the tree | |
3153 if (play_tree_iter_step(mpctx->playtree_iter, 0, 0) != PLAY_TREE_ITER_ENTRY) { | |
3154 // no items! | |
3155 play_tree_iter_free(mpctx->playtree_iter); | |
3156 mpctx->playtree_iter = NULL; | |
3157 continue; // wait for next command | |
3158 } | |
3159 filename = play_tree_iter_get_file(mpctx->playtree_iter, 1); | |
3160 } | |
16347
da2926d990ce
Adds -idle, an option to make MPlayer wait for input ('loadfile' or
ods15
parents:
16346
diff
changeset
|
3161 } |
5983 | 3162 //--------------------------------------------------------------------------- |
1787
de6a0987a08d
stop fixed, fileselector supp. maybe not work, couldn't test
arpi
parents:
1772
diff
changeset
|
3163 |
30618
c061152a5d84
Send VOCTRL_PAUSE/VOCTRL_RESUME events also when pausing for idle mode.
reimar
parents:
30616
diff
changeset
|
3164 if (mpctx->video_out && vo_config_count) |
c061152a5d84
Send VOCTRL_PAUSE/VOCTRL_RESUME events also when pausing for idle mode.
reimar
parents:
30616
diff
changeset
|
3165 mpctx->video_out->control(VOCTRL_RESUME, NULL); |
c061152a5d84
Send VOCTRL_PAUSE/VOCTRL_RESUME events also when pausing for idle mode.
reimar
parents:
30616
diff
changeset
|
3166 |
33363 | 3167 if (filename) { |
3168 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_Playing, | |
3169 filename_recode(filename)); | |
3170 if (use_filename_title && vo_wintitle == NULL) | |
32543
18338ee51c9d
Export mp_basename in a function instead of duplicate macros in various places
cboesch
parents:
32537
diff
changeset
|
3171 vo_wintitle = strdup(mp_basename(filename)); |
29862
fbb1f57a313e
Added -name, -title and -use-filename-title options and implementation in X11 vos
ptt
parents:
29857
diff
changeset
|
3172 } |
1650
7502b16bce63
make automatic subfile detection working with many files
atlka
parents:
1641
diff
changeset
|
3173 |
31956
a6c25d94e60e
Add new slave mode command for loading EDL file on demand.
reynaldo
parents:
31945
diff
changeset
|
3174 edl_loadfile(); |
31963 | 3175 |
3176 if (edl_output_filename) { | |
3177 if (edl_fd) | |
3178 fclose(edl_fd); | |
31970 | 3179 if ((edl_fd = fopen(edl_output_filename, "w")) == NULL) { |
31963 | 3180 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlCantOpenForWrite, |
31970 | 3181 filename_recode(edl_output_filename)); |
31963 | 3182 } |
17109
327be31a101d
Fix EDL to be per file, allow -edlout and -edl together as there is really
ods15
parents:
17106
diff
changeset
|
3183 } |
327be31a101d
Fix EDL to be per file, allow -edlout and -edl together as there is really
ods15
parents:
17106
diff
changeset
|
3184 |
5983 | 3185 //==================== Open VOB-Sub ============================ |
3186 | |
33363 | 3187 current_module = "vobsub"; |
32724
732cd2afae10
Replace hacky vobsub loading with a new clean one.
cboesch
parents:
32705
diff
changeset
|
3188 load_vob_subtitle(filename, spudec_ifo, &vo_spudec, add_vob_subtitle); |
33363 | 3189 if (vo_vobsub) { |
3190 initialized_flags |= INITIALIZED_VOBSUB; | |
3191 vobsub_set_from_lang(vo_vobsub, dvdsub_lang); | |
3192 mp_property_do("sub_forced_only", M_PROPERTY_SET, &forced_subs_only, mpctx); | |
3193 | |
3194 // setup global sub numbering | |
3195 mpctx->sub_counts[SUB_SOURCE_VOBSUB] = vobsub_get_indexes_count(vo_vobsub); | |
7621
7caeb275ad26
uninit cleanup again... thx to Nilmoni Deb for bugreport
arpi
parents:
7614
diff
changeset
|
3196 } |
4770
59f8fd64538b
autodetect vobsub filename, disable autosub if vobsub found.
atmos4
parents:
4754
diff
changeset
|
3197 |
5151 | 3198 //============ Open & Sync STREAM --- fork cache2 ==================== |
3199 | |
33363 | 3200 mpctx->stream = NULL; |
3201 mpctx->demuxer = NULL; | |
3202 if (mpctx->d_audio) { | |
3203 //free_demuxer_stream(mpctx->d_audio); | |
3204 mpctx->d_audio = NULL; | |
3205 } | |
3206 if (mpctx->d_video) { | |
3207 //free_demuxer_stream(d_video); | |
3208 mpctx->d_video = NULL; | |
3209 } | |
3210 mpctx->sh_audio = NULL; | |
3211 mpctx->sh_video = NULL; | |
3212 | |
3213 current_module = "open_stream"; | |
3214 mpctx->stream = open_stream(filename, 0, &mpctx->file_format); | |
3215 if (!mpctx->stream) { // error... | |
3216 mpctx->eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY); | |
3217 goto goto_next_file; | |
3218 } | |
3219 initialized_flags |= INITIALIZED_STREAM; | |
5151 | 3220 |
27343 | 3221 #ifdef CONFIG_GUI |
33363 | 3222 if (use_gui) |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
3223 gui(GUI_SET_STREAM, mpctx->stream); |
8423 | 3224 #endif |
3225 | |
33363 | 3226 if (mpctx->file_format == DEMUXER_TYPE_PLAYLIST) { |
3227 play_tree_t *entry; | |
3228 // Handle playlist | |
3229 current_module = "handle_playlist"; | |
3230 mp_msg(MSGT_CPLAYER, MSGL_V, "Parsing playlist %s...\n", | |
3231 filename_recode(filename)); | |
3232 entry = parse_playtree(mpctx->stream, 0); | |
3233 mpctx->eof = playtree_add_playlist(entry); | |
3234 goto goto_next_file; | |
3235 } | |
3236 mpctx->stream->start_pos += seek_to_byte; | |
3237 | |
3238 if (stream_dump_type == 5) { | |
3239 unsigned char buf[4096]; | |
3240 int len; | |
3241 FILE *f; | |
3242 current_module = "dumpstream"; | |
3243 stream_reset(mpctx->stream); | |
3244 stream_seek(mpctx->stream, mpctx->stream->start_pos); | |
3245 f = fopen(stream_dump_name, "wb"); | |
3246 if (!f) { | |
3247 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_CantOpenDumpfile); | |
3248 exit_player(EXIT_ERROR); | |
3249 } | |
3250 if (dvd_chapter > 1) { | |
3251 int chapter = dvd_chapter - 1; | |
3252 stream_control(mpctx->stream, STREAM_CTRL_SEEK_TO_CHAPTER, &chapter); | |
10225
785c945f6796
check for -dumpstream file writes, patch by Eric Lammerts <eric@lammerts.org>
alex
parents:
10223
diff
changeset
|
3253 } |
33390 | 3254 stream_dump_progress_start(); |
33363 | 3255 while (!mpctx->stream->eof && !async_quit_request) { |
3256 len = stream_read(mpctx->stream, buf, 4096); | |
3257 if (len > 0) { | |
3258 if (fwrite(buf, len, 1, f) != 1) { | |
3259 mp_msg(MSGT_MENCODER, MSGL_FATAL, MSGTR_ErrorWritingFile, stream_dump_name); | |
3260 exit_player(EXIT_ERROR); | |
3261 } | |
3262 } | |
33390 | 3263 stream_dump_progress(len, mpctx->stream); |
33363 | 3264 if (dvd_last_chapter > 0) { |
3265 int chapter = -1; | |
3266 if (stream_control(mpctx->stream, STREAM_CTRL_GET_CURRENT_CHAPTER, | |
3267 &chapter) == STREAM_OK && chapter + 1 > dvd_last_chapter) | |
3268 break; | |
3269 } | |
3270 } | |
3271 if (fclose(f)) { | |
3272 mp_msg(MSGT_MENCODER, MSGL_FATAL, MSGTR_ErrorWritingFile, stream_dump_name); | |
3273 exit_player(EXIT_ERROR); | |
3274 } | |
33390 | 3275 stream_dump_progress_end(); |
33363 | 3276 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CoreDumped); |
3277 exit_player_with_rc(EXIT_EOF, 0); | |
3278 } | |
3279 | |
3280 if (mpctx->stream->type == STREAMTYPE_BD) { | |
3281 if (audio_lang && audio_id == -1) | |
3282 audio_id = bd_aid_from_lang(mpctx->stream, audio_lang); | |
3283 if (dvdsub_lang && dvdsub_id == -1) | |
3284 dvdsub_id = bd_sid_from_lang(mpctx->stream, dvdsub_lang); | |
3285 } | |
31877
e30fe0cb79cd
Add incomplete clipinf reading support to display audio
reimar
parents:
31839
diff
changeset
|
3286 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
3287 #ifdef CONFIG_DVDREAD |
33363 | 3288 if (mpctx->stream->type == STREAMTYPE_DVD) { |
3289 current_module = "dvd lang->id"; | |
3290 if (audio_lang && audio_id == -1) | |
3291 audio_id = dvd_aid_from_lang(mpctx->stream, audio_lang); | |
3292 if (dvdsub_lang && dvdsub_id == -1) | |
3293 dvdsub_id = dvd_sid_from_lang(mpctx->stream, dvdsub_lang); | |
3294 // setup global sub numbering | |
3295 mpctx->sub_counts[SUB_SOURCE_DEMUX] = dvd_number_of_subs(mpctx->stream); | |
3296 current_module = NULL; | |
3297 } | |
4274 | 3298 #endif |
3299 | |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
3300 #ifdef CONFIG_DVDNAV |
33363 | 3301 if (mpctx->stream->type == STREAMTYPE_DVDNAV) { |
3302 current_module = "dvdnav lang->id"; | |
3303 if (audio_lang && audio_id == -1) | |
3304 audio_id = mp_dvdnav_aid_from_lang(mpctx->stream, audio_lang); | |
3305 dvdsub_lang_id = -3; | |
3306 if (dvdsub_lang && dvdsub_id == -1) | |
3307 dvdsub_lang_id = dvdsub_id = mp_dvdnav_sid_from_lang(mpctx->stream, dvdsub_lang); | |
3308 // setup global sub numbering | |
3309 mpctx->sub_counts[SUB_SOURCE_DEMUX] = mp_dvdnav_number_of_subs(mpctx->stream); | |
3310 current_module = NULL; | |
3311 } | |
21203
235a8e71ed6f
support for -slang and subtitles in dvdnav; patch by Attila Otvos (oattila chello hu) and me. No palette yet
nicodvb
parents:
21200
diff
changeset
|
3312 #endif |
235a8e71ed6f
support for -slang and subtitles in dvdnav; patch by Attila Otvos (oattila chello hu) and me. No palette yet
nicodvb
parents:
21200
diff
changeset
|
3313 |
5151 | 3314 // CACHE2: initial prefill: 20% later: 5% (should be set by -cacheopts) |
11352 | 3315 goto_enable_cache: |
33363 | 3316 if (stream_cache_size > 0) { |
3317 int res; | |
3318 current_module = "enable_cache"; | |
3319 res = stream_enable_cache(mpctx->stream, stream_cache_size * 1024, | |
3320 stream_cache_size * 1024 * (stream_cache_min_percent / 100.0), | |
3321 stream_cache_size * 1024 * (stream_cache_seek_min_percent / 100.0)); | |
3322 if (res == 0) | |
3323 if ((mpctx->eof = libmpdemux_was_interrupted(PT_NEXT_ENTRY))) | |
3324 goto goto_next_file; | |
3325 } | |
1639 | 3326 |
5151 | 3327 //============ Open DEMUXERS --- DETECT file type ======================= |
33363 | 3328 current_module = "demux_open"; |
3329 | |
3330 mpctx->demuxer = demux_open(mpctx->stream, mpctx->file_format, audio_id, video_id, dvdsub_id, filename); | |
8937 | 3331 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3332 // HACK to get MOV Reference Files working |
33363 | 3333 if (mpctx->demuxer && mpctx->demuxer->type == DEMUXER_TYPE_PLAYLIST) { |
3334 unsigned char *playlist_entry; | |
3335 play_tree_t *list = NULL, *entry = NULL; | |
3336 | |
3337 current_module = "handle_demux_playlist"; | |
3338 while (ds_get_packet(mpctx->demuxer->video, &playlist_entry) > 0) { | |
3339 char *temp; | |
3340 const char *bname; | |
3341 | |
3342 mp_msg(MSGT_CPLAYER, MSGL_V, "Adding file %s to element entry.\n", | |
3343 filename_recode(playlist_entry)); | |
3344 | |
3345 bname = mp_basename(playlist_entry); | |
3346 if ((strlen(bname) > 10) && !strncmp(bname, "qt", 2) && !strncmp(bname + 3, "gateQT", 6)) | |
3347 continue; | |
3348 | |
3349 if (!strcmp(playlist_entry, filename)) // ignoring self-reference | |
3350 continue; | |
3351 | |
3352 entry = play_tree_new(); | |
3353 | |
3354 if (filename && !strcmp(mp_basename(playlist_entry), playlist_entry)) { // add reference path of current file | |
3355 temp = malloc((strlen(filename) - strlen(mp_basename(filename)) + strlen(playlist_entry) + 1)); | |
3356 if (temp) { | |
3357 strncpy(temp, filename, strlen(filename) - strlen(mp_basename(filename))); | |
3358 temp[strlen(filename) - strlen(mp_basename(filename))] = '\0'; | |
3359 strcat(temp, playlist_entry); | |
3360 if (!strcmp(temp, filename)) { | |
3361 free(temp); | |
3362 continue; | |
3363 } | |
3364 play_tree_add_file(entry, temp); | |
3365 mp_msg(MSGT_CPLAYER, MSGL_V, "Resolving reference to %s.\n", temp); | |
3366 free(temp); | |
3367 } | |
3368 } else | |
3369 play_tree_add_file(entry, playlist_entry); | |
3370 | |
3371 if (!list) | |
3372 list = entry; | |
3373 else | |
3374 play_tree_append_entry(list, entry); | |
3375 } | |
3376 free_demuxer(mpctx->demuxer); | |
3377 mpctx->demuxer = NULL; | |
3378 | |
3379 if (list) { | |
3380 entry = play_tree_new(); | |
3381 play_tree_set_child(entry, list); | |
3382 mpctx->eof = playtree_add_playlist(entry); | |
3383 goto goto_next_file; | |
3384 } | |
8937 | 3385 } |
33363 | 3386 |
3387 if (!mpctx->demuxer) | |
3388 goto goto_next_file; | |
3389 if (dvd_chapter > 1) { | |
3390 float pts; | |
3391 if (demuxer_seek_chapter(mpctx->demuxer, dvd_chapter - 1, 1, &pts, NULL, NULL) >= 0 && pts > -1.0) | |
3392 seek(mpctx, pts, SEEK_ABSOLUTE); | |
3393 } | |
3394 | |
3395 initialized_flags |= INITIALIZED_DEMUXER; | |
7058
2e5c07262861
new v4l capture patch by Jindrich Makovicka <makovick@kmlinux.fjfi.cvut.cz>:
arpi
parents:
7055
diff
changeset
|
3396 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
3397 #ifdef CONFIG_ASS |
33363 | 3398 if (ass_enabled && ass_library) { |
3399 for (i = 0; i < mpctx->demuxer->num_attachments; ++i) { | |
3400 demux_attachment_t *att = mpctx->demuxer->attachments + i; | |
3401 if (extract_embedded_fonts && | |
3402 att->name && att->type && att->data && att->data_size && | |
3403 (strcmp(att->type, "application/x-truetype-font") == 0 || | |
3404 strcmp(att->type, "application/x-font") == 0)) | |
3405 ass_add_font(ass_library, att->name, att->data, att->data_size); | |
3406 } | |
3407 } | |
25658
0d0c48ecba90
Instead of keeping attachments in mkv demuxer, use demuxer_add_attachment().
eugeni
parents:
25641
diff
changeset
|
3408 #endif |
0d0c48ecba90
Instead of keeping attachments in mkv demuxer, use demuxer_add_attachment().
eugeni
parents:
25641
diff
changeset
|
3409 |
33363 | 3410 current_module = "demux_open2"; |
3411 | |
3412 mpctx->d_audio = mpctx->demuxer->audio; | |
3413 mpctx->d_video = mpctx->demuxer->video; | |
3414 mpctx->d_sub = mpctx->demuxer->sub; | |
3415 | |
3416 if (ts_prog) { | |
3417 int tmp = ts_prog; | |
3418 mp_property_do("switch_program", M_PROPERTY_SET, &tmp, mpctx); | |
3419 } | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3420 // select audio stream |
33363 | 3421 select_audio(mpctx->demuxer, audio_id, audio_lang); |
26090
c585e2ad8ebf
Select audio stream in mplayer and mencoder, overriding demuxer decision.
eugeni
parents:
26087
diff
changeset
|
3422 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3423 // DUMP STREAMS: |
33363 | 3424 if ((stream_dump_type) && (stream_dump_type < 4)) { |
3425 FILE *f; | |
3426 demux_stream_t *ds = NULL; | |
3427 current_module = "dump"; | |
3428 // select stream to dump | |
3429 switch (stream_dump_type) { | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3430 case 1: ds = mpctx->d_audio; break; |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3431 case 2: ds = mpctx->d_video; break; |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3432 case 3: ds = mpctx->d_sub; break; |
33363 | 3433 } |
3434 if (!ds) { | |
3435 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_DumpSelectedStreamMissing); | |
3436 exit_player(EXIT_ERROR); | |
3437 } | |
3438 // disable other streams: | |
3439 if (mpctx->d_audio && mpctx->d_audio != ds) { | |
3440 ds_free_packs(mpctx->d_audio); | |
3441 mpctx->d_audio->id = -2; | |
3442 } | |
3443 if (mpctx->d_video && mpctx->d_video != ds) { | |
3444 ds_free_packs(mpctx->d_video); | |
3445 mpctx->d_video->id = -2; | |
3446 } | |
3447 if (mpctx->d_sub && mpctx->d_sub != ds) { | |
3448 ds_free_packs(mpctx->d_sub); | |
3449 mpctx->d_sub->id = -2; | |
3450 } | |
3451 // let's dump it! | |
3452 f = fopen(stream_dump_name, "wb"); | |
3453 if (!f) { | |
3454 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_CantOpenDumpfile); | |
3455 exit_player(EXIT_ERROR); | |
3456 } | |
33390 | 3457 stream_dump_progress_start(); |
33363 | 3458 while (!ds->eof) { |
3459 unsigned char *start; | |
3460 int in_size = ds_get_packet(ds, &start); | |
3461 if ((mpctx->demuxer->file_format == DEMUXER_TYPE_AVI || mpctx->demuxer->file_format == DEMUXER_TYPE_ASF || mpctx->demuxer->file_format == DEMUXER_TYPE_MOV) | |
3462 && stream_dump_type == 2) | |
3463 fwrite(&in_size, 1, 4, f); | |
33390 | 3464 if (in_size > 0) { |
33363 | 3465 fwrite(start, in_size, 1, f); |
33390 | 3466 stream_dump_progress(in_size, mpctx->stream); |
3467 } | |
33363 | 3468 if (dvd_last_chapter > 0) { |
3469 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer); | |
3470 if (cur_chapter != -1 && cur_chapter + 1 > dvd_last_chapter) | |
3471 break; | |
3472 } | |
3473 } | |
3474 fclose(f); | |
33390 | 3475 stream_dump_progress_end(); |
33363 | 3476 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_CoreDumped); |
3477 exit_player_with_rc(EXIT_EOF, 0); | |
27953
e5918aa8557f
Reimplement -endchapter support again for -dump*, it was broken in r25987.
reimar
parents:
27838
diff
changeset
|
3478 } |
33363 | 3479 |
3480 mpctx->sh_audio = mpctx->d_audio->sh; | |
3481 mpctx->sh_video = mpctx->d_video->sh; | |
3482 | |
3483 if (mpctx->sh_video) { | |
3484 current_module = "video_read_properties"; | |
3485 if (!video_read_properties(mpctx->sh_video)) { | |
3486 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_CannotReadVideoProperties); | |
3487 mpctx->sh_video = mpctx->d_video->sh = NULL; | |
3488 } else { | |
3489 mp_msg(MSGT_CPLAYER, MSGL_V, MSGTR_FilefmtFourccSizeFpsFtime, | |
3490 mpctx->demuxer->file_format, mpctx->sh_video->format, mpctx->sh_video->disp_w, mpctx->sh_video->disp_h, | |
3491 mpctx->sh_video->fps, mpctx->sh_video->frametime | |
3492 ); | |
3493 | |
3494 /* need to set fps here for output encoders to pick it up in their init */ | |
3495 if (force_fps) { | |
3496 mpctx->sh_video->fps = force_fps; | |
3497 mpctx->sh_video->frametime = 1.0f / mpctx->sh_video->fps; | |
3498 } | |
3499 vo_fps = mpctx->sh_video->fps; | |
3500 | |
3501 if (!mpctx->sh_video->fps && !force_fps && !correct_pts) { | |
3502 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_FPSnotspecified); | |
3503 correct_pts = 1; | |
3504 } | |
3505 } | |
4598 | 3506 } |
33363 | 3507 |
3508 if (!mpctx->sh_video && !mpctx->sh_audio) { | |
3509 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_NoStreamFound); | |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
3510 #ifdef CONFIG_DVBIN |
33363 | 3511 if (mpctx->stream->type == STREAMTYPE_DVB) { |
3512 int dir; | |
3513 int v = mpctx->last_dvb_step; | |
3514 if (v > 0) | |
3515 dir = DVB_CHANNEL_HIGHER; | |
3516 else | |
3517 dir = DVB_CHANNEL_LOWER; | |
3518 | |
3519 if (dvb_step_channel(mpctx->stream, dir)) | |
3520 mpctx->eof = mpctx->dvbin_reopen = 1; | |
3521 } | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
3522 #endif |
33363 | 3523 goto goto_next_file; // exit_player(MSGTR_Exit_error); |
3524 } | |
778
13c0dfde813b
removed dummy audio track for -nosound, vo: flip detection
arpi_esp
parents:
766
diff
changeset
|
3525 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3526 /* display clip info */ |
33363 | 3527 demux_info_print(mpctx->demuxer); |
5151 | 3528 |
3529 //================== Read SUBTITLES (DVD & TEXT) ========================== | |
33363 | 3530 if (vo_spudec == NULL && |
3531 (mpctx->stream->type == STREAMTYPE_DVD || mpctx->stream->type == STREAMTYPE_DVDNAV)) { | |
33577
c111d9e9cfb0
Move init_vo_spudec to mp_common.c and reuse it in mencoder.
reimar
parents:
33574
diff
changeset
|
3532 init_vo_spudec(mpctx->stream, mpctx->sh_video, mpctx->d_sub ? mpctx->d_sub->sh : NULL); |
33363 | 3533 } |
3534 | |
3535 if (1 || mpctx->sh_video) { | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3536 // after reading video params we should load subtitles because |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3537 // we know fps so now we can adjust subtitle time to ~6 seconds AST |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3538 // check .sub |
33363 | 3539 double fps = mpctx->sh_video ? mpctx->sh_video->fps : 25; |
3540 current_module = "read_subtitles_file"; | |
3541 load_subtitles(filename, fps, add_subtitles); | |
3542 if (mpctx->set_of_sub_size > 0) | |
3543 mpctx->sub_counts[SUB_SOURCE_SUBS] = mpctx->set_of_sub_size; | |
3544 // set even if we have no subs yet, they may be added later | |
3545 initialized_flags |= INITIALIZED_SUBS; | |
17935
d72e7330c548
Subtitles properties: move sub_select, sub_pos, sub_visibilty,
albeu
parents:
17932
diff
changeset
|
3546 } |
33363 | 3547 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3548 if (select_subtitle(mpctx) && subdata) { |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3549 switch (stream_dump_type) { |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3550 case 3: list_sub_file(subdata); break; |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3551 case 4: dump_mpsub(subdata, mpctx->sh_video->fps); break; |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3552 case 6: dump_srt(subdata, mpctx->sh_video->fps); break; |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3553 case 7: dump_microdvd(subdata, mpctx->sh_video->fps); break; |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3554 case 8: dump_jacosub(subdata, mpctx->sh_video->fps); break; |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3555 case 9: dump_sami(subdata, mpctx->sh_video->fps); break; |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3556 } |
33363 | 3557 } |
3558 | |
3559 print_file_properties(mpctx, filename); | |
3560 | |
3561 // Adjust EDL positions with start_pts | |
3562 if (edl_start_pts && start_pts) { | |
3563 edl_record_ptr edl = edl_records; | |
3564 while (edl) { | |
3565 edl->start_sec += start_pts; | |
3566 edl->stop_sec += start_pts; | |
3567 edl = edl->next; | |
3568 } | |
3569 } | |
3570 | |
3571 if (mpctx->sh_video) | |
3572 reinit_video_chain(); | |
3573 | |
3574 if (mpctx->sh_video) { | |
3575 if (vo_flags & 0x08 && vo_spudec) | |
3576 spudec_set_hw_spu(vo_spudec, mpctx->video_out); | |
6110 | 3577 |
27393 | 3578 #ifdef CONFIG_FREETYPE |
33363 | 3579 force_load_font = 1; |
7122
0dc9cb756b68
freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
7111
diff
changeset
|
3580 #endif |
33363 | 3581 } else if (!mpctx->sh_audio) |
3582 goto goto_next_file; | |
7122
0dc9cb756b68
freetype 2.0/2.1+ support - disabled by default until bugs fixed
arpi
parents:
7111
diff
changeset
|
3583 |
1 | 3584 //================== MAIN: ========================== |
33363 | 3585 current_module = "main"; |
3586 | |
3587 if (playing_msg) { | |
3588 char *msg = property_expand_string(mpctx, playing_msg); | |
3589 mp_msg(MSGT_CPLAYER, MSGL_INFO, "%s", msg); | |
17911
52f95509cd05
Add the new property API and implement a couple properties.
albeu
parents:
17910
diff
changeset
|
3590 free(msg); |
52f95509cd05
Add the new property API and implement a couple properties.
albeu
parents:
17910
diff
changeset
|
3591 } |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
3592 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3593 // Disable the term OSD in verbose mode |
33363 | 3594 if (verbose) |
3595 term_osd = 0; | |
3596 | |
3597 { | |
3598 mpctx->num_buffered_frames = 0; | |
3599 mpctx->framestep_found = 0; | |
5929
9e7d54e7be58
- frame_time delayed one frame, as it's really duration of current frame,
arpi
parents:
5927
diff
changeset
|
3600 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3601 // Make sure old OSD does not stay around, |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3602 // e.g. with -fixed-vo and same-resolution files |
33363 | 3603 clear_osd_msgs(); |
3604 update_osd_msg(); | |
6028
bd016664dc18
UMRs fixed - noticed by Nilmoni Deb <ndeb@ece.cmu.edu>
arpi
parents:
6016
diff
changeset
|
3605 |
1 | 3606 //================ SETUP AUDIO ========================== |
3607 | |
33363 | 3608 if (mpctx->sh_audio) { |
3609 reinit_audio_chain(); | |
3610 if (mpctx->sh_audio && mpctx->sh_audio->codec) | |
3611 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_CODEC=%s\n", mpctx->sh_audio->codec->name); | |
3612 } | |
3613 | |
3614 current_module = "av_init"; | |
3615 | |
3616 if (mpctx->sh_video) { | |
3617 mpctx->sh_video->timer = 0; | |
3618 if (!ignore_start) | |
3619 audio_delay += mpctx->sh_video->stream_delay; | |
3620 } | |
3621 if (mpctx->sh_audio) { | |
3622 if (start_volume >= 0) | |
3623 mixer_setvolume(&mpctx->mixer, start_volume, start_volume); | |
3624 if (!ignore_start) | |
3625 audio_delay -= mpctx->sh_audio->stream_delay; | |
3626 mpctx->delay = -audio_delay; | |
3627 } | |
3628 | |
3629 if (!mpctx->sh_audio) { | |
3630 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_NoSound); | |
3631 mp_msg(MSGT_CPLAYER, MSGL_V, "Freeing %d unused audio chunks.\n", mpctx->d_audio->packs); | |
3632 ds_free_packs(mpctx->d_audio); // free buffered chunks | |
3633 //mpctx->d_audio->id=-2; // do not read audio chunks | |
3634 //uninit_player(INITIALIZED_AO); // close device | |
3635 } | |
3636 if (!mpctx->sh_video) { | |
3637 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_Video_NoVideo); | |
3638 mp_msg(MSGT_CPLAYER, MSGL_V, "Freeing %d unused video chunks.\n", mpctx->d_video->packs); | |
3639 ds_free_packs(mpctx->d_video); | |
3640 mpctx->d_video->id = -2; | |
3641 //if(!fixed_vo) uninit_player(INITIALIZED_VO); | |
3642 } | |
3643 | |
3644 if (!mpctx->sh_video && !mpctx->sh_audio) | |
3645 goto goto_next_file; | |
6185
7e769ea2acc7
jump to next file (or exit) if can't decode audio && video
alex
parents:
6183
diff
changeset
|
3646 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3647 //if(demuxer->file_format!=DEMUXER_TYPE_AVI) pts_from_bps=0; // it must be 0 for mpeg/asf! |
33363 | 3648 if (force_fps && mpctx->sh_video) { |
3649 vo_fps = mpctx->sh_video->fps = force_fps; | |
3650 mpctx->sh_video->frametime = 1.0f / mpctx->sh_video->fps; | |
3651 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_FPSforced, mpctx->sh_video->fps, mpctx->sh_video->frametime); | |
3652 } | |
1 | 3653 |
27343 | 3654 #ifdef CONFIG_GUI |
33363 | 3655 if (use_gui) { |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
3656 if (!gui(GUI_SET_VIDEO, mpctx->sh_video)) |
33363 | 3657 goto goto_next_file; |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
3658 gui(GUI_SET_AUDIO, mpctx->sh_audio); |
33363 | 3659 } |
19946
ef94dfe93fe8
Fix the sound mute switch in the GUI menu by moving the corresponding
diego
parents:
19945
diff
changeset
|
3660 #endif |
ef94dfe93fe8
Fix the sound mute switch in the GUI menu by moving the corresponding
diego
parents:
19945
diff
changeset
|
3661 |
33363 | 3662 mp_input_set_section(NULL); |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3663 //TODO: add desired (stream-based) sections here |
33363 | 3664 if (mpctx->stream->type == STREAMTYPE_TV) |
3665 mp_input_set_section("tv"); | |
3666 if (mpctx->stream->type == STREAMTYPE_DVDNAV) | |
3667 mp_input_set_section("dvdnav"); | |
23477 | 3668 |
1639 | 3669 //==================== START PLAYING ======================= |
3670 | |
33363 | 3671 if (mpctx->loop_times > 1) |
3672 mpctx->loop_times--; | |
3673 else if (mpctx->loop_times == 1) | |
3674 mpctx->loop_times = -1; | |
3675 | |
3676 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_StartPlaying); | |
3677 | |
3678 total_time_usage_start = GetTimer(); | |
3679 audio_time_usage = 0; | |
3680 video_time_usage = 0; | |
3681 vout_time_usage = 0; | |
3682 total_frame_cnt = 0; | |
3683 drop_frame_cnt = 0; // fix for multifile fps benchmark | |
3684 play_n_frames = play_n_frames_mf; | |
3685 mpctx->startup_decode_retry = DEFAULT_STARTUP_DECODE_RETRY; | |
3686 | |
3687 if (play_n_frames == 0) { | |
3688 mpctx->eof = PT_NEXT_ENTRY; | |
3689 goto goto_next_file; | |
3690 } | |
3691 | |
3692 if (seek_to_sec) { | |
3693 seek(mpctx, seek_to_sec, SEEK_ABSOLUTE); | |
3694 end_at.pos += seek_to_sec; | |
3695 } | |
22338
434cd072b0d3
Seek to -ss position without first starting audio/video from the start.
uau
parents:
22313
diff
changeset
|
3696 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
3697 #ifdef CONFIG_DVDNAV |
33363 | 3698 mp_dvdnav_context_free(mpctx); |
3699 if (mpctx->stream->type == STREAMTYPE_DVDNAV) { | |
3700 mp_dvdnav_read_wait(mpctx->stream, 0, 1); | |
3701 mp_dvdnav_cell_has_changed(mpctx->stream, 1); | |
3702 } | |
25824 | 3703 #endif |
22338
434cd072b0d3
Seek to -ss position without first starting audio/video from the start.
uau
parents:
22313
diff
changeset
|
3704 |
33363 | 3705 while (!mpctx->eof) { |
3706 float aq_sleep_time = 0; | |
3707 | |
3708 if (dvd_last_chapter > 0) { | |
3709 int cur_chapter = demuxer_get_current_chapter(mpctx->demuxer); | |
3710 if (cur_chapter != -1 && cur_chapter + 1 > dvd_last_chapter) | |
3711 goto goto_next_file; | |
3712 } | |
3713 | |
3714 if (!mpctx->sh_audio && mpctx->d_audio->sh) { | |
3715 mpctx->sh_audio = mpctx->d_audio->sh; | |
3716 mpctx->sh_audio->ds = mpctx->d_audio; | |
3717 reinit_audio_chain(); | |
3718 } | |
1 | 3719 |
3720 /*========================== PLAY AUDIO ============================*/ | |
5610 | 3721 |
33363 | 3722 if (mpctx->sh_audio) |
3723 if (!fill_audio_out_buffers()) | |
3724 // at eof, all audio at least written to ao | |
3725 if (!mpctx->sh_video) | |
3726 mpctx->eof = PT_NEXT_ENTRY; | |
3727 | |
3728 if (!mpctx->sh_video) { | |
3729 // handle audio-only case: | |
3730 double a_pos = 0; | |
3731 // sh_audio can be NULL due to video stream switching | |
3732 // TODO: handle this better | |
33493
fd4a27bd4ed4
a_pos is also used by update_subtitles, so initialize it always.
reimar
parents:
33491
diff
changeset
|
3733 if (mpctx->sh_audio) |
33363 | 3734 a_pos = playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out); |
3735 | |
3736 if (!quiet) | |
3737 print_status(a_pos, 0, 0); | |
3738 | |
33495 | 3739 if (is_at_end(mpctx, &end_at, a_pos)) |
33363 | 3740 mpctx->eof = PT_NEXT_ENTRY; |
3741 update_subtitles(NULL, a_pos, mpctx->d_sub, 0); | |
3742 update_osd_msg(); | |
3743 } else { | |
3744 int frame_time_remaining = 0; | |
3745 int blit_frame = 1; | |
3746 // skip timing after seek | |
3747 int skip_timing = mpctx->startup_decode_retry > 0; | |
4587
886bf5274992
Audio only support. Include a fix in the asf demuxer opening.
albeu
parents:
4552
diff
changeset
|
3748 |
1 | 3749 /*========================== PLAY VIDEO ============================*/ |
3750 | |
33363 | 3751 vo_pts = mpctx->sh_video->timer * 90000.0; |
3752 vo_fps = mpctx->sh_video->fps; | |
3753 | |
3754 if (!mpctx->num_buffered_frames) { | |
3755 double frame_time = update_video(&blit_frame); | |
3756 while (!blit_frame && mpctx->startup_decode_retry > 0) { | |
3757 double delay = mpctx->delay; | |
3758 // these initial decode failures are probably due to codec delay, | |
3759 // ignore them and also their probably nonsense durations | |
3760 update_video(&blit_frame); | |
3761 mpctx->delay = delay; | |
3762 mpctx->startup_decode_retry--; | |
3763 } | |
3764 mpctx->startup_decode_retry = 0; | |
3765 mp_dbg(MSGT_AVSYNC, MSGL_DBG2, "*** ftime=%5.3f ***\n", frame_time); | |
3766 if (mpctx->sh_video->vf_initialized < 0) { | |
3767 mp_msg(MSGT_CPLAYER, MSGL_FATAL, MSGTR_NotInitializeVOPorVO); | |
3768 mpctx->eof = 1; | |
3769 goto goto_next_file; | |
3770 } | |
3771 if (frame_time < 0) { | |
3772 // if we have no more video, sleep some arbitrary time | |
3773 frame_time = 1.0 / 20.0; | |
3774 // only stop playing when audio is at end as well | |
3775 if (!mpctx->sh_audio || mpctx->d_audio->eof) | |
3776 mpctx->eof = 1; | |
3777 } else { | |
3778 // might return with !eof && !blit_frame if !correct_pts | |
3779 mpctx->num_buffered_frames += blit_frame; | |
3780 mpctx->time_frame += frame_time / playback_speed; // for nosound | |
3781 } | |
3782 } | |
5929
9e7d54e7be58
- frame_time delayed one frame, as it's really duration of current frame,
arpi
parents:
5927
diff
changeset
|
3783 |
5610 | 3784 // ========================================================================== |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
3785 |
5643 | 3786 // current_module="draw_osd"; |
22280
a5e5b0c45c03
Split command/property handling from mplayer.c to a new file command.c.
uau
parents:
22255
diff
changeset
|
3787 // if(vo_config_count) mpctx->video_out->draw_osd(); |
1 | 3788 |
27343 | 3789 #ifdef CONFIG_GUI |
33363 | 3790 if (use_gui) |
33732 | 3791 gui(GUI_HANDLE_EVENTS, 0); |
5610 | 3792 #endif |
3793 | |
33363 | 3794 current_module = "vo_check_events"; |
3795 if (vo_config_count) | |
3796 mpctx->video_out->check_events(); | |
20894 | 3797 |
27377
d58d06eafe83
Change a bunch of X11-specific preprocessor directives.
diego
parents:
27370
diff
changeset
|
3798 #ifdef CONFIG_X11 |
33363 | 3799 if (stop_xscreensaver) { |
3800 current_module = "stop_xscreensaver"; | |
3801 xscreensaver_heartbeat(); | |
3802 } | |
20900
b0f2e9a16bb1
Move xscreensaver_heartbeat call next to vo check_events
uau
parents:
20899
diff
changeset
|
3803 #endif |
33363 | 3804 if (heartbeat_cmd) { |
3805 static unsigned last_heartbeat; | |
3806 unsigned now = GetTimerMS(); | |
3807 if (now - last_heartbeat > 30000) { | |
3808 last_heartbeat = now; | |
3809 system(heartbeat_cmd); | |
3810 } | |
3811 } | |
3812 | |
3813 if (!skip_timing) | |
3814 frame_time_remaining = sleep_until_update(&mpctx->time_frame, &aq_sleep_time); | |
5929
9e7d54e7be58
- frame_time delayed one frame, as it's really duration of current frame,
arpi
parents:
5927
diff
changeset
|
3815 |
5610 | 3816 //====================== FLIP PAGE (VIDEO BLT): ========================= |
3817 | |
33363 | 3818 if (!edl_needs_reset) { |
3819 current_module = "flip_page"; | |
3820 if (!frame_time_remaining && blit_frame) { | |
3821 unsigned int t2 = GetTimer(); | |
3822 | |
3823 if (vo_config_count) | |
3824 mpctx->video_out->flip_page(); | |
3825 mpctx->num_buffered_frames--; | |
3826 | |
3827 vout_time_usage += (GetTimer() - t2) * 0.000001; | |
3828 } | |
3829 } | |
5610 | 3830 //====================== A-V TIMESTAMP CORRECTION: ========================= |
3831 | |
33363 | 3832 adjust_sync_and_print_status(frame_time_remaining, mpctx->time_frame); |
5610 | 3833 |
3834 //============================ Auto QUALITY ============================ | |
1 | 3835 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3836 /*Output quality adjustments:*/ |
33363 | 3837 if (auto_quality > 0) { |
3838 current_module = "autoq"; | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3839 //float total=0.000001f * (GetTimer()-aq_total_time); |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3840 //if(output_quality<auto_quality && aq_sleep_time>0.05f*total) |
33363 | 3841 if (output_quality < auto_quality && aq_sleep_time > 0) |
3842 ++output_quality; | |
3843 else | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3844 //if(output_quality>0 && aq_sleep_time<-0.05f*total) |
33363 | 3845 if (output_quality > 1 && aq_sleep_time < 0) |
3846 --output_quality; | |
3847 else if (output_quality > 0 && aq_sleep_time < -0.050f) // 50ms | |
3848 output_quality = 0; | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3849 //printf("total: %8.6f sleep: %8.6f q: %d\n",(0.000001f*aq_total_time),aq_sleep_time,output_quality); |
33363 | 3850 set_video_quality(mpctx->sh_video, output_quality); |
3851 } | |
3852 | |
3853 if (play_n_frames >= 0 && !frame_time_remaining && blit_frame) { | |
3854 --play_n_frames; | |
3855 if (play_n_frames <= 0) | |
3856 mpctx->eof = PT_NEXT_ENTRY; | |
3857 } | |
3858 | |
33495 | 3859 if (!frame_time_remaining && is_at_end(mpctx, &end_at, |
3860 mpctx->sh_video->pts)) | |
33363 | 3861 mpctx->eof = PT_NEXT_ENTRY; |
3862 } // end if(mpctx->sh_video) | |
5610 | 3863 |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
3864 #ifdef CONFIG_DVDNAV |
33363 | 3865 if (mpctx->stream->type == STREAMTYPE_DVDNAV) { |
3866 nav_highlight_t hl; | |
3867 mp_dvdnav_get_highlight(mpctx->stream, &hl); | |
3868 if (!vo_spudec || !spudec_apply_palette_crop(vo_spudec, hl.palette, hl.sx, hl.sy, hl.ex, hl.ey)) { | |
3869 osd_set_nav_box(hl.sx, hl.sy, hl.ex, hl.ey); | |
3870 vo_osd_changed(OSDTYPE_DVDNAV); | |
3871 } else { | |
3872 osd_set_nav_box(0, 0, 0, 0); | |
3873 vo_osd_changed(OSDTYPE_DVDNAV); | |
3874 vo_osd_changed(OSDTYPE_SPU); | |
3875 } | |
3876 | |
3877 if (mp_dvdnav_stream_has_changed(mpctx->stream)) { | |
3878 double ar = -1.0; | |
3879 if (mpctx->sh_video && | |
3880 stream_control(mpctx->demuxer->stream, | |
3881 STREAM_CTRL_GET_ASPECT_RATIO, &ar) | |
3882 != STREAM_UNSUPPORTED) | |
3883 mpctx->sh_video->stream_aspect = ar; | |
3884 } | |
3885 } | |
21193
a067e7e18b50
support for dvdnav menu buttons overlay as simple alpha boxes (rework from Otvos Attila's series of patches)
ben
parents:
21161
diff
changeset
|
3886 #endif |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
29189
diff
changeset
|
3887 |
5610 | 3888 //============================ Handle PAUSE =============================== |
3889 | |
33363 | 3890 current_module = "pause"; |
3891 | |
3892 if (mpctx->osd_function == OSD_PAUSE) { | |
3893 mpctx->was_paused = 1; | |
3894 pause_loop(); | |
3895 } | |
371 | 3896 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
3897 // handle -sstep |
33363 | 3898 if (step_sec > 0) { |
3899 mpctx->osd_function = OSD_FFW; | |
3900 rel_seek_secs += step_sec; | |
3901 } | |
3902 | |
3903 edl_update(mpctx); | |
8531
1aa2c9b460af
Merged EDL 0.5 patch - it's something like Quicktime's edit lists.
arpi
parents:
8494
diff
changeset
|
3904 |
1 | 3905 //================= Keyboard events, SEEKing ==================== |
3906 | |
33363 | 3907 current_module = "key_events"; |
3908 | |
3909 { | |
3910 mp_cmd_t *cmd; | |
3911 int brk_cmd = 0; | |
3912 while (!brk_cmd && (cmd = mp_input_get_cmd(0, 0, 0)) != NULL) { | |
3913 brk_cmd = run_command(mpctx, cmd); | |
3914 if (cmd->id == MP_CMD_EDL_LOADFILE) { | |
3915 free(edl_filename); | |
3916 edl_filename = strdup(cmd->args[0].v.s); | |
3917 if (edl_filename) | |
3918 edl_loadfile(); | |
3919 else | |
3920 mp_msg(MSGT_CPLAYER, MSGL_ERR, MSGTR_EdlOutOfMemFile, | |
3921 cmd->args[0].v.s); | |
3922 } | |
3923 mp_cmd_free(cmd); | |
3924 if (brk_cmd == 2) | |
3925 goto goto_enable_cache; | |
3926 } | |
3927 } | |
3928 mpctx->was_paused = 0; | |
3929 | |
3930 /* Looping. */ | |
3931 if (mpctx->eof == 1 && mpctx->loop_times >= 0) { | |
3932 mp_msg(MSGT_CPLAYER, MSGL_V, "loop_times = %d, eof = %d\n", mpctx->loop_times, mpctx->eof); | |
3933 | |
3934 if (mpctx->loop_times > 1) | |
3935 mpctx->loop_times--; | |
3936 else if (mpctx->loop_times == 1) | |
3937 mpctx->loop_times = -1; | |
3938 play_n_frames = play_n_frames_mf; | |
3939 mpctx->eof = 0; | |
3940 abs_seek_pos = SEEK_ABSOLUTE; | |
3941 rel_seek_secs = seek_to_sec; | |
3942 loop_seek = 1; | |
3943 } | |
3944 | |
3945 if (rel_seek_secs || abs_seek_pos) { | |
3946 if (seek(mpctx, rel_seek_secs, abs_seek_pos) >= 0) { | |
3947 // Set OSD: | |
3948 if (!loop_seek) { | |
3949 if (!edl_decision) | |
3950 set_osd_bar(0, "Position", 0, 100, demuxer_get_percent_pos(mpctx->demuxer)); | |
3951 } | |
3952 } | |
3953 | |
3954 rel_seek_secs = 0; | |
3955 abs_seek_pos = 0; | |
3956 loop_seek = 0; | |
3957 edl_decision = 0; | |
3958 } | |
1466 | 3959 |
27343 | 3960 #ifdef CONFIG_GUI |
33363 | 3961 if (use_gui) { |
33732 | 3962 gui(GUI_HANDLE_EVENTS, 0); |
33363 | 3963 if (mpctx->demuxer->file_format == DEMUXER_TYPE_AVI && mpctx->sh_video && mpctx->sh_video->video.dwLength > 2) { |
3964 // get pos from frame number / total frames | |
33555 | 3965 guiInfo.Position = (float)mpctx->d_video->pack_no * 100.0f / mpctx->sh_video->video.dwLength; |
33363 | 3966 } else { |
33555 | 3967 guiInfo.Position = demuxer_get_percent_pos(mpctx->demuxer); |
33363 | 3968 } |
3969 if (mpctx->sh_video) | |
33897 | 3970 guiInfo.ElapsedTime = mpctx->sh_video->pts; |
33363 | 3971 else if (mpctx->sh_audio) |
33897 | 3972 guiInfo.ElapsedTime = playing_audio_pts(mpctx->sh_audio, mpctx->d_audio, mpctx->audio_out); |
3973 guiInfo.RunningTime = demuxer_get_time_length(mpctx->demuxer); | |
33731
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
3974 gui(GUI_SET_MIXER, 0); |
81f71d910333
Cosmetic: Change prefix for symbolic constants from GMP to GUI.
ib
parents:
33725
diff
changeset
|
3975 gui(GUI_REDRAW, 0); |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
3976 if (guiInfo.Playing == GUI_STOP) |
33363 | 3977 break; // STOP |
33615
1f9a31d4f114
Replace all playback integer constants by their symbolic constants.
ib
parents:
33614
diff
changeset
|
3978 if (guiInfo.Playing == GUI_PAUSE) |
33363 | 3979 mpctx->osd_function = OSD_PAUSE; |
33890 | 3980 if (guiInfo.NewPlay) |
33363 | 3981 goto goto_next_file; |
27341
e7c989f7a7c9
Start unifying names of internal preprocessor directives.
diego
parents:
27321
diff
changeset
|
3982 #ifdef CONFIG_DVDREAD |
33363 | 3983 if (mpctx->stream->type == STREAMTYPE_DVD) { |
3984 dvd_priv_t *dvdp = mpctx->stream->priv; | |
33876
4789b8eed97e
Get rid of a bunch of needless or redundant guiInfo members.
ib
parents:
33875
diff
changeset
|
3985 guiInfo.Chapter = dvd_chapter_from_cell(dvdp, guiInfo.Track - 1, dvdp->cur_cell) + 1; |
33363 | 3986 } |
3054 | 3987 #endif |
33363 | 3988 } |
27343 | 3989 #endif /* CONFIG_GUI */ |
33363 | 3990 } // while(!mpctx->eof) |
3991 | |
3992 mp_msg(MSGT_GLOBAL, MSGL_V, "EOF code: %d \n", mpctx->eof); | |
1 | 3993 |
27370
14c5017f40d2
Change a bunch of video/audio-output-specific preprocessor directives from
diego
parents:
27359
diff
changeset
|
3994 #ifdef CONFIG_DVBIN |
33363 | 3995 if (mpctx->dvbin_reopen) { |
3996 mpctx->eof = 0; | |
3997 uninit_player(INITIALIZED_ALL - (INITIALIZED_GUI | INITIALIZED_STREAM | INITIALIZED_INPUT | INITIALIZED_GETCH2 | (fixed_vo ? INITIALIZED_VO : 0))); | |
3998 cache_uninit(mpctx->stream); | |
3999 mpctx->dvbin_reopen = 0; | |
4000 goto goto_enable_cache; | |
4001 } | |
18286 | 4002 #endif |
33363 | 4003 } |
1639 | 4004 |
3618 | 4005 goto_next_file: // don't jump here after ao/vo/getch initialization! |
1641
b7dae998505c
free stream/demuxer. continue playback with next file if error found
arpi
parents:
1639
diff
changeset
|
4006 |
33363 | 4007 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\n"); |
4008 | |
4009 if (benchmark) { | |
4010 double tot = video_time_usage + vout_time_usage + audio_time_usage; | |
4011 double total_time_usage; | |
4012 total_time_usage_start = GetTimer() - total_time_usage_start; | |
4013 total_time_usage = (float)total_time_usage_start * 0.000001; | |
4014 mp_msg(MSGT_CPLAYER, MSGL_INFO, "\nBENCHMARKs: VC:%8.3fs VO:%8.3fs A:%8.3fs Sys:%8.3fs = %8.3fs\n", | |
4015 video_time_usage, vout_time_usage, audio_time_usage, | |
4016 total_time_usage - tot, total_time_usage); | |
4017 if (total_time_usage > 0.0) | |
4018 mp_msg(MSGT_CPLAYER, MSGL_INFO, "BENCHMARK%%: VC:%8.4f%% VO:%8.4f%% A:%8.4f%% Sys:%8.4f%% = %8.4f%%\n", | |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
4019 100.0 * video_time_usage / total_time_usage, |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
4020 100.0 * vout_time_usage / total_time_usage, |
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
4021 100.0 * audio_time_usage / total_time_usage, |
33363 | 4022 100.0 * (total_time_usage - tot) / total_time_usage, |
4023 100.0); | |
4024 if (total_frame_cnt && frame_dropping) | |
4025 mp_msg(MSGT_CPLAYER, MSGL_INFO, "BENCHMARKn: disp: %d (%3.2f fps) drop: %d (%d%%) total: %d (%3.2f fps)\n", | |
4026 total_frame_cnt - drop_frame_cnt, | |
4027 (total_time_usage > 0.5) ? ((total_frame_cnt - drop_frame_cnt) / total_time_usage) : 0, | |
4028 drop_frame_cnt, | |
4029 100 * drop_frame_cnt / total_frame_cnt, | |
4030 total_frame_cnt, | |
4031 (total_time_usage > 0.5) ? (total_frame_cnt / total_time_usage) : 0); | |
4032 } | |
4221 | 4033 |
33491
52545582f44d
Various alignment cosmetics and brackets simplifications.
cboesch
parents:
33490
diff
changeset
|
4034 // time to uninit all, except global stuff: |
33363 | 4035 uninit_player(INITIALIZED_ALL - (INITIALIZED_GUI + INITIALIZED_INPUT + (fixed_vo ? INITIALIZED_VO : 0))); |
4036 | |
4037 if (mpctx->eof == PT_NEXT_ENTRY || mpctx->eof == PT_PREV_ENTRY) { | |
4038 mpctx->eof = mpctx->eof == PT_NEXT_ENTRY ? 1 : -1; | |
4039 if (play_tree_iter_step(mpctx->playtree_iter, mpctx->play_tree_step, 0) == PLAY_TREE_ITER_ENTRY) { | |
26159
7862aea6a387
cosmetics: Decrapify the indentation of the last few blocks of main().
diego
parents:
26130
diff
changeset
|
4040 mpctx->eof = 1; |
7862aea6a387
cosmetics: Decrapify the indentation of the last few blocks of main().
diego
parents:
26130
diff
changeset
|
4041 } else { |
7862aea6a387
cosmetics: Decrapify the indentation of the last few blocks of main().
diego
parents:
26130
diff
changeset
|
4042 play_tree_iter_free(mpctx->playtree_iter); |
7862aea6a387
cosmetics: Decrapify the indentation of the last few blocks of main().
diego
parents:
26130
diff
changeset
|
4043 mpctx->playtree_iter = NULL; |
7862aea6a387
cosmetics: Decrapify the indentation of the last few blocks of main().
diego
parents:
26130
diff
changeset
|
4044 } |
33363 | 4045 mpctx->play_tree_step = 1; |
4046 } else if (mpctx->eof == PT_UP_NEXT || mpctx->eof == PT_UP_PREV) { | |
4047 mpctx->eof = mpctx->eof == PT_UP_NEXT ? 1 : -1; | |
4048 if (mpctx->playtree_iter) { | |
4049 if (play_tree_iter_up_step(mpctx->playtree_iter, mpctx->eof, 0) == PLAY_TREE_ITER_ENTRY) { | |
4050 mpctx->eof = 1; | |
4051 } else { | |
4052 play_tree_iter_free(mpctx->playtree_iter); | |
4053 mpctx->playtree_iter = NULL; | |
4054 } | |
4055 } | |
4056 } else if (mpctx->eof == PT_STOP) { | |
4057 play_tree_iter_free(mpctx->playtree_iter); | |
4058 mpctx->playtree_iter = NULL; | |
4059 } else { // NEXT PREV SRC | |
4060 mpctx->eof = mpctx->eof == PT_PREV_SRC ? -1 : 1; | |
26159
7862aea6a387
cosmetics: Decrapify the indentation of the last few blocks of main().
diego
parents:
26130
diff
changeset
|
4061 } |
33363 | 4062 |
4063 if (mpctx->eof == 0) | |
4064 mpctx->eof = 1; | |
4065 | |
4066 while (mpctx->playtree_iter != NULL) { | |
4067 filename = play_tree_iter_get_file(mpctx->playtree_iter, mpctx->eof); | |
4068 if (filename == NULL) { | |
4069 if (play_tree_iter_step(mpctx->playtree_iter, mpctx->eof, 0) != PLAY_TREE_ITER_ENTRY) { | |
4070 play_tree_iter_free(mpctx->playtree_iter); | |
4071 mpctx->playtree_iter = NULL; | |
4072 } | |
4073 } else | |
4074 break; | |
4075 } | |
4045
898caa690c0b
playtree support. replaces old playlist and multifile mess. patch by Alban Bedel <albeu@free.fr>
arpi
parents:
3934
diff
changeset
|
4076 |
27343 | 4077 #ifdef CONFIG_GUI |
33891 | 4078 if (use_gui) |
33890 | 4079 if (guiInfo.NewPlay != GUI_FILE_SAME) |
33891 | 4080 gui(GUI_END_FILE, 0); |
5910
20c335d98ab3
fix fullscreen bug es ilyen libvo not initialized bug with gui igy
pontscho
parents:
5908
diff
changeset
|
4081 #endif |
20c335d98ab3
fix fullscreen bug es ilyen libvo not initialized bug with gui igy
pontscho
parents:
5908
diff
changeset
|
4082 |
33481 | 4083 if ( |
4084 #ifdef CONFIG_GUI | |
33555 | 4085 (use_gui && guiInfo.Playing) || |
33481 | 4086 #endif |
33630 | 4087 mpctx->playtree_iter != NULL || player_idle_mode) { |
33363 | 4088 if (!mpctx->playtree_iter) |
4089 filename = NULL; | |
4090 mpctx->eof = 0; | |
4091 goto play_next_file; | |
4092 } | |
4093 | |
4094 exit_player_with_rc(EXIT_EOF, 0); | |
4095 return 1; | |
1639 | 4096 } |
4097 | |
26963
8825552ee585
Fix the linking of TOOLS/netstream and TOOLS/vivodump.
diego
parents:
26877
diff
changeset
|
4098 #endif /* DISABLE_MAIN */ |