Fix multiple inclusion guards, identifiers starting with __ are reserved
[mplayer/greg.git] / command.c
blobbe5c1ebb0e78f995ab8c33791ac945168d31a0d5
1 #include <stdlib.h>
2 #include <inttypes.h>
3 #include <unistd.h>
4 #include <string.h>
6 #include "config.h"
7 #include "input/input.h"
8 #include "stream/stream.h"
9 #include "libmpdemux/demuxer.h"
10 #include "libmpdemux/stheader.h"
11 #include "codec-cfg.h"
12 #include "mplayer.h"
13 #include "libvo/sub.h"
14 #include "m_option.h"
15 #include "m_property.h"
16 #include "help_mp.h"
17 #include "metadata.h"
18 #include "libmpcodecs/mp_image.h"
19 #include "libmpcodecs/vf.h"
20 #include "libmpcodecs/vd.h"
21 #include "libvo/video_out.h"
22 #include "libvo/font_load.h"
23 #include "playtree.h"
24 #include "libao2/audio_out.h"
25 #include "mpcommon.h"
26 #include "mixer.h"
27 #include "libmpdemux/matroska.h"
28 #include "libmpcodecs/dec_video.h"
29 #include "vobsub.h"
30 #include "spudec.h"
31 #include "get_path.h"
32 #ifdef USE_TV
33 #include "stream/tv.h"
34 #endif
35 #ifdef USE_RADIO
36 #include "stream/stream_radio.h"
37 #endif
38 #ifdef HAVE_PVR
39 #include "stream/pvr.h"
40 #endif
41 #ifdef HAS_DVBIN_SUPPORT
42 #include "stream/dvbin.h"
43 #endif
44 #ifdef USE_DVDREAD
45 #include "stream/stream_dvd.h"
46 #endif
47 #ifdef USE_DVDNAV
48 #include "stream/stream_dvdnav.h"
49 #endif
50 #ifdef USE_ASS
51 #include "libass/ass.h"
52 #include "libass/ass_mp.h"
53 #endif
54 #ifdef HAVE_NEW_GUI
55 #include "gui/interface.h"
56 #endif
58 #include "mp_core.h"
59 #include "mp_fifo.h"
61 #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))
63 static void rescale_input_coordinates(int ix, int iy, double *dx, double *dy)
65 //remove the borders, if any, and rescale to the range [0,1],[0,1]
66 if (vo_fs) { //we are in full-screen mode
67 if (vo_screenwidth > vo_dwidth) //there are borders along the x axis
68 ix -= (vo_screenwidth - vo_dwidth) / 2;
69 if (vo_screenheight > vo_dheight) //there are borders along the y axis (usual way)
70 iy -= (vo_screenheight - vo_dheight) / 2;
72 if (ix < 0 || ix > vo_dwidth) {
73 *dx = *dy = -1.0;
74 return;
75 } //we are on one of the borders
76 if (iy < 0 || iy > vo_dheight) {
77 *dx = *dy = -1.0;
78 return;
79 } //we are on one of the borders
82 *dx = (double) ix / (double) vo_dwidth;
83 *dy = (double) iy / (double) vo_dheight;
85 mp_msg(MSGT_CPLAYER, MSGL_V,
86 "\r\nrescaled coordinates: %.3lf, %.3lf, screen (%d x %d), vodisplay: (%d, %d), fullscreen: %d\r\n",
87 *dx, *dy, vo_screenwidth, vo_screenheight, vo_dwidth,
88 vo_dheight, vo_fs);
91 static int sub_source_by_pos(MPContext * mpctx, int pos)
93 int source = -1;
94 int top = -1;
95 int i;
96 for (i = 0; i < SUB_SOURCES; i++) {
97 int j = mpctx->global_sub_indices[i];
98 if ((j >= 0) && (j > top) && (pos >= j)) {
99 source = i;
100 top = j;
103 return source;
106 static int sub_source(MPContext * mpctx)
108 return sub_source_by_pos(mpctx, mpctx->global_sub_pos);
112 * \brief Log the currently displayed subtitle to a file
114 * Logs the current or last displayed subtitle together with filename
115 * and time information to ~/.mplayer/subtitle_log
117 * Intended purpose is to allow convenient marking of bogus subtitles
118 * which need to be fixed while watching the movie.
121 static void log_sub(void)
123 char *fname;
124 FILE *f;
125 int i;
127 if (subdata == NULL || vo_sub_last == NULL)
128 return;
129 fname = get_path("subtitle_log");
130 f = fopen(fname, "a");
131 if (!f)
132 return;
133 fprintf(f, "----------------------------------------------------------\n");
134 if (subdata->sub_uses_time) {
135 fprintf(f,
136 "N: %s S: %02ld:%02ld:%02ld.%02ld E: %02ld:%02ld:%02ld.%02ld\n",
137 filename, vo_sub_last->start / 360000,
138 (vo_sub_last->start / 6000) % 60,
139 (vo_sub_last->start / 100) % 60, vo_sub_last->start % 100,
140 vo_sub_last->end / 360000, (vo_sub_last->end / 6000) % 60,
141 (vo_sub_last->end / 100) % 60, vo_sub_last->end % 100);
142 } else {
143 fprintf(f, "N: %s S: %ld E: %ld\n", filename, vo_sub_last->start,
144 vo_sub_last->end);
146 for (i = 0; i < vo_sub_last->lines; i++) {
147 fprintf(f, "%s\n", vo_sub_last->text[i]);
149 fclose(f);
153 /// \defgroup Properties
154 ///@{
156 /// \defgroup GeneralProperties General properties
157 /// \ingroup Properties
158 ///@{
160 /// OSD level (RW)
161 static int mp_property_osdlevel(m_option_t * prop, int action, void *arg,
162 MPContext * mpctx)
164 return m_property_choice(prop, action, arg, &osd_level);
167 /// Loop (RW)
168 static int mp_property_loop(m_option_t * prop, int action, void *arg,
169 MPContext * mpctx)
171 switch (action) {
172 case M_PROPERTY_PRINT:
173 if (!arg) return M_PROPERTY_ERROR;
174 if (mpctx->loop_times < 0)
175 *(char**)arg = strdup("off");
176 else if (mpctx->loop_times == 0)
177 *(char**)arg = strdup("inf");
178 else
179 break;
180 return M_PROPERTY_OK;
182 return m_property_int_range(prop, action, arg, &mpctx->loop_times);
185 /// Playback speed (RW)
186 static int mp_property_playback_speed(m_option_t * prop, int action,
187 void *arg, MPContext * mpctx)
189 switch (action) {
190 case M_PROPERTY_SET:
191 if (!arg)
192 return M_PROPERTY_ERROR;
193 M_PROPERTY_CLAMP(prop, *(float *) arg);
194 playback_speed = *(float *) arg;
195 build_afilter_chain(mpctx->sh_audio, &ao_data);
196 return M_PROPERTY_OK;
197 case M_PROPERTY_STEP_UP:
198 case M_PROPERTY_STEP_DOWN:
199 playback_speed += (arg ? *(float *) arg : 0.1) *
200 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
201 M_PROPERTY_CLAMP(prop, playback_speed);
202 build_afilter_chain(mpctx->sh_audio, &ao_data);
203 return M_PROPERTY_OK;
205 return m_property_float_range(prop, action, arg, &playback_speed);
208 /// filename with path (RO)
209 static int mp_property_path(m_option_t * prop, int action, void *arg,
210 MPContext * mpctx)
212 return m_property_string_ro(prop, action, arg, filename);
215 /// filename without path (RO)
216 static int mp_property_filename(m_option_t * prop, int action, void *arg,
217 MPContext * mpctx)
219 char *f;
220 if (!filename)
221 return M_PROPERTY_UNAVAILABLE;
222 if (((f = strrchr(filename, '/')) || (f = strrchr(filename, '\\'))) && f[1])
223 f++;
224 else
225 f = filename;
226 return m_property_string_ro(prop, action, arg, f);
229 /// Demuxer name (RO)
230 static int mp_property_demuxer(m_option_t * prop, int action, void *arg,
231 MPContext * mpctx)
233 if (!mpctx->demuxer)
234 return M_PROPERTY_UNAVAILABLE;
235 return m_property_string_ro(prop, action, arg,
236 (char *) mpctx->demuxer->desc->name);
239 /// Position in the stream (RW)
240 static int mp_property_stream_pos(m_option_t * prop, int action, void *arg,
241 MPContext * mpctx)
243 if (!mpctx->demuxer || !mpctx->demuxer->stream)
244 return M_PROPERTY_UNAVAILABLE;
245 if (!arg)
246 return M_PROPERTY_ERROR;
247 switch (action) {
248 case M_PROPERTY_GET:
249 *(off_t *) arg = stream_tell(mpctx->demuxer->stream);
250 return M_PROPERTY_OK;
251 case M_PROPERTY_SET:
252 M_PROPERTY_CLAMP(prop, *(off_t *) arg);
253 stream_seek(mpctx->demuxer->stream, *(off_t *) arg);
254 return M_PROPERTY_OK;
256 return M_PROPERTY_NOT_IMPLEMENTED;
259 /// Stream start offset (RO)
260 static int mp_property_stream_start(m_option_t * prop, int action,
261 void *arg, MPContext * mpctx)
263 if (!mpctx->demuxer || !mpctx->demuxer->stream)
264 return M_PROPERTY_UNAVAILABLE;
265 switch (action) {
266 case M_PROPERTY_GET:
267 *(off_t *) arg = mpctx->demuxer->stream->start_pos;
268 return M_PROPERTY_OK;
270 return M_PROPERTY_NOT_IMPLEMENTED;
273 /// Stream end offset (RO)
274 static int mp_property_stream_end(m_option_t * prop, int action, void *arg,
275 MPContext * mpctx)
277 if (!mpctx->demuxer || !mpctx->demuxer->stream)
278 return M_PROPERTY_UNAVAILABLE;
279 switch (action) {
280 case M_PROPERTY_GET:
281 *(off_t *) arg = mpctx->demuxer->stream->end_pos;
282 return M_PROPERTY_OK;
284 return M_PROPERTY_NOT_IMPLEMENTED;
287 /// Stream length (RO)
288 static int mp_property_stream_length(m_option_t * prop, int action,
289 void *arg, MPContext * mpctx)
291 if (!mpctx->demuxer || !mpctx->demuxer->stream)
292 return M_PROPERTY_UNAVAILABLE;
293 switch (action) {
294 case M_PROPERTY_GET:
295 *(off_t *) arg =
296 mpctx->demuxer->stream->end_pos - mpctx->demuxer->stream->start_pos;
297 return M_PROPERTY_OK;
299 return M_PROPERTY_NOT_IMPLEMENTED;
302 /// Media length in seconds (RO)
303 static int mp_property_length(m_option_t * prop, int action, void *arg,
304 MPContext * mpctx)
306 double len;
308 if (!mpctx->demuxer ||
309 !(int) (len = demuxer_get_time_length(mpctx->demuxer)))
310 return M_PROPERTY_UNAVAILABLE;
312 return m_property_time_ro(prop, action, arg, len);
315 /// Current position in percent (RW)
316 static int mp_property_percent_pos(m_option_t * prop, int action,
317 void *arg, MPContext * mpctx) {
318 int pos;
320 if (!mpctx->demuxer)
321 return M_PROPERTY_UNAVAILABLE;
323 switch(action) {
324 case M_PROPERTY_SET:
325 if(!arg) return M_PROPERTY_ERROR;
326 M_PROPERTY_CLAMP(prop, *(int*)arg);
327 pos = *(int*)arg;
328 break;
329 case M_PROPERTY_STEP_UP:
330 case M_PROPERTY_STEP_DOWN:
331 pos = demuxer_get_percent_pos(mpctx->demuxer);
332 pos += (arg ? *(int*)arg : 10) *
333 (action == M_PROPERTY_STEP_UP ? 1 : -1);
334 M_PROPERTY_CLAMP(prop, pos);
335 break;
336 default:
337 return m_property_int_ro(prop, action, arg,
338 demuxer_get_percent_pos(mpctx->demuxer));
341 abs_seek_pos = 3;
342 rel_seek_secs = pos / 100.0;
343 return M_PROPERTY_OK;
346 /// Current position in seconds (RW)
347 static int mp_property_time_pos(m_option_t * prop, int action,
348 void *arg, MPContext * mpctx) {
349 if (!(mpctx->sh_video || (mpctx->sh_audio && mpctx->audio_out)))
350 return M_PROPERTY_UNAVAILABLE;
352 switch(action) {
353 case M_PROPERTY_SET:
354 if(!arg) return M_PROPERTY_ERROR;
355 M_PROPERTY_CLAMP(prop, *(double*)arg);
356 abs_seek_pos = 1;
357 rel_seek_secs = *(double*)arg;
358 return M_PROPERTY_OK;
359 case M_PROPERTY_STEP_UP:
360 case M_PROPERTY_STEP_DOWN:
361 rel_seek_secs += (arg ? *(double*)arg : 10.0) *
362 (action == M_PROPERTY_STEP_UP ? 1.0 : -1.0);
363 return M_PROPERTY_OK;
365 return m_property_time_ro(prop, action, arg,
366 mpctx->sh_video ? mpctx->sh_video->pts :
367 playing_audio_pts(mpctx->sh_audio,
368 mpctx->d_audio,
369 mpctx->audio_out));
372 /// Demuxer meta data
373 static int mp_property_metadata(m_option_t * prop, int action, void *arg,
374 MPContext * mpctx) {
375 m_property_action_t* ka;
376 char* meta;
377 static m_option_t key_type =
378 { "metadata", NULL, CONF_TYPE_STRING, 0, 0, 0, NULL };
379 if (!mpctx->demuxer)
380 return M_PROPERTY_UNAVAILABLE;
382 switch(action) {
383 case M_PROPERTY_GET:
384 if(!arg) return M_PROPERTY_ERROR;
385 *(char***)arg = mpctx->demuxer->info;
386 return M_PROPERTY_OK;
387 case M_PROPERTY_KEY_ACTION:
388 if(!arg) return M_PROPERTY_ERROR;
389 ka = arg;
390 if(!(meta = demux_info_get(mpctx->demuxer,ka->key)))
391 return M_PROPERTY_UNKNOWN;
392 switch(ka->action) {
393 case M_PROPERTY_GET:
394 if(!ka->arg) return M_PROPERTY_ERROR;
395 *(char**)ka->arg = meta;
396 return M_PROPERTY_OK;
397 case M_PROPERTY_GET_TYPE:
398 if(!ka->arg) return M_PROPERTY_ERROR;
399 *(m_option_t**)ka->arg = &key_type;
400 return M_PROPERTY_OK;
403 return M_PROPERTY_NOT_IMPLEMENTED;
407 ///@}
409 /// \defgroup AudioProperties Audio properties
410 /// \ingroup Properties
411 ///@{
413 /// Volume (RW)
414 static int mp_property_volume(m_option_t * prop, int action, void *arg,
415 MPContext * mpctx)
418 if (!mpctx->sh_audio)
419 return M_PROPERTY_UNAVAILABLE;
421 switch (action) {
422 case M_PROPERTY_GET:
423 if (!arg)
424 return M_PROPERTY_ERROR;
425 mixer_getbothvolume(&mpctx->mixer, arg);
426 return M_PROPERTY_OK;
427 case M_PROPERTY_PRINT:{
428 float vol;
429 if (!arg)
430 return M_PROPERTY_ERROR;
431 mixer_getbothvolume(&mpctx->mixer, &vol);
432 return m_property_float_range(prop, action, arg, &vol);
434 case M_PROPERTY_STEP_UP:
435 case M_PROPERTY_STEP_DOWN:
436 case M_PROPERTY_SET:
437 break;
438 default:
439 return M_PROPERTY_NOT_IMPLEMENTED;
442 if (mpctx->edl_muted)
443 return M_PROPERTY_DISABLED;
444 mpctx->user_muted = 0;
446 switch (action) {
447 case M_PROPERTY_SET:
448 if (!arg)
449 return M_PROPERTY_ERROR;
450 M_PROPERTY_CLAMP(prop, *(float *) arg);
451 mixer_setvolume(&mpctx->mixer, *(float *) arg, *(float *) arg);
452 return M_PROPERTY_OK;
453 case M_PROPERTY_STEP_UP:
454 if (arg && *(float *) arg <= 0)
455 mixer_decvolume(&mpctx->mixer);
456 else
457 mixer_incvolume(&mpctx->mixer);
458 return M_PROPERTY_OK;
459 case M_PROPERTY_STEP_DOWN:
460 if (arg && *(float *) arg <= 0)
461 mixer_incvolume(&mpctx->mixer);
462 else
463 mixer_decvolume(&mpctx->mixer);
464 return M_PROPERTY_OK;
466 return M_PROPERTY_NOT_IMPLEMENTED;
469 /// Mute (RW)
470 static int mp_property_mute(m_option_t * prop, int action, void *arg,
471 MPContext * mpctx)
474 if (!mpctx->sh_audio)
475 return M_PROPERTY_UNAVAILABLE;
477 switch (action) {
478 case M_PROPERTY_SET:
479 if (mpctx->edl_muted)
480 return M_PROPERTY_DISABLED;
481 if (!arg)
482 return M_PROPERTY_ERROR;
483 if ((!!*(int *) arg) != mpctx->mixer.muted)
484 mixer_mute(&mpctx->mixer);
485 mpctx->user_muted = mpctx->mixer.muted;
486 return M_PROPERTY_OK;
487 case M_PROPERTY_STEP_UP:
488 case M_PROPERTY_STEP_DOWN:
489 if (mpctx->edl_muted)
490 return M_PROPERTY_DISABLED;
491 mixer_mute(&mpctx->mixer);
492 mpctx->user_muted = mpctx->mixer.muted;
493 return M_PROPERTY_OK;
494 case M_PROPERTY_PRINT:
495 if (!arg)
496 return M_PROPERTY_ERROR;
497 if (mpctx->edl_muted) {
498 *(char **) arg = strdup(MSGTR_EnabledEdl);
499 return M_PROPERTY_OK;
501 default:
502 return m_property_flag(prop, action, arg, &mpctx->mixer.muted);
507 /// Audio delay (RW)
508 static int mp_property_audio_delay(m_option_t * prop, int action,
509 void *arg, MPContext * mpctx)
511 if (!(mpctx->sh_audio && mpctx->sh_video))
512 return M_PROPERTY_UNAVAILABLE;
513 switch (action) {
514 case M_PROPERTY_SET:
515 case M_PROPERTY_STEP_UP:
516 case M_PROPERTY_STEP_DOWN:
517 if (!arg)
518 return M_PROPERTY_ERROR;
519 else {
520 float delay = audio_delay;
521 m_property_delay(prop, action, arg, &audio_delay);
522 if (mpctx->sh_audio)
523 mpctx->delay -= audio_delay - delay;
525 return M_PROPERTY_OK;
526 default:
527 return m_property_delay(prop, action, arg, &audio_delay);
531 /// Audio codec tag (RO)
532 static int mp_property_audio_format(m_option_t * prop, int action,
533 void *arg, MPContext * mpctx)
535 if (!mpctx->sh_audio)
536 return M_PROPERTY_UNAVAILABLE;
537 return m_property_int_ro(prop, action, arg, mpctx->sh_audio->format);
540 /// Audio codec name (RO)
541 static int mp_property_audio_codec(m_option_t * prop, int action,
542 void *arg, MPContext * mpctx)
544 if (!mpctx->sh_audio || !mpctx->sh_audio->codec)
545 return M_PROPERTY_UNAVAILABLE;
546 return m_property_string_ro(prop, action, arg, mpctx->sh_audio->codec->name);
549 /// Audio bitrate (RO)
550 static int mp_property_audio_bitrate(m_option_t * prop, int action,
551 void *arg, MPContext * mpctx)
553 if (!mpctx->sh_audio)
554 return M_PROPERTY_UNAVAILABLE;
555 return m_property_bitrate(prop, action, arg, mpctx->sh_audio->i_bps);
558 /// Samplerate (RO)
559 static int mp_property_samplerate(m_option_t * prop, int action, void *arg,
560 MPContext * mpctx)
562 if (!mpctx->sh_audio)
563 return M_PROPERTY_UNAVAILABLE;
564 switch(action) {
565 case M_PROPERTY_PRINT:
566 if(!arg) return M_PROPERTY_ERROR;
567 *(char**)arg = malloc(16);
568 sprintf(*(char**)arg,"%d kHz",mpctx->sh_audio->samplerate/1000);
569 return M_PROPERTY_OK;
571 return m_property_int_ro(prop, action, arg, mpctx->sh_audio->samplerate);
574 /// Number of channels (RO)
575 static int mp_property_channels(m_option_t * prop, int action, void *arg,
576 MPContext * mpctx)
578 if (!mpctx->sh_audio)
579 return M_PROPERTY_UNAVAILABLE;
580 switch (action) {
581 case M_PROPERTY_PRINT:
582 if (!arg)
583 return M_PROPERTY_ERROR;
584 switch (mpctx->sh_audio->channels) {
585 case 1:
586 *(char **) arg = strdup("mono");
587 break;
588 case 2:
589 *(char **) arg = strdup("stereo");
590 break;
591 default:
592 *(char **) arg = malloc(32);
593 sprintf(*(char **) arg, "%d channels", mpctx->sh_audio->channels);
595 return M_PROPERTY_OK;
597 return m_property_int_ro(prop, action, arg, mpctx->sh_audio->channels);
600 /// Balance (RW)
601 static int mp_property_balance(m_option_t * prop, int action, void *arg,
602 MPContext * mpctx)
604 float bal;
606 if (!mpctx->sh_audio || mpctx->sh_audio->channels < 2)
607 return M_PROPERTY_UNAVAILABLE;
609 switch (action) {
610 case M_PROPERTY_GET:
611 if (!arg)
612 return M_PROPERTY_ERROR;
613 mixer_getbalance(&mpctx->mixer, arg);
614 return M_PROPERTY_OK;
615 case M_PROPERTY_PRINT: {
616 char** str = arg;
617 if (!arg)
618 return M_PROPERTY_ERROR;
619 mixer_getbalance(&mpctx->mixer, &bal);
620 if (bal == 0.f)
621 *str = strdup("center");
622 else if (bal == -1.f)
623 *str = strdup("left only");
624 else if (bal == 1.f)
625 *str = strdup("right only");
626 else {
627 unsigned right = (bal + 1.f) / 2.f * 100.f;
628 *str = malloc(sizeof("left xxx%, right xxx%"));
629 sprintf(*str, "left %d%%, right %d%%", 100 - right, right);
631 return M_PROPERTY_OK;
633 case M_PROPERTY_STEP_UP:
634 case M_PROPERTY_STEP_DOWN:
635 mixer_getbalance(&mpctx->mixer, &bal);
636 bal += (arg ? *(float*)arg : .1f) *
637 (action == M_PROPERTY_STEP_UP ? 1.f : -1.f);
638 M_PROPERTY_CLAMP(prop, bal);
639 mixer_setbalance(&mpctx->mixer, bal);
640 return M_PROPERTY_OK;
641 case M_PROPERTY_SET:
642 if (!arg)
643 return M_PROPERTY_ERROR;
644 M_PROPERTY_CLAMP(prop, *(float*)arg);
645 mixer_setbalance(&mpctx->mixer, *(float*)arg);
646 return M_PROPERTY_OK;
648 return M_PROPERTY_NOT_IMPLEMENTED;
651 /// Selected audio id (RW)
652 static int mp_property_audio(m_option_t * prop, int action, void *arg,
653 MPContext * mpctx)
655 int current_id = -1, tmp;
657 switch (action) {
658 case M_PROPERTY_GET:
659 if (!mpctx->sh_audio)
660 return M_PROPERTY_UNAVAILABLE;
661 if (!arg)
662 return M_PROPERTY_ERROR;
663 *(int *) arg = audio_id;
664 return M_PROPERTY_OK;
665 case M_PROPERTY_PRINT:
666 if (!mpctx->sh_audio)
667 return M_PROPERTY_UNAVAILABLE;
668 if (!arg)
669 return M_PROPERTY_ERROR;
671 if (audio_id < 0)
672 *(char **) arg = strdup(MSGTR_Disabled);
673 else {
674 char lang[40] = MSGTR_Unknown;
675 if (mpctx->demuxer->type == DEMUXER_TYPE_MATROSKA)
676 demux_mkv_get_audio_lang(mpctx->demuxer, audio_id, lang, 9);
677 #ifdef USE_DVDREAD
678 else if (mpctx->stream->type == STREAMTYPE_DVD) {
679 int code = dvd_lang_from_aid(mpctx->stream, audio_id);
680 if (code) {
681 lang[0] = code >> 8;
682 lang[1] = code;
683 lang[2] = 0;
686 #endif
688 #ifdef USE_DVDNAV
689 else if (mpctx->stream->type == STREAMTYPE_DVDNAV)
690 dvdnav_lang_from_aid(mpctx->stream, audio_id, lang);
691 #endif
692 *(char **) arg = malloc(64);
693 snprintf(*(char **) arg, 64, "(%d) %s", audio_id, lang);
695 return M_PROPERTY_OK;
697 case M_PROPERTY_STEP_UP:
698 case M_PROPERTY_SET:
699 if (action == M_PROPERTY_SET && arg)
700 tmp = *((int *) arg);
701 else
702 tmp = -1;
703 current_id = mpctx->demuxer->audio->id;
704 audio_id = demuxer_switch_audio(mpctx->demuxer, tmp);
705 if (audio_id == -2
706 || (audio_id > -1
707 && mpctx->demuxer->audio->id != current_id && current_id != -2))
708 uninit_player(INITED_AO | INITED_ACODEC);
709 if (audio_id > -1 && mpctx->demuxer->audio->id != current_id) {
710 sh_audio_t *sh2;
711 sh2 = mpctx->demuxer->a_streams[mpctx->demuxer->audio->id];
712 if (sh2) {
713 sh2->ds = mpctx->demuxer->audio;
714 mpctx->sh_audio = sh2;
715 reinit_audio_chain();
718 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_TRACK=%d\n", audio_id);
719 return M_PROPERTY_OK;
720 default:
721 return M_PROPERTY_NOT_IMPLEMENTED;
726 /// Selected video id (RW)
727 static int mp_property_video(m_option_t * prop, int action, void *arg,
728 MPContext * mpctx)
730 int current_id = -1, tmp;
732 switch (action) {
733 case M_PROPERTY_GET:
734 if (!mpctx->sh_video)
735 return M_PROPERTY_UNAVAILABLE;
736 if (!arg)
737 return M_PROPERTY_ERROR;
738 *(int *) arg = video_id;
739 return M_PROPERTY_OK;
740 case M_PROPERTY_PRINT:
741 if (!mpctx->sh_video)
742 return M_PROPERTY_UNAVAILABLE;
743 if (!arg)
744 return M_PROPERTY_ERROR;
746 if (video_id < 0)
747 *(char **) arg = strdup(MSGTR_Disabled);
748 else {
749 char lang[40] = MSGTR_Unknown;
750 *(char **) arg = malloc(64);
751 snprintf(*(char **) arg, 64, "(%d) %s", video_id, lang);
753 return M_PROPERTY_OK;
755 case M_PROPERTY_STEP_UP:
756 case M_PROPERTY_SET:
757 current_id = mpctx->demuxer->video->id;
758 if (action == M_PROPERTY_SET && arg)
759 tmp = *((int *) arg);
760 else
761 tmp = -1;
762 video_id = demuxer_switch_video(mpctx->demuxer, tmp);
763 if (video_id == -2
764 || (video_id > -1 && mpctx->demuxer->video->id != current_id
765 && current_id != -2))
766 uninit_player(INITED_VCODEC |
767 (fixed_vo && video_id != -2 ? 0 : INITED_VO));
768 if (video_id > -1 && mpctx->demuxer->video->id != current_id) {
769 sh_video_t *sh2;
770 sh2 = mpctx->demuxer->v_streams[mpctx->demuxer->video->id];
771 if (sh2) {
772 sh2->ds = mpctx->demuxer->video;
773 mpctx->sh_video = sh2;
774 reinit_video_chain();
777 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_TRACK=%d\n", video_id);
778 return M_PROPERTY_OK;
780 default:
781 return M_PROPERTY_NOT_IMPLEMENTED;
785 static int mp_property_program(m_option_t * prop, int action, void *arg,
786 MPContext * mpctx)
788 demux_program_t prog;
790 switch (action) {
791 case M_PROPERTY_STEP_UP:
792 case M_PROPERTY_SET:
793 if (action == M_PROPERTY_SET && arg)
794 prog.progid = *((int *) arg);
795 else
796 prog.progid = -1;
797 if (demux_control
798 (mpctx->demuxer, DEMUXER_CTRL_IDENTIFY_PROGRAM,
799 &prog) == DEMUXER_CTRL_NOTIMPL)
800 return M_PROPERTY_ERROR;
802 mp_property_do("switch_audio", M_PROPERTY_SET, &prog.aid, mpctx);
803 mp_property_do("switch_video", M_PROPERTY_SET, &prog.vid, mpctx);
804 return M_PROPERTY_OK;
806 default:
807 return M_PROPERTY_NOT_IMPLEMENTED;
811 ///@}
813 /// \defgroup VideoProperties Video properties
814 /// \ingroup Properties
815 ///@{
817 /// Fullscreen state (RW)
818 static int mp_property_fullscreen(m_option_t * prop, int action, void *arg,
819 MPContext * mpctx)
822 if (!mpctx->video_out)
823 return M_PROPERTY_UNAVAILABLE;
825 switch (action) {
826 case M_PROPERTY_SET:
827 if (!arg)
828 return M_PROPERTY_ERROR;
829 M_PROPERTY_CLAMP(prop, *(int *) arg);
830 if (vo_fs == !!*(int *) arg)
831 return M_PROPERTY_OK;
832 case M_PROPERTY_STEP_UP:
833 case M_PROPERTY_STEP_DOWN:
834 #ifdef HAVE_NEW_GUI
835 if (use_gui)
836 guiGetEvent(guiIEvent, (char *) MP_CMD_GUI_FULLSCREEN);
837 else
838 #endif
839 if (vo_config_count)
840 mpctx->video_out->control(VOCTRL_FULLSCREEN, 0);
841 return M_PROPERTY_OK;
842 default:
843 return m_property_flag(prop, action, arg, &vo_fs);
847 static int mp_property_deinterlace(m_option_t * prop, int action,
848 void *arg, MPContext * mpctx)
850 int deinterlace;
851 vf_instance_t *vf;
852 if (!mpctx->sh_video || !mpctx->sh_video->vfilter)
853 return M_PROPERTY_UNAVAILABLE;
854 vf = mpctx->sh_video->vfilter;
855 switch (action) {
856 case M_PROPERTY_GET:
857 if (!arg)
858 return M_PROPERTY_ERROR;
859 vf->control(vf, VFCTRL_GET_DEINTERLACE, arg);
860 return M_PROPERTY_OK;
861 case M_PROPERTY_SET:
862 if (!arg)
863 return M_PROPERTY_ERROR;
864 M_PROPERTY_CLAMP(prop, *(int *) arg);
865 vf->control(vf, VFCTRL_SET_DEINTERLACE, arg);
866 return M_PROPERTY_OK;
867 case M_PROPERTY_STEP_UP:
868 case M_PROPERTY_STEP_DOWN:
869 vf->control(vf, VFCTRL_GET_DEINTERLACE, &deinterlace);
870 deinterlace = !deinterlace;
871 vf->control(vf, VFCTRL_SET_DEINTERLACE, &deinterlace);
872 return M_PROPERTY_OK;
874 return M_PROPERTY_NOT_IMPLEMENTED;
877 /// Panscan (RW)
878 static int mp_property_panscan(m_option_t * prop, int action, void *arg,
879 MPContext * mpctx)
882 if (!mpctx->video_out
883 || mpctx->video_out->control(VOCTRL_GET_PANSCAN, NULL) != VO_TRUE)
884 return M_PROPERTY_UNAVAILABLE;
886 switch (action) {
887 case M_PROPERTY_SET:
888 if (!arg)
889 return M_PROPERTY_ERROR;
890 M_PROPERTY_CLAMP(prop, *(float *) arg);
891 vo_panscan = *(float *) arg;
892 mpctx->video_out->control(VOCTRL_SET_PANSCAN, NULL);
893 return M_PROPERTY_OK;
894 case M_PROPERTY_STEP_UP:
895 case M_PROPERTY_STEP_DOWN:
896 vo_panscan += (arg ? *(float *) arg : 0.1) *
897 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
898 if (vo_panscan > 1)
899 vo_panscan = 1;
900 else if (vo_panscan < 0)
901 vo_panscan = 0;
902 mpctx->video_out->control(VOCTRL_SET_PANSCAN, NULL);
903 return M_PROPERTY_OK;
904 default:
905 return m_property_float_range(prop, action, arg, &vo_panscan);
909 /// Helper to set vo flags.
910 /** \ingroup PropertyImplHelper
912 static int mp_property_vo_flag(m_option_t * prop, int action, void *arg,
913 int vo_ctrl, int *vo_var, MPContext * mpctx)
916 if (!mpctx->video_out)
917 return M_PROPERTY_UNAVAILABLE;
919 switch (action) {
920 case M_PROPERTY_SET:
921 if (!arg)
922 return M_PROPERTY_ERROR;
923 M_PROPERTY_CLAMP(prop, *(int *) arg);
924 if (*vo_var == !!*(int *) arg)
925 return M_PROPERTY_OK;
926 case M_PROPERTY_STEP_UP:
927 case M_PROPERTY_STEP_DOWN:
928 if (vo_config_count)
929 mpctx->video_out->control(vo_ctrl, 0);
930 return M_PROPERTY_OK;
931 default:
932 return m_property_flag(prop, action, arg, vo_var);
936 /// Window always on top (RW)
937 static int mp_property_ontop(m_option_t * prop, int action, void *arg,
938 MPContext * mpctx)
940 return mp_property_vo_flag(prop, action, arg, VOCTRL_ONTOP, &vo_ontop,
941 mpctx);
944 /// Display in the root window (RW)
945 static int mp_property_rootwin(m_option_t * prop, int action, void *arg,
946 MPContext * mpctx)
948 return mp_property_vo_flag(prop, action, arg, VOCTRL_ROOTWIN,
949 &vo_rootwin, mpctx);
952 /// Show window borders (RW)
953 static int mp_property_border(m_option_t * prop, int action, void *arg,
954 MPContext * mpctx)
956 return mp_property_vo_flag(prop, action, arg, VOCTRL_BORDER,
957 &vo_border, mpctx);
960 /// Framedropping state (RW)
961 static int mp_property_framedropping(m_option_t * prop, int action,
962 void *arg, MPContext * mpctx)
965 if (!mpctx->sh_video)
966 return M_PROPERTY_UNAVAILABLE;
968 switch (action) {
969 case M_PROPERTY_PRINT:
970 if (!arg)
971 return M_PROPERTY_ERROR;
972 *(char **) arg = strdup(frame_dropping == 1 ? MSGTR_Enabled :
973 (frame_dropping == 2 ? MSGTR_HardFrameDrop :
974 MSGTR_Disabled));
975 return M_PROPERTY_OK;
976 default:
977 return m_property_choice(prop, action, arg, &frame_dropping);
981 /// Color settings, try to use vf/vo then fall back on TV. (RW)
982 static int mp_property_gamma(m_option_t * prop, int action, void *arg,
983 MPContext * mpctx)
985 int *gamma = prop->priv, r;
987 if (!mpctx->sh_video)
988 return M_PROPERTY_UNAVAILABLE;
990 if (gamma[0] == 1000) {
991 gamma[0] = 0;
992 get_video_colors(mpctx->sh_video, prop->name, gamma);
995 switch (action) {
996 case M_PROPERTY_SET:
997 if (!arg)
998 return M_PROPERTY_ERROR;
999 M_PROPERTY_CLAMP(prop, *(int *) arg);
1000 *gamma = *(int *) arg;
1001 r = set_video_colors(mpctx->sh_video, prop->name, *gamma);
1002 if (r <= 0)
1003 break;
1004 return r;
1005 case M_PROPERTY_GET:
1006 if (!arg)
1007 return M_PROPERTY_ERROR;
1008 r = get_video_colors(mpctx->sh_video, prop->name, arg);
1009 if (r <= 0)
1010 break;
1011 return r;
1012 case M_PROPERTY_STEP_UP:
1013 case M_PROPERTY_STEP_DOWN:
1014 *gamma += (arg ? *(int *) arg : 1) *
1015 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
1016 M_PROPERTY_CLAMP(prop, *gamma);
1017 r = set_video_colors(mpctx->sh_video, prop->name, *gamma);
1018 if (r <= 0)
1019 break;
1020 return r;
1021 default:
1022 return M_PROPERTY_NOT_IMPLEMENTED;
1025 #ifdef USE_TV
1026 if (mpctx->demuxer->type == DEMUXER_TYPE_TV) {
1027 int l = strlen(prop->name);
1028 char tv_prop[3 + l + 1];
1029 sprintf(tv_prop, "tv_%s", prop->name);
1030 return mp_property_do(tv_prop, action, arg, mpctx);
1032 #endif
1034 return M_PROPERTY_UNAVAILABLE;
1037 /// VSync (RW)
1038 static int mp_property_vsync(m_option_t * prop, int action, void *arg,
1039 MPContext * mpctx)
1041 return m_property_flag(prop, action, arg, &vo_vsync);
1044 /// Video codec tag (RO)
1045 static int mp_property_video_format(m_option_t * prop, int action,
1046 void *arg, MPContext * mpctx)
1048 char* meta;
1049 if (!mpctx->sh_video)
1050 return M_PROPERTY_UNAVAILABLE;
1051 switch(action) {
1052 case M_PROPERTY_PRINT:
1053 if (!arg)
1054 return M_PROPERTY_ERROR;
1055 switch(mpctx->sh_video->format) {
1056 case 0x10000001:
1057 meta = strdup ("mpeg1"); break;
1058 case 0x10000002:
1059 meta = strdup ("mpeg2"); break;
1060 case 0x10000004:
1061 meta = strdup ("mpeg4"); break;
1062 case 0x10000005:
1063 meta = strdup ("h264"); break;
1064 default:
1065 if(mpctx->sh_video->format >= 0x20202020) {
1066 meta = malloc(5);
1067 sprintf (meta, "%.4s", (char *) &mpctx->sh_video->format);
1068 } else {
1069 meta = malloc(20);
1070 sprintf (meta, "0x%08X", mpctx->sh_video->format);
1073 *(char**)arg = meta;
1074 return M_PROPERTY_OK;
1076 return m_property_int_ro(prop, action, arg, mpctx->sh_video->format);
1079 /// Video codec name (RO)
1080 static int mp_property_video_codec(m_option_t * prop, int action,
1081 void *arg, MPContext * mpctx)
1083 if (!mpctx->sh_video || !mpctx->sh_video->codec)
1084 return M_PROPERTY_UNAVAILABLE;
1085 return m_property_string_ro(prop, action, arg, mpctx->sh_video->codec->name);
1089 /// Video bitrate (RO)
1090 static int mp_property_video_bitrate(m_option_t * prop, int action,
1091 void *arg, MPContext * mpctx)
1093 if (!mpctx->sh_video)
1094 return M_PROPERTY_UNAVAILABLE;
1095 return m_property_bitrate(prop, action, arg, mpctx->sh_video->i_bps);
1098 /// Video display width (RO)
1099 static int mp_property_width(m_option_t * prop, int action, void *arg,
1100 MPContext * mpctx)
1102 if (!mpctx->sh_video)
1103 return M_PROPERTY_UNAVAILABLE;
1104 return m_property_int_ro(prop, action, arg, mpctx->sh_video->disp_w);
1107 /// Video display height (RO)
1108 static int mp_property_height(m_option_t * prop, int action, void *arg,
1109 MPContext * mpctx)
1111 if (!mpctx->sh_video)
1112 return M_PROPERTY_UNAVAILABLE;
1113 return m_property_int_ro(prop, action, arg, mpctx->sh_video->disp_h);
1116 /// Video fps (RO)
1117 static int mp_property_fps(m_option_t * prop, int action, void *arg,
1118 MPContext * mpctx)
1120 if (!mpctx->sh_video)
1121 return M_PROPERTY_UNAVAILABLE;
1122 return m_property_float_ro(prop, action, arg, mpctx->sh_video->fps);
1125 /// Video aspect (RO)
1126 static int mp_property_aspect(m_option_t * prop, int action, void *arg,
1127 MPContext * mpctx)
1129 if (!mpctx->sh_video)
1130 return M_PROPERTY_UNAVAILABLE;
1131 return m_property_float_ro(prop, action, arg, mpctx->sh_video->aspect);
1134 ///@}
1136 /// \defgroup SubProprties Subtitles properties
1137 /// \ingroup Properties
1138 ///@{
1140 /// Text subtitle position (RW)
1141 static int mp_property_sub_pos(m_option_t * prop, int action, void *arg,
1142 MPContext * mpctx)
1144 if (!mpctx->sh_video)
1145 return M_PROPERTY_UNAVAILABLE;
1147 switch (action) {
1148 case M_PROPERTY_SET:
1149 if (!arg)
1150 return M_PROPERTY_ERROR;
1151 case M_PROPERTY_STEP_UP:
1152 case M_PROPERTY_STEP_DOWN:
1153 vo_osd_changed(OSDTYPE_SUBTITLE);
1154 default:
1155 return m_property_int_range(prop, action, arg, &sub_pos);
1159 char *demux_lavf_sub_lang(demuxer_t *demuxer, int track_num);
1161 /// Selected subtitles (RW)
1162 static int mp_property_sub(m_option_t * prop, int action, void *arg,
1163 MPContext * mpctx)
1165 demux_stream_t *const d_sub = mpctx->d_sub;
1166 const int global_sub_size = mpctx->global_sub_size;
1167 int source = -1, reset_spu = 0;
1168 char *sub_name;
1170 if (global_sub_size <= 0)
1171 return M_PROPERTY_UNAVAILABLE;
1173 switch (action) {
1174 case M_PROPERTY_GET:
1175 if (!arg)
1176 return M_PROPERTY_ERROR;
1177 *(int *) arg = mpctx->global_sub_pos;
1178 return M_PROPERTY_OK;
1179 case M_PROPERTY_PRINT:
1180 if (!arg)
1181 return M_PROPERTY_ERROR;
1182 *(char **) arg = malloc(64);
1183 (*(char **) arg)[63] = 0;
1184 sub_name = 0;
1185 if (subdata)
1186 sub_name = subdata->filename;
1187 #ifdef USE_ASS
1188 if (ass_track && ass_track->name)
1189 sub_name = ass_track->name;
1190 #endif
1191 if (sub_name) {
1192 char *tmp, *tmp2;
1193 tmp = sub_name;
1194 if ((tmp2 = strrchr(tmp, '/')))
1195 tmp = tmp2 + 1;
1197 snprintf(*(char **) arg, 63, "(%d) %s%s",
1198 mpctx->set_of_sub_pos + 1,
1199 strlen(tmp) < 20 ? "" : "...",
1200 strlen(tmp) < 20 ? tmp : tmp + strlen(tmp) - 19);
1201 return M_PROPERTY_OK;
1203 #ifdef USE_DVDNAV
1204 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
1205 if (vo_spudec && dvdsub_id >= 0) {
1206 unsigned char lang[3];
1207 if (dvdnav_lang_from_sid(mpctx->stream, dvdsub_id, lang)) {
1208 snprintf(*(char **) arg, 63, "(%d) %s", dvdsub_id, lang);
1209 return M_PROPERTY_OK;
1213 #endif
1215 #ifdef USE_LIBAVFORMAT
1216 if (mpctx->demuxer->type == DEMUXER_TYPE_LAVF && dvdsub_id >= 0) {
1217 char *lang = demux_lavf_sub_lang(mpctx->demuxer, dvdsub_id);
1218 snprintf(*(char **) arg, 63, "(%d) %s", dvdsub_id, lang);
1219 return M_PROPERTY_OK;
1221 #endif
1222 if (mpctx->demuxer->type == DEMUXER_TYPE_MATROSKA && dvdsub_id >= 0) {
1223 char lang[40] = MSGTR_Unknown;
1224 demux_mkv_get_sub_lang(mpctx->demuxer, dvdsub_id, lang, 9);
1225 snprintf(*(char **) arg, 63, "(%d) %s", dvdsub_id, lang);
1226 return M_PROPERTY_OK;
1228 #ifdef HAVE_OGGVORBIS
1229 if (mpctx->demuxer->type == DEMUXER_TYPE_OGG && d_sub && dvdsub_id >= 0) {
1230 char *lang = demux_ogg_sub_lang(mpctx->demuxer, dvdsub_id);
1231 if (!lang)
1232 lang = MSGTR_Unknown;
1233 snprintf(*(char **) arg, 63, "(%d) %s", dvdsub_id, lang);
1234 return M_PROPERTY_OK;
1236 #endif
1237 if (vo_vobsub && vobsub_id >= 0) {
1238 const char *language = MSGTR_Unknown;
1239 language = vobsub_get_id(vo_vobsub, (unsigned int) vobsub_id);
1240 snprintf(*(char **) arg, 63, "(%d) %s",
1241 vobsub_id, language ? language : MSGTR_Unknown);
1242 return M_PROPERTY_OK;
1244 #ifdef USE_DVDREAD
1245 if (vo_spudec && mpctx->stream->type == STREAMTYPE_DVD
1246 && dvdsub_id >= 0) {
1247 char lang[3];
1248 int code = dvd_lang_from_sid(mpctx->stream, dvdsub_id);
1249 lang[0] = code >> 8;
1250 lang[1] = code;
1251 lang[2] = 0;
1252 snprintf(*(char **) arg, 63, "(%d) %s", dvdsub_id, lang);
1253 return M_PROPERTY_OK;
1255 #endif
1256 if (dvdsub_id >= 0) {
1257 snprintf(*(char **) arg, 63, "(%d) %s", dvdsub_id, MSGTR_Unknown);
1258 return M_PROPERTY_OK;
1260 snprintf(*(char **) arg, 63, MSGTR_Disabled);
1261 return M_PROPERTY_OK;
1263 case M_PROPERTY_SET:
1264 if (!arg)
1265 return M_PROPERTY_ERROR;
1266 if (*(int *) arg < -1)
1267 *(int *) arg = -1;
1268 else if (*(int *) arg >= global_sub_size)
1269 *(int *) arg = global_sub_size - 1;
1270 mpctx->global_sub_pos = *(int *) arg;
1271 break;
1272 case M_PROPERTY_STEP_UP:
1273 mpctx->global_sub_pos += 2;
1274 mpctx->global_sub_pos =
1275 (mpctx->global_sub_pos % (global_sub_size + 1)) - 1;
1276 break;
1277 case M_PROPERTY_STEP_DOWN:
1278 mpctx->global_sub_pos += global_sub_size + 1;
1279 mpctx->global_sub_pos =
1280 (mpctx->global_sub_pos % (global_sub_size + 1)) - 1;
1281 break;
1282 default:
1283 return M_PROPERTY_NOT_IMPLEMENTED;
1286 if (mpctx->global_sub_pos >= 0)
1287 source = sub_source(mpctx);
1289 mp_msg(MSGT_CPLAYER, MSGL_DBG3,
1290 "subtitles: %d subs, (v@%d s@%d d@%d), @%d, source @%d\n",
1291 global_sub_size,
1292 mpctx->global_sub_indices[SUB_SOURCE_VOBSUB],
1293 mpctx->global_sub_indices[SUB_SOURCE_SUBS],
1294 mpctx->global_sub_indices[SUB_SOURCE_DEMUX],
1295 mpctx->global_sub_pos, source);
1297 mpctx->set_of_sub_pos = -1;
1298 subdata = NULL;
1300 vobsub_id = -1;
1301 dvdsub_id = -1;
1302 if (d_sub) {
1303 if (d_sub->id > -2)
1304 reset_spu = 1;
1305 d_sub->id = -2;
1307 #ifdef USE_ASS
1308 ass_track = 0;
1309 #endif
1311 if (source == SUB_SOURCE_VOBSUB) {
1312 vobsub_id =
1313 mpctx->global_sub_pos -
1314 mpctx->global_sub_indices[SUB_SOURCE_VOBSUB];
1315 } else if (source == SUB_SOURCE_SUBS) {
1316 mpctx->set_of_sub_pos =
1317 mpctx->global_sub_pos - mpctx->global_sub_indices[SUB_SOURCE_SUBS];
1318 #ifdef USE_ASS
1319 if (ass_enabled && mpctx->set_of_ass_tracks[mpctx->set_of_sub_pos])
1320 ass_track = mpctx->set_of_ass_tracks[mpctx->set_of_sub_pos];
1321 else
1322 #endif
1324 subdata = mpctx->set_of_subtitles[mpctx->set_of_sub_pos];
1325 vo_osd_changed(OSDTYPE_SUBTITLE);
1327 } else if (source == SUB_SOURCE_DEMUX) {
1328 dvdsub_id =
1329 mpctx->global_sub_pos - mpctx->global_sub_indices[SUB_SOURCE_DEMUX];
1330 if (d_sub && dvdsub_id < MAX_S_STREAMS) {
1331 int i = 0;
1332 // default: assume 1:1 mapping of sid and stream id
1333 d_sub->id = dvdsub_id;
1334 d_sub->sh = mpctx->demuxer->s_streams[d_sub->id];
1335 for (i = 0; i < MAX_S_STREAMS; i++) {
1336 sh_sub_t *sh = mpctx->demuxer->s_streams[i];
1337 if (sh && sh->sid == dvdsub_id) {
1338 d_sub->id = i;
1339 d_sub->sh = sh;
1340 break;
1343 if (d_sub->sh && d_sub->id >= 0) {
1344 sh_sub_t *sh = d_sub->sh;
1345 if (sh->type == 'v')
1346 init_vo_spudec();
1347 #ifdef USE_ASS
1348 else if (ass_enabled && sh->type == 'a')
1349 ass_track = sh->ass_track;
1350 #endif
1351 } else {
1352 d_sub->id = -2;
1353 d_sub->sh = NULL;
1357 #ifdef USE_DVDREAD
1358 if (vo_spudec
1359 && (mpctx->stream->type == STREAMTYPE_DVD
1360 || mpctx->stream->type == STREAMTYPE_DVDNAV)
1361 && dvdsub_id < 0 && reset_spu) {
1362 dvdsub_id = -2;
1363 d_sub->id = dvdsub_id;
1365 #endif
1366 update_subtitles(mpctx->sh_video, d_sub, 1);
1368 return M_PROPERTY_OK;
1371 /// Selected sub source (RW)
1372 static int mp_property_sub_source(m_option_t * prop, int action, void *arg,
1373 MPContext * mpctx)
1375 int source;
1376 if (!mpctx->sh_video || mpctx->global_sub_size <= 0)
1377 return M_PROPERTY_UNAVAILABLE;
1379 switch (action) {
1380 case M_PROPERTY_GET:
1381 if (!arg)
1382 return M_PROPERTY_ERROR;
1383 *(int *) arg = sub_source(mpctx);
1384 return M_PROPERTY_OK;
1385 case M_PROPERTY_PRINT:
1386 if (!arg)
1387 return M_PROPERTY_ERROR;
1388 *(char **) arg = malloc(64);
1389 (*(char **) arg)[63] = 0;
1390 switch (sub_source(mpctx))
1392 case SUB_SOURCE_SUBS:
1393 snprintf(*(char **) arg, 63, MSGTR_SubSourceFile);
1394 break;
1395 case SUB_SOURCE_VOBSUB:
1396 snprintf(*(char **) arg, 63, MSGTR_SubSourceVobsub);
1397 break;
1398 case SUB_SOURCE_DEMUX:
1399 snprintf(*(char **) arg, 63, MSGTR_SubSourceDemux);
1400 break;
1401 default:
1402 snprintf(*(char **) arg, 63, MSGTR_Disabled);
1404 return M_PROPERTY_OK;
1405 case M_PROPERTY_SET:
1406 if (!arg)
1407 return M_PROPERTY_ERROR;
1408 M_PROPERTY_CLAMP(prop, *(int*)arg);
1409 if (*(int *) arg < 0)
1410 mpctx->global_sub_pos = -1;
1411 else if (*(int *) arg != sub_source(mpctx)) {
1412 if (*(int *) arg != sub_source_by_pos(mpctx, mpctx->global_sub_indices[*(int *) arg]))
1413 return M_PROPERTY_UNAVAILABLE;
1414 mpctx->global_sub_pos = mpctx->global_sub_indices[*(int *) arg];
1416 break;
1417 case M_PROPERTY_STEP_UP:
1418 case M_PROPERTY_STEP_DOWN: {
1419 int step_all = (arg && *(int*)arg != 0 ? *(int*)arg : 1)
1420 * (action == M_PROPERTY_STEP_UP ? 1 : -1);
1421 int step = (step_all > 0) ? 1 : -1;
1422 int cur_source = sub_source(mpctx);
1423 source = cur_source;
1424 while (step_all) {
1425 source += step;
1426 if (source >= SUB_SOURCES)
1427 source = -1;
1428 else if (source < -1)
1429 source = SUB_SOURCES - 1;
1430 if (source == cur_source || source == -1 ||
1431 source == sub_source_by_pos(mpctx, mpctx->global_sub_indices[source]))
1432 step_all -= step;
1434 if (source == cur_source)
1435 return M_PROPERTY_OK;
1436 if (source == -1)
1437 mpctx->global_sub_pos = -1;
1438 else
1439 mpctx->global_sub_pos = mpctx->global_sub_indices[source];
1440 break;
1442 default:
1443 return M_PROPERTY_NOT_IMPLEMENTED;
1445 --mpctx->global_sub_pos;
1446 return mp_property_sub(prop, M_PROPERTY_STEP_UP, NULL, mpctx);
1449 /// Selected subtitles from specific source (RW)
1450 static int mp_property_sub_by_type(m_option_t * prop, int action, void *arg,
1451 MPContext * mpctx)
1453 int source, is_cur_source, offset;
1454 if (!mpctx->sh_video || mpctx->global_sub_size <= 0)
1455 return M_PROPERTY_UNAVAILABLE;
1457 if (!strcmp(prop->name, "sub_file"))
1458 source = SUB_SOURCE_SUBS;
1459 else if (!strcmp(prop->name, "sub_vob"))
1460 source = SUB_SOURCE_VOBSUB;
1461 else if (!strcmp(prop->name, "sub_demux"))
1462 source = SUB_SOURCE_DEMUX;
1463 else
1464 return M_PROPERTY_ERROR;
1466 offset = mpctx->global_sub_indices[source];
1467 if (offset < 0 || source != sub_source_by_pos(mpctx, offset))
1468 return M_PROPERTY_UNAVAILABLE;
1470 is_cur_source = sub_source(mpctx) == source;
1471 switch (action) {
1472 case M_PROPERTY_GET:
1473 if (!arg)
1474 return M_PROPERTY_ERROR;
1475 *(int *) arg = (is_cur_source) ? mpctx->global_sub_pos - offset : -1;
1476 return M_PROPERTY_OK;
1477 case M_PROPERTY_PRINT:
1478 if (!arg)
1479 return M_PROPERTY_ERROR;
1480 if (is_cur_source)
1481 return mp_property_sub(prop, M_PROPERTY_PRINT, arg, mpctx);
1482 *(char **) arg = malloc(64);
1483 (*(char **) arg)[63] = 0;
1484 snprintf(*(char **) arg, 63, MSGTR_Disabled);
1485 return M_PROPERTY_OK;
1486 case M_PROPERTY_SET:
1487 if (!arg)
1488 return M_PROPERTY_ERROR;
1489 if (*(int *) arg >= 0) {
1490 mpctx->global_sub_pos = offset + *(int *) arg;
1491 if (mpctx->global_sub_pos >= mpctx->global_sub_size
1492 || sub_source(mpctx) != source) {
1493 mpctx->global_sub_pos = -1;
1494 *(int *) arg = -1;
1497 else
1498 mpctx->global_sub_pos = -1;
1499 break;
1500 case M_PROPERTY_STEP_UP:
1501 case M_PROPERTY_STEP_DOWN: {
1502 int step_all = (arg && *(int*)arg != 0 ? *(int*)arg : 1)
1503 * (action == M_PROPERTY_STEP_UP ? 1 : -1);
1504 int step = (step_all > 0) ? 1 : -1;
1505 int max_sub_pos_for_source = -1;
1506 if (!is_cur_source)
1507 mpctx->global_sub_pos = -1;
1508 while (step_all) {
1509 if (mpctx->global_sub_pos == -1) {
1510 if (step > 0)
1511 mpctx->global_sub_pos = offset;
1512 else if (max_sub_pos_for_source == -1) {
1513 // Find max pos for specific source
1514 mpctx->global_sub_pos = mpctx->global_sub_size - 1;
1515 while (mpctx->global_sub_pos >= 0
1516 && sub_source(mpctx) != source)
1517 --mpctx->global_sub_pos;
1519 else
1520 mpctx->global_sub_pos = max_sub_pos_for_source;
1522 else {
1523 mpctx->global_sub_pos += step;
1524 if (mpctx->global_sub_pos < offset ||
1525 mpctx->global_sub_pos >= mpctx->global_sub_size ||
1526 sub_source(mpctx) != source)
1527 mpctx->global_sub_pos = -1;
1529 step_all -= step;
1531 break;
1533 default:
1534 return M_PROPERTY_NOT_IMPLEMENTED;
1536 --mpctx->global_sub_pos;
1537 return mp_property_sub(prop, M_PROPERTY_STEP_UP, NULL, mpctx);
1540 /// Subtitle delay (RW)
1541 static int mp_property_sub_delay(m_option_t * prop, int action, void *arg,
1542 MPContext * mpctx)
1544 if (!mpctx->sh_video)
1545 return M_PROPERTY_UNAVAILABLE;
1546 return m_property_delay(prop, action, arg, &sub_delay);
1549 /// Alignment of text subtitles (RW)
1550 static int mp_property_sub_alignment(m_option_t * prop, int action,
1551 void *arg, MPContext * mpctx)
1553 char *name[] = { MSGTR_Top, MSGTR_Center, MSGTR_Bottom };
1555 if (!mpctx->sh_video || mpctx->global_sub_pos < 0
1556 || sub_source(mpctx) != SUB_SOURCE_SUBS)
1557 return M_PROPERTY_UNAVAILABLE;
1559 switch (action) {
1560 case M_PROPERTY_PRINT:
1561 if (!arg)
1562 return M_PROPERTY_ERROR;
1563 M_PROPERTY_CLAMP(prop, sub_alignment);
1564 *(char **) arg = strdup(name[sub_alignment]);
1565 return M_PROPERTY_OK;
1566 case M_PROPERTY_SET:
1567 if (!arg)
1568 return M_PROPERTY_ERROR;
1569 case M_PROPERTY_STEP_UP:
1570 case M_PROPERTY_STEP_DOWN:
1571 vo_osd_changed(OSDTYPE_SUBTITLE);
1572 default:
1573 return m_property_choice(prop, action, arg, &sub_alignment);
1577 /// Subtitle visibility (RW)
1578 static int mp_property_sub_visibility(m_option_t * prop, int action,
1579 void *arg, MPContext * mpctx)
1581 if (!mpctx->sh_video)
1582 return M_PROPERTY_UNAVAILABLE;
1584 switch (action) {
1585 case M_PROPERTY_SET:
1586 if (!arg)
1587 return M_PROPERTY_ERROR;
1588 case M_PROPERTY_STEP_UP:
1589 case M_PROPERTY_STEP_DOWN:
1590 vo_osd_changed(OSDTYPE_SUBTITLE);
1591 if (vo_spudec)
1592 vo_osd_changed(OSDTYPE_SPU);
1593 default:
1594 return m_property_flag(prop, action, arg, &sub_visibility);
1598 /// Show only forced subtitles (RW)
1599 static int mp_property_sub_forced_only(m_option_t * prop, int action,
1600 void *arg, MPContext * mpctx)
1602 if (!vo_spudec)
1603 return M_PROPERTY_UNAVAILABLE;
1605 switch (action) {
1606 case M_PROPERTY_SET:
1607 if (!arg)
1608 return M_PROPERTY_ERROR;
1609 case M_PROPERTY_STEP_UP:
1610 case M_PROPERTY_STEP_DOWN:
1611 m_property_flag(prop, action, arg, &forced_subs_only);
1612 spudec_set_forced_subs_only(vo_spudec, forced_subs_only);
1613 return M_PROPERTY_OK;
1614 default:
1615 return m_property_flag(prop, action, arg, &forced_subs_only);
1620 #ifdef HAVE_FREETYPE
1621 /// Subtitle scale (RW)
1622 static int mp_property_sub_scale(m_option_t * prop, int action, void *arg,
1623 MPContext * mpctx)
1626 switch (action) {
1627 case M_PROPERTY_SET:
1628 if (!arg)
1629 return M_PROPERTY_ERROR;
1630 M_PROPERTY_CLAMP(prop, *(float *) arg);
1631 text_font_scale_factor = *(float *) arg;
1632 force_load_font = 1;
1633 return M_PROPERTY_OK;
1634 case M_PROPERTY_STEP_UP:
1635 case M_PROPERTY_STEP_DOWN:
1636 text_font_scale_factor += (arg ? *(float *) arg : 0.1)*
1637 (action == M_PROPERTY_STEP_UP ? 1.0 : -1.0);
1638 M_PROPERTY_CLAMP(prop, text_font_scale_factor);
1639 force_load_font = 1;
1640 return M_PROPERTY_OK;
1641 default:
1642 return m_property_float_ro(prop, action, arg, text_font_scale_factor);
1645 #endif
1647 ///@}
1649 /// \defgroup TVProperties TV properties
1650 /// \ingroup Properties
1651 ///@{
1653 #ifdef USE_TV
1655 /// TV color settings (RW)
1656 static int mp_property_tv_color(m_option_t * prop, int action, void *arg,
1657 MPContext * mpctx)
1659 int r, val;
1660 tvi_handle_t *tvh = mpctx->demuxer->priv;
1661 if (mpctx->demuxer->type != DEMUXER_TYPE_TV || !tvh)
1662 return M_PROPERTY_UNAVAILABLE;
1664 switch (action) {
1665 case M_PROPERTY_SET:
1666 if (!arg)
1667 return M_PROPERTY_ERROR;
1668 M_PROPERTY_CLAMP(prop, *(int *) arg);
1669 return tv_set_color_options(tvh, (int) prop->priv, *(int *) arg);
1670 case M_PROPERTY_GET:
1671 return tv_get_color_options(tvh, (int) prop->priv, arg);
1672 case M_PROPERTY_STEP_UP:
1673 case M_PROPERTY_STEP_DOWN:
1674 if ((r = tv_get_color_options(tvh, (int) prop->priv, &val)) >= 0) {
1675 if (!r)
1676 return M_PROPERTY_ERROR;
1677 val += (arg ? *(int *) arg : 1) *
1678 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
1679 M_PROPERTY_CLAMP(prop, val);
1680 return tv_set_color_options(tvh, (int) prop->priv, val);
1682 return M_PROPERTY_ERROR;
1684 return M_PROPERTY_NOT_IMPLEMENTED;
1687 #endif
1689 #ifdef HAVE_TV_TELETEXT
1690 static int mp_property_teletext_common(m_option_t * prop, int action, void *arg,
1691 MPContext * mpctx)
1693 int val,result;
1694 int base_ioctl=(int)prop->priv;
1696 for teletext's GET,SET,STEP ioctls this is not 0
1697 SET is GET+1
1698 STEP is GET+2
1700 tvi_handle_t *tvh = mpctx->demuxer->priv;
1701 if (mpctx->demuxer->type != DEMUXER_TYPE_TV || !tvh)
1702 return M_PROPERTY_UNAVAILABLE;
1703 if(!base_ioctl)
1704 return M_PROPERTY_ERROR;
1706 switch (action) {
1707 case M_PROPERTY_GET:
1708 if (!arg)
1709 return M_PROPERTY_ERROR;
1710 result=tvh->functions->control(tvh->priv, base_ioctl, arg);
1711 break;
1712 case M_PROPERTY_SET:
1713 if (!arg)
1714 return M_PROPERTY_ERROR;
1715 M_PROPERTY_CLAMP(prop, *(int *) arg);
1716 result=tvh->functions->control(tvh->priv, base_ioctl+1, arg);
1717 break;
1718 case M_PROPERTY_STEP_UP:
1719 case M_PROPERTY_STEP_DOWN:
1720 result=tvh->functions->control(tvh->priv, base_ioctl, &val);
1721 val += (arg ? *(int *) arg : 1) * (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
1722 result=tvh->functions->control(tvh->priv, base_ioctl+1, &val);
1723 break;
1724 default:
1725 return M_PROPERTY_NOT_IMPLEMENTED;
1728 return (result==TVI_CONTROL_TRUE?M_PROPERTY_OK:M_PROPERTY_ERROR);
1731 static int mp_property_teletext_mode(m_option_t * prop, int action, void *arg,
1732 MPContext * mpctx)
1734 tvi_handle_t *tvh = mpctx->demuxer->priv;
1735 int result;
1736 int val;
1738 //with tvh==NULL will fail too
1739 result=mp_property_teletext_common(prop,action,arg,mpctx);
1740 if(result!=M_PROPERTY_OK)
1741 return result;
1743 if(tvh->functions->control(tvh->priv, prop->priv, &val)==TVI_CONTROL_TRUE && val)
1744 mp_input_set_section("teletext");
1745 else
1746 mp_input_set_section("tv");
1747 return M_PROPERTY_OK;
1750 static int mp_property_teletext_page(m_option_t * prop, int action, void *arg,
1751 MPContext * mpctx)
1753 tvi_handle_t *tvh = mpctx->demuxer->priv;
1754 int result;
1755 int val;
1756 switch(action){
1757 case M_PROPERTY_STEP_UP:
1758 case M_PROPERTY_STEP_DOWN:
1759 //This should be handled separately
1760 val = (arg ? *(int *) arg : 1) * (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
1761 result=tvh->functions->control(tvh->priv, TV_VBI_CONTROL_STEP_PAGE, &val);
1762 break;
1763 default:
1764 result=mp_property_teletext_common(prop,action,arg,mpctx);
1766 return result;
1770 #endif /* HAVE_TV_TELETEXT */
1772 ///@}
1774 /// All properties available in MPlayer.
1775 /** \ingroup Properties
1777 static m_option_t mp_properties[] = {
1778 // General
1779 { "osdlevel", mp_property_osdlevel, CONF_TYPE_INT,
1780 M_OPT_RANGE, 0, 3, NULL },
1781 { "loop", mp_property_loop, CONF_TYPE_INT,
1782 M_OPT_MIN, -1, 0, NULL },
1783 { "speed", mp_property_playback_speed, CONF_TYPE_FLOAT,
1784 M_OPT_RANGE, 0.01, 100.0, NULL },
1785 { "filename", mp_property_filename, CONF_TYPE_STRING,
1786 0, 0, 0, NULL },
1787 { "path", mp_property_path, CONF_TYPE_STRING,
1788 0, 0, 0, NULL },
1789 { "demuxer", mp_property_demuxer, CONF_TYPE_STRING,
1790 0, 0, 0, NULL },
1791 { "stream_pos", mp_property_stream_pos, CONF_TYPE_POSITION,
1792 M_OPT_MIN, 0, 0, NULL },
1793 { "stream_start", mp_property_stream_start, CONF_TYPE_POSITION,
1794 M_OPT_MIN, 0, 0, NULL },
1795 { "stream_end", mp_property_stream_end, CONF_TYPE_POSITION,
1796 M_OPT_MIN, 0, 0, NULL },
1797 { "stream_length", mp_property_stream_length, CONF_TYPE_POSITION,
1798 M_OPT_MIN, 0, 0, NULL },
1799 { "length", mp_property_length, CONF_TYPE_TIME,
1800 M_OPT_MIN, 0, 0, NULL },
1801 { "percent_pos", mp_property_percent_pos, CONF_TYPE_INT,
1802 M_OPT_RANGE, 0, 100, NULL },
1803 { "time_pos", mp_property_time_pos, CONF_TYPE_TIME,
1804 M_OPT_MIN, 0, 0, NULL },
1805 { "metadata", mp_property_metadata, CONF_TYPE_STRING_LIST,
1806 0, 0, 0, NULL },
1808 // Audio
1809 { "volume", mp_property_volume, CONF_TYPE_FLOAT,
1810 M_OPT_RANGE, 0, 100, NULL },
1811 { "mute", mp_property_mute, CONF_TYPE_FLAG,
1812 M_OPT_RANGE, 0, 1, NULL },
1813 { "audio_delay", mp_property_audio_delay, CONF_TYPE_FLOAT,
1814 M_OPT_RANGE, -100, 100, NULL },
1815 { "audio_format", mp_property_audio_format, CONF_TYPE_INT,
1816 0, 0, 0, NULL },
1817 { "audio_codec", mp_property_audio_codec, CONF_TYPE_STRING,
1818 0, 0, 0, NULL },
1819 { "audio_bitrate", mp_property_audio_bitrate, CONF_TYPE_INT,
1820 0, 0, 0, NULL },
1821 { "samplerate", mp_property_samplerate, CONF_TYPE_INT,
1822 0, 0, 0, NULL },
1823 { "channels", mp_property_channels, CONF_TYPE_INT,
1824 0, 0, 0, NULL },
1825 { "switch_audio", mp_property_audio, CONF_TYPE_INT,
1826 CONF_RANGE, -2, MAX_A_STREAMS - 1, NULL },
1827 { "balance", mp_property_balance, CONF_TYPE_FLOAT,
1828 M_OPT_RANGE, -1, 1, NULL },
1830 // Video
1831 { "fullscreen", mp_property_fullscreen, CONF_TYPE_FLAG,
1832 M_OPT_RANGE, 0, 1, NULL },
1833 { "deinterlace", mp_property_deinterlace, CONF_TYPE_FLAG,
1834 M_OPT_RANGE, 0, 1, NULL },
1835 { "ontop", mp_property_ontop, CONF_TYPE_FLAG,
1836 M_OPT_RANGE, 0, 1, NULL },
1837 { "rootwin", mp_property_rootwin, CONF_TYPE_FLAG,
1838 M_OPT_RANGE, 0, 1, NULL },
1839 { "border", mp_property_border, CONF_TYPE_FLAG,
1840 M_OPT_RANGE, 0, 1, NULL },
1841 { "framedropping", mp_property_framedropping, CONF_TYPE_INT,
1842 M_OPT_RANGE, 0, 2, NULL },
1843 { "gamma", mp_property_gamma, CONF_TYPE_INT,
1844 M_OPT_RANGE, -100, 100, &vo_gamma_gamma },
1845 { "brightness", mp_property_gamma, CONF_TYPE_INT,
1846 M_OPT_RANGE, -100, 100, &vo_gamma_brightness },
1847 { "contrast", mp_property_gamma, CONF_TYPE_INT,
1848 M_OPT_RANGE, -100, 100, &vo_gamma_contrast },
1849 { "saturation", mp_property_gamma, CONF_TYPE_INT,
1850 M_OPT_RANGE, -100, 100, &vo_gamma_saturation },
1851 { "hue", mp_property_gamma, CONF_TYPE_INT,
1852 M_OPT_RANGE, -100, 100, &vo_gamma_hue },
1853 { "panscan", mp_property_panscan, CONF_TYPE_FLOAT,
1854 M_OPT_RANGE, 0, 1, NULL },
1855 { "vsync", mp_property_vsync, CONF_TYPE_FLAG,
1856 M_OPT_RANGE, 0, 1, NULL },
1857 { "video_format", mp_property_video_format, CONF_TYPE_INT,
1858 0, 0, 0, NULL },
1859 { "video_codec", mp_property_video_codec, CONF_TYPE_STRING,
1860 0, 0, 0, NULL },
1861 { "video_bitrate", mp_property_video_bitrate, CONF_TYPE_INT,
1862 0, 0, 0, NULL },
1863 { "width", mp_property_width, CONF_TYPE_INT,
1864 0, 0, 0, NULL },
1865 { "height", mp_property_height, CONF_TYPE_INT,
1866 0, 0, 0, NULL },
1867 { "fps", mp_property_fps, CONF_TYPE_FLOAT,
1868 0, 0, 0, NULL },
1869 { "aspect", mp_property_aspect, CONF_TYPE_FLOAT,
1870 0, 0, 0, NULL },
1871 { "switch_video", mp_property_video, CONF_TYPE_INT,
1872 CONF_RANGE, -2, MAX_V_STREAMS - 1, NULL },
1873 { "switch_program", mp_property_program, CONF_TYPE_INT,
1874 CONF_RANGE, -1, 65535, NULL },
1876 // Subs
1877 { "sub", mp_property_sub, CONF_TYPE_INT,
1878 M_OPT_MIN, -1, 0, NULL },
1879 { "sub_source", mp_property_sub_source, CONF_TYPE_INT,
1880 M_OPT_RANGE, -1, SUB_SOURCES - 1, NULL },
1881 { "sub_vob", mp_property_sub_by_type, CONF_TYPE_INT,
1882 M_OPT_MIN, -1, 0, NULL },
1883 { "sub_demux", mp_property_sub_by_type, CONF_TYPE_INT,
1884 M_OPT_MIN, -1, 0, NULL },
1885 { "sub_file", mp_property_sub_by_type, CONF_TYPE_INT,
1886 M_OPT_MIN, -1, 0, NULL },
1887 { "sub_delay", mp_property_sub_delay, CONF_TYPE_FLOAT,
1888 0, 0, 0, NULL },
1889 { "sub_pos", mp_property_sub_pos, CONF_TYPE_INT,
1890 M_OPT_RANGE, 0, 100, NULL },
1891 { "sub_alignment", mp_property_sub_alignment, CONF_TYPE_INT,
1892 M_OPT_RANGE, 0, 2, NULL },
1893 { "sub_visibility", mp_property_sub_visibility, CONF_TYPE_FLAG,
1894 M_OPT_RANGE, 0, 1, NULL },
1895 { "sub_forced_only", mp_property_sub_forced_only, CONF_TYPE_FLAG,
1896 M_OPT_RANGE, 0, 1, NULL },
1897 #ifdef HAVE_FREETYPE
1898 { "sub_scale", mp_property_sub_scale, CONF_TYPE_FLOAT,
1899 M_OPT_RANGE, 0, 100, NULL },
1900 #endif
1902 #ifdef USE_TV
1903 { "tv_brightness", mp_property_tv_color, CONF_TYPE_INT,
1904 M_OPT_RANGE, -100, 100, (void *) TV_COLOR_BRIGHTNESS },
1905 { "tv_contrast", mp_property_tv_color, CONF_TYPE_INT,
1906 M_OPT_RANGE, -100, 100, (void *) TV_COLOR_CONTRAST },
1907 { "tv_saturation", mp_property_tv_color, CONF_TYPE_INT,
1908 M_OPT_RANGE, -100, 100, (void *) TV_COLOR_SATURATION },
1909 { "tv_hue", mp_property_tv_color, CONF_TYPE_INT,
1910 M_OPT_RANGE, -100, 100, (void *) TV_COLOR_HUE },
1911 #endif
1913 #ifdef HAVE_TV_TELETEXT
1914 { "teletext_page", mp_property_teletext_page, CONF_TYPE_INT,
1915 M_OPT_RANGE, 100, 899, (void*)TV_VBI_CONTROL_GET_PAGE },
1916 { "teletext_subpage", mp_property_teletext_common, CONF_TYPE_INT,
1917 M_OPT_RANGE, 0, 64, (void*)TV_VBI_CONTROL_GET_SUBPAGE },
1918 { "teletext_mode", mp_property_teletext_mode, CONF_TYPE_FLAG,
1919 M_OPT_RANGE, 0, 1, (void*)TV_VBI_CONTROL_GET_MODE },
1920 { "teletext_format", mp_property_teletext_common, CONF_TYPE_INT,
1921 M_OPT_RANGE, 0, 3, (void*)TV_VBI_CONTROL_GET_FORMAT },
1922 { "teletext_half_page", mp_property_teletext_common, CONF_TYPE_INT,
1923 M_OPT_RANGE, 0, 2, (void*)TV_VBI_CONTROL_GET_HALF_PAGE },
1924 #endif
1926 { NULL, NULL, NULL, 0, 0, 0, NULL }
1930 int mp_property_do(const char *name, int action, void *val, void *ctx)
1932 return m_property_do(mp_properties, name, action, val, ctx);
1935 char* mp_property_print(const char *name, void* ctx)
1937 char* ret = NULL;
1938 if(mp_property_do(name,M_PROPERTY_PRINT,&ret,ctx) <= 0)
1939 return NULL;
1940 return ret;
1943 char *property_expand_string(MPContext * mpctx, char *str)
1945 return m_properties_expand_string(mp_properties, str, mpctx);
1948 void property_print_help(void)
1950 m_properties_print_help_list(mp_properties);
1954 ///@}
1955 // Properties group
1959 * \defgroup Command2Property Command to property bridge
1961 * It is used to handle most commands that just set a property
1962 * and optionally display something on the OSD.
1963 * Two kinds of commands are handled: adjust or toggle.
1965 * Adjust commands take 1 or 2 parameters: <value> <abs>
1966 * If <abs> is non-zero the property is set to the given value
1967 * otherwise it is adjusted.
1969 * Toggle commands take 0 or 1 parameters. With no parameter
1970 * or a value less than the property minimum it just steps the
1971 * property to its next value. Otherwise it sets it to the given
1972 * value.
1977 /// List of the commands that can be handled by setting a property.
1978 static struct {
1979 /// property name
1980 const char *name;
1981 /// cmd id
1982 int cmd;
1983 /// set/adjust or toggle command
1984 int toggle;
1985 /// progressbar type
1986 int osd_progbar;
1987 /// osd msg id if it must be shared
1988 int osd_id;
1989 /// osd msg template
1990 const char *osd_msg;
1991 } set_prop_cmd[] = {
1992 // general
1993 { "loop", MP_CMD_LOOP, 0, 0, -1, MSGTR_LoopStatus },
1994 // audio
1995 { "volume", MP_CMD_VOLUME, 0, OSD_VOLUME, -1, MSGTR_Volume },
1996 { "mute", MP_CMD_MUTE, 1, 0, -1, MSGTR_MuteStatus },
1997 { "audio_delay", MP_CMD_AUDIO_DELAY, 0, 0, -1, MSGTR_AVDelayStatus },
1998 { "switch_audio", MP_CMD_SWITCH_AUDIO, 1, 0, -1, MSGTR_OSDAudio },
1999 { "balance", MP_CMD_BALANCE, 0, OSD_BALANCE, -1, MSGTR_Balance },
2000 // video
2001 { "fullscreen", MP_CMD_VO_FULLSCREEN, 1, 0, -1, NULL },
2002 { "panscan", MP_CMD_PANSCAN, 0, OSD_PANSCAN, -1, MSGTR_Panscan },
2003 { "ontop", MP_CMD_VO_ONTOP, 1, 0, -1, MSGTR_OnTopStatus },
2004 { "rootwin", MP_CMD_VO_ROOTWIN, 1, 0, -1, MSGTR_RootwinStatus },
2005 { "border", MP_CMD_VO_BORDER, 1, 0, -1, MSGTR_BorderStatus },
2006 { "framedropping", MP_CMD_FRAMEDROPPING, 1, 0, -1, MSGTR_FramedroppingStatus },
2007 { "gamma", MP_CMD_GAMMA, 0, OSD_BRIGHTNESS, -1, MSGTR_Gamma },
2008 { "brightness", MP_CMD_BRIGHTNESS, 0, OSD_BRIGHTNESS, -1, MSGTR_Brightness },
2009 { "contrast", MP_CMD_CONTRAST, 0, OSD_CONTRAST, -1, MSGTR_Contrast },
2010 { "saturation", MP_CMD_SATURATION, 0, OSD_SATURATION, -1, MSGTR_Saturation },
2011 { "hue", MP_CMD_HUE, 0, OSD_HUE, -1, MSGTR_Hue },
2012 { "vsync", MP_CMD_SWITCH_VSYNC, 1, 0, -1, MSGTR_VSyncStatus },
2013 // subs
2014 { "sub", MP_CMD_SUB_SELECT, 1, 0, -1, MSGTR_SubSelectStatus },
2015 { "sub_source", MP_CMD_SUB_SOURCE, 1, 0, -1, MSGTR_SubSourceStatus },
2016 { "sub_vob", MP_CMD_SUB_VOB, 1, 0, -1, MSGTR_SubSelectStatus },
2017 { "sub_demux", MP_CMD_SUB_DEMUX, 1, 0, -1, MSGTR_SubSelectStatus },
2018 { "sub_file", MP_CMD_SUB_FILE, 1, 0, -1, MSGTR_SubSelectStatus },
2019 { "sub_pos", MP_CMD_SUB_POS, 0, 0, -1, MSGTR_SubPosStatus },
2020 { "sub_alignment", MP_CMD_SUB_ALIGNMENT, 1, 0, -1, MSGTR_SubAlignStatus },
2021 { "sub_delay", MP_CMD_SUB_DELAY, 0, 0, OSD_MSG_SUB_DELAY, MSGTR_SubDelayStatus },
2022 { "sub_visibility", MP_CMD_SUB_VISIBILITY, 1, 0, -1, MSGTR_SubVisibleStatus },
2023 { "sub_forced_only", MP_CMD_SUB_FORCED_ONLY, 1, 0, -1, MSGTR_SubForcedOnlyStatus },
2024 #ifdef HAVE_FREETYPE
2025 { "sub_scale", MP_CMD_SUB_SCALE, 0, 0, -1, MSGTR_SubScale},
2026 #endif
2027 #ifdef USE_TV
2028 { "tv_brightness", MP_CMD_TV_SET_BRIGHTNESS, 0, OSD_BRIGHTNESS, -1, MSGTR_Brightness },
2029 { "tv_hue", MP_CMD_TV_SET_HUE, 0, OSD_HUE, -1, MSGTR_Hue },
2030 { "tv_saturation", MP_CMD_TV_SET_SATURATION, 0, OSD_SATURATION, -1, MSGTR_Saturation },
2031 { "tv_contrast", MP_CMD_TV_SET_CONTRAST, 0, OSD_CONTRAST, -1, MSGTR_Contrast },
2032 #endif
2033 { NULL, 0, 0, 0, -1, NULL }
2037 /// Handle commands that set a property.
2038 static int set_property_command(MPContext * mpctx, mp_cmd_t * cmd)
2040 int i, r;
2041 m_option_t* prop;
2042 const char *pname;
2044 // look for the command
2045 for (i = 0; set_prop_cmd[i].name; i++)
2046 if (set_prop_cmd[i].cmd == cmd->id)
2047 break;
2048 if (!(pname = set_prop_cmd[i].name))
2049 return 0;
2051 if (mp_property_do(pname,M_PROPERTY_GET_TYPE,&prop,mpctx) <= 0 || !prop)
2052 return 0;
2054 // toggle command
2055 if (set_prop_cmd[i].toggle) {
2056 // set to value
2057 if (cmd->nargs > 0 && cmd->args[0].v.i >= prop->min)
2058 r = mp_property_do(pname, M_PROPERTY_SET, &cmd->args[0].v.i, mpctx);
2059 else
2060 r = mp_property_do(pname, M_PROPERTY_STEP_UP, NULL, mpctx);
2061 } else if (cmd->args[1].v.i) //set
2062 r = mp_property_do(pname, M_PROPERTY_SET, &cmd->args[0].v, mpctx);
2063 else // adjust
2064 r = mp_property_do(pname, M_PROPERTY_STEP_UP, &cmd->args[0].v, mpctx);
2066 if (r <= 0)
2067 return 1;
2069 if (set_prop_cmd[i].osd_progbar) {
2070 if (prop->type == CONF_TYPE_INT) {
2071 if (mp_property_do(pname, M_PROPERTY_GET, &r, mpctx) > 0)
2072 set_osd_bar(set_prop_cmd[i].osd_progbar,
2073 set_prop_cmd[i].osd_msg, prop->min, prop->max, r);
2074 } else if (prop->type == CONF_TYPE_FLOAT) {
2075 float f;
2076 if (mp_property_do(pname, M_PROPERTY_GET, &f, mpctx) > 0)
2077 set_osd_bar(set_prop_cmd[i].osd_progbar,
2078 set_prop_cmd[i].osd_msg, prop->min, prop->max, f);
2079 } else
2080 mp_msg(MSGT_CPLAYER, MSGL_ERR,
2081 "Property use an unsupported type.\n");
2082 return 1;
2085 if (set_prop_cmd[i].osd_msg) {
2086 char *val = mp_property_print(pname, mpctx);
2087 if (val) {
2088 set_osd_msg(set_prop_cmd[i].osd_id >=
2089 0 ? set_prop_cmd[i].osd_id : OSD_MSG_PROPERTY + i,
2090 1, osd_duration, set_prop_cmd[i].osd_msg, val);
2091 free(val);
2094 return 1;
2098 int run_command(MPContext * mpctx, mp_cmd_t * cmd)
2100 sh_audio_t * const sh_audio = mpctx->sh_audio;
2101 sh_video_t * const sh_video = mpctx->sh_video;
2102 int brk_cmd = 0;
2103 if (!set_property_command(mpctx, cmd))
2104 switch (cmd->id) {
2105 case MP_CMD_SEEK:{
2106 float v;
2107 int abs;
2108 if (sh_video)
2109 mpctx->osd_show_percentage = sh_video->fps;
2110 v = cmd->args[0].v.f;
2111 abs = (cmd->nargs > 1) ? cmd->args[1].v.i : 0;
2112 if (abs == 2) { /* Absolute seek to a specific timestamp in seconds */
2113 abs_seek_pos = 1;
2114 if (sh_video)
2115 mpctx->osd_function =
2116 (v > sh_video->pts) ? OSD_FFW : OSD_REW;
2117 rel_seek_secs = v;
2118 } else if (abs) { /* Absolute seek by percentage */
2119 abs_seek_pos = 3;
2120 if (sh_video)
2121 mpctx->osd_function = OSD_FFW; // Direction isn't set correctly
2122 rel_seek_secs = v / 100.0;
2123 } else {
2124 rel_seek_secs += v;
2125 mpctx->osd_function = (v > 0) ? OSD_FFW : OSD_REW;
2127 brk_cmd = 1;
2129 break;
2131 case MP_CMD_SET_PROPERTY:{
2132 int r = mp_property_do(cmd->args[0].v.s, M_PROPERTY_PARSE,
2133 cmd->args[1].v.s, mpctx);
2134 if (r == M_PROPERTY_UNKNOWN)
2135 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2136 "Unknown property: '%s'\n", cmd->args[0].v.s);
2137 else if (r <= 0)
2138 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2139 "Failed to set property '%s' to '%s'.\n",
2140 cmd->args[0].v.s, cmd->args[1].v.s);
2142 break;
2144 case MP_CMD_STEP_PROPERTY:{
2145 void* arg = NULL;
2146 int r,i;
2147 double d;
2148 off_t o;
2149 if (cmd->args[1].v.f) {
2150 m_option_t* prop;
2151 if((r = mp_property_do(cmd->args[0].v.s,
2152 M_PROPERTY_GET_TYPE,
2153 &prop, mpctx)) <= 0)
2154 goto step_prop_err;
2155 if(prop->type == CONF_TYPE_INT ||
2156 prop->type == CONF_TYPE_FLAG)
2157 i = cmd->args[1].v.f, arg = &i;
2158 else if(prop->type == CONF_TYPE_FLOAT)
2159 arg = &cmd->args[1].v.f;
2160 else if(prop->type == CONF_TYPE_DOUBLE ||
2161 prop->type == CONF_TYPE_TIME)
2162 d = cmd->args[1].v.f, arg = &d;
2163 else if(prop->type == CONF_TYPE_POSITION)
2164 o = cmd->args[1].v.f, arg = &o;
2165 else
2166 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2167 "Ignoring step size stepping property '%s'.\n",
2168 cmd->args[0].v.s);
2170 r = mp_property_do(cmd->args[0].v.s,
2171 cmd->args[2].v.i < 0 ?
2172 M_PROPERTY_STEP_DOWN : M_PROPERTY_STEP_UP,
2173 arg, mpctx);
2174 step_prop_err:
2175 if (r == M_PROPERTY_UNKNOWN)
2176 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2177 "Unknown property: '%s'\n", cmd->args[0].v.s);
2178 else if (r <= 0)
2179 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2180 "Failed to increment property '%s' by %f.\n",
2181 cmd->args[0].v.s, cmd->args[1].v.f);
2183 break;
2185 case MP_CMD_GET_PROPERTY:{
2186 char *tmp;
2187 if (mp_property_do(cmd->args[0].v.s, M_PROPERTY_TO_STRING,
2188 &tmp, mpctx) <= 0) {
2189 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2190 "Failed to get value of property '%s'.\n",
2191 cmd->args[0].v.s);
2192 break;
2194 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_%s=%s\n",
2195 cmd->args[0].v.s, tmp);
2196 free(tmp);
2198 break;
2200 case MP_CMD_EDL_MARK:
2201 if (edl_fd) {
2202 float v = sh_video ? sh_video->pts :
2203 playing_audio_pts(sh_audio, mpctx->d_audio,
2204 mpctx->audio_out);
2206 if (mpctx->begin_skip == MP_NOPTS_VALUE) {
2207 mpctx->begin_skip = v;
2208 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_EdloutStartSkip);
2209 } else {
2210 if (mpctx->begin_skip > v)
2211 mp_msg(MSGT_CPLAYER, MSGL_WARN, MSGTR_EdloutBadStop);
2212 else {
2213 fprintf(edl_fd, "%f %f %d\n", mpctx->begin_skip, v, 0);
2214 mp_msg(MSGT_CPLAYER, MSGL_INFO, MSGTR_EdloutEndSkip);
2216 mpctx->begin_skip = MP_NOPTS_VALUE;
2219 break;
2221 case MP_CMD_SWITCH_RATIO:
2222 if (cmd->nargs == 0 || cmd->args[0].v.f == -1)
2223 movie_aspect = (float) sh_video->disp_w / sh_video->disp_h;
2224 else
2225 movie_aspect = cmd->args[0].v.f;
2226 mpcodecs_config_vo(sh_video, sh_video->disp_w, sh_video->disp_h, 0);
2227 break;
2229 case MP_CMD_SPEED_INCR:{
2230 float v = cmd->args[0].v.f;
2231 playback_speed += v;
2232 build_afilter_chain(sh_audio, &ao_data);
2233 set_osd_msg(OSD_MSG_SPEED, 1, osd_duration, MSGTR_OSDSpeed,
2234 playback_speed);
2235 } break;
2237 case MP_CMD_SPEED_MULT:{
2238 float v = cmd->args[0].v.f;
2239 playback_speed *= v;
2240 build_afilter_chain(sh_audio, &ao_data);
2241 set_osd_msg(OSD_MSG_SPEED, 1, osd_duration, MSGTR_OSDSpeed,
2242 playback_speed);
2243 } break;
2245 case MP_CMD_SPEED_SET:{
2246 float v = cmd->args[0].v.f;
2247 playback_speed = v;
2248 build_afilter_chain(sh_audio, &ao_data);
2249 set_osd_msg(OSD_MSG_SPEED, 1, osd_duration, MSGTR_OSDSpeed,
2250 playback_speed);
2251 } break;
2253 case MP_CMD_FRAME_STEP:
2254 case MP_CMD_PAUSE:
2255 cmd->pausing = 1;
2256 brk_cmd = 1;
2257 break;
2259 case MP_CMD_FILE_FILTER:
2260 file_filter = cmd->args[0].v.i;
2261 break;
2263 case MP_CMD_QUIT:
2264 exit_player_with_rc(MSGTR_Exit_quit,
2265 (cmd->nargs > 0) ? cmd->args[0].v.i : 0);
2267 case MP_CMD_PLAY_TREE_STEP:{
2268 int n = cmd->args[0].v.i == 0 ? 1 : cmd->args[0].v.i;
2269 int force = cmd->args[1].v.i;
2271 #ifdef HAVE_NEW_GUI
2272 if (use_gui) {
2273 int i = 0;
2274 if (n > 0)
2275 for (i = 0; i < n; i++)
2276 mplNext();
2277 else
2278 for (i = 0; i < -1 * n; i++)
2279 mplPrev();
2280 } else
2281 #endif
2283 if (!force && mpctx->playtree_iter) {
2284 play_tree_iter_t *i =
2285 play_tree_iter_new_copy(mpctx->playtree_iter);
2286 if (play_tree_iter_step(i, n, 0) ==
2287 PLAY_TREE_ITER_ENTRY)
2288 mpctx->eof =
2289 (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
2290 play_tree_iter_free(i);
2291 } else
2292 mpctx->eof = (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
2293 if (mpctx->eof)
2294 mpctx->play_tree_step = n;
2295 brk_cmd = 1;
2298 break;
2300 case MP_CMD_PLAY_TREE_UP_STEP:{
2301 int n = cmd->args[0].v.i > 0 ? 1 : -1;
2302 int force = cmd->args[1].v.i;
2304 if (!force && mpctx->playtree_iter) {
2305 play_tree_iter_t *i =
2306 play_tree_iter_new_copy(mpctx->playtree_iter);
2307 if (play_tree_iter_up_step(i, n, 0) == PLAY_TREE_ITER_ENTRY)
2308 mpctx->eof = (n > 0) ? PT_UP_NEXT : PT_UP_PREV;
2309 play_tree_iter_free(i);
2310 } else
2311 mpctx->eof = (n > 0) ? PT_UP_NEXT : PT_UP_PREV;
2312 brk_cmd = 1;
2314 break;
2316 case MP_CMD_PLAY_ALT_SRC_STEP:
2317 if (mpctx->playtree_iter && mpctx->playtree_iter->num_files > 1) {
2318 int v = cmd->args[0].v.i;
2319 if (v > 0
2320 && mpctx->playtree_iter->file <
2321 mpctx->playtree_iter->num_files)
2322 mpctx->eof = PT_NEXT_SRC;
2323 else if (v < 0 && mpctx->playtree_iter->file > 1)
2324 mpctx->eof = PT_PREV_SRC;
2326 brk_cmd = 1;
2327 break;
2329 case MP_CMD_SUB_STEP:
2330 if (sh_video) {
2331 int movement = cmd->args[0].v.i;
2332 step_sub(subdata, sh_video->pts, movement);
2333 #ifdef USE_ASS
2334 if (ass_track)
2335 sub_delay +=
2336 ass_step_sub(ass_track,
2337 (sh_video->pts +
2338 sub_delay) * 1000 + .5, movement) / 1000.;
2339 #endif
2340 set_osd_msg(OSD_MSG_SUB_DELAY, 1, osd_duration,
2341 MSGTR_OSDSubDelay, ROUND(sub_delay * 1000));
2343 break;
2345 case MP_CMD_SUB_LOG:
2346 log_sub();
2347 break;
2349 case MP_CMD_OSD:{
2350 int v = cmd->args[0].v.i;
2351 int max = (term_osd
2352 && !sh_video) ? MAX_TERM_OSD_LEVEL : MAX_OSD_LEVEL;
2353 if (osd_level > max)
2354 osd_level = max;
2355 if (v < 0)
2356 osd_level = (osd_level + 1) % (max + 1);
2357 else
2358 osd_level = v > max ? max : v;
2359 /* Show OSD state when disabled, but not when an explicit
2360 argument is given to the OSD command, i.e. in slave mode. */
2361 if (v == -1 && osd_level <= 1)
2362 set_osd_msg(OSD_MSG_OSD_STATUS, 0, osd_duration,
2363 MSGTR_OSDosd,
2364 osd_level ? MSGTR_OSDenabled :
2365 MSGTR_OSDdisabled);
2366 else
2367 rm_osd_msg(OSD_MSG_OSD_STATUS);
2369 break;
2371 case MP_CMD_OSD_SHOW_TEXT:
2372 set_osd_msg(OSD_MSG_TEXT, cmd->args[2].v.i,
2373 (cmd->args[1].v.i <
2374 0 ? osd_duration : cmd->args[1].v.i),
2375 "%-.63s", cmd->args[0].v.s);
2376 break;
2378 case MP_CMD_OSD_SHOW_PROPERTY_TEXT:{
2379 char *txt = m_properties_expand_string(mp_properties,
2380 cmd->args[0].v.s,
2381 mpctx);
2382 /* if no argument supplied take default osd_duration, else <arg> ms. */
2383 if (txt) {
2384 set_osd_msg(OSD_MSG_TEXT, cmd->args[2].v.i,
2385 (cmd->args[1].v.i <
2386 0 ? osd_duration : cmd->args[1].v.i),
2387 "%-.63s", txt);
2388 free(txt);
2391 break;
2393 case MP_CMD_LOADFILE:{
2394 play_tree_t *e = play_tree_new();
2395 play_tree_add_file(e, cmd->args[0].v.s);
2397 if (cmd->args[1].v.i) // append
2398 play_tree_append_entry(mpctx->playtree, e);
2399 else {
2400 // Go back to the starting point.
2401 while (play_tree_iter_up_step
2402 (mpctx->playtree_iter, 0, 1) != PLAY_TREE_ITER_END)
2403 /* NOP */ ;
2404 play_tree_free_list(mpctx->playtree->child, 1);
2405 play_tree_set_child(mpctx->playtree, e);
2406 play_tree_iter_step(mpctx->playtree_iter, 0, 0);
2407 mpctx->eof = PT_NEXT_SRC;
2409 brk_cmd = 1;
2411 break;
2413 case MP_CMD_LOADLIST:{
2414 play_tree_t *e = parse_playlist_file(cmd->args[0].v.s);
2415 if (!e)
2416 mp_msg(MSGT_CPLAYER, MSGL_ERR,
2417 MSGTR_PlaylistLoadUnable, cmd->args[0].v.s);
2418 else {
2419 if (cmd->args[1].v.i) // append
2420 play_tree_append_entry(mpctx->playtree, e);
2421 else {
2422 // Go back to the starting point.
2423 while (play_tree_iter_up_step
2424 (mpctx->playtree_iter, 0, 1)
2425 != PLAY_TREE_ITER_END)
2426 /* NOP */ ;
2427 play_tree_free_list(mpctx->playtree->child, 1);
2428 play_tree_set_child(mpctx->playtree, e);
2429 play_tree_iter_step(mpctx->playtree_iter, 0, 0);
2430 mpctx->eof = PT_NEXT_SRC;
2433 brk_cmd = 1;
2435 break;
2437 #ifdef USE_RADIO
2438 case MP_CMD_RADIO_STEP_CHANNEL:
2439 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO) {
2440 int v = cmd->args[0].v.i;
2441 if (v > 0)
2442 radio_step_channel(mpctx->demuxer->stream,
2443 RADIO_CHANNEL_HIGHER);
2444 else
2445 radio_step_channel(mpctx->demuxer->stream,
2446 RADIO_CHANNEL_LOWER);
2447 if (radio_get_channel_name(mpctx->demuxer->stream)) {
2448 set_osd_msg(OSD_MSG_RADIO_CHANNEL, 1, osd_duration,
2449 MSGTR_OSDChannel,
2450 radio_get_channel_name(mpctx->demuxer->stream));
2453 break;
2455 case MP_CMD_RADIO_SET_CHANNEL:
2456 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO) {
2457 radio_set_channel(mpctx->demuxer->stream, cmd->args[0].v.s);
2458 if (radio_get_channel_name(mpctx->demuxer->stream)) {
2459 set_osd_msg(OSD_MSG_RADIO_CHANNEL, 1, osd_duration,
2460 MSGTR_OSDChannel,
2461 radio_get_channel_name(mpctx->demuxer->stream));
2464 break;
2466 case MP_CMD_RADIO_SET_FREQ:
2467 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO)
2468 radio_set_freq(mpctx->demuxer->stream, cmd->args[0].v.f);
2469 break;
2471 case MP_CMD_RADIO_STEP_FREQ:
2472 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO)
2473 radio_step_freq(mpctx->demuxer->stream, cmd->args[0].v.f);
2474 break;
2475 #endif
2477 #ifdef USE_TV
2478 case MP_CMD_TV_START_SCAN:
2479 if (mpctx->file_format == DEMUXER_TYPE_TV)
2480 tv_start_scan((tvi_handle_t *) (mpctx->demuxer->priv),1);
2481 break;
2482 case MP_CMD_TV_SET_FREQ:
2483 if (mpctx->file_format == DEMUXER_TYPE_TV)
2484 tv_set_freq((tvi_handle_t *) (mpctx->demuxer->priv),
2485 cmd->args[0].v.f * 16.0);
2486 #ifdef HAVE_PVR
2487 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
2488 pvr_set_freq (mpctx->stream, ROUND (cmd->args[0].v.f));
2489 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
2490 pvr_get_current_channelname (mpctx->stream),
2491 pvr_get_current_stationname (mpctx->stream));
2493 #endif /* HAVE_PVR */
2494 break;
2496 case MP_CMD_TV_STEP_FREQ:
2497 if (mpctx->file_format == DEMUXER_TYPE_TV)
2498 tv_step_freq((tvi_handle_t *) (mpctx->demuxer->priv),
2499 cmd->args[0].v.f * 16.0);
2500 #ifdef HAVE_PVR
2501 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
2502 pvr_force_freq_step (mpctx->stream, ROUND (cmd->args[0].v.f));
2503 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: f %d",
2504 pvr_get_current_channelname (mpctx->stream),
2505 pvr_get_current_frequency (mpctx->stream));
2507 #endif /* HAVE_PVR */
2508 break;
2510 case MP_CMD_TV_SET_NORM:
2511 if (mpctx->file_format == DEMUXER_TYPE_TV)
2512 tv_set_norm((tvi_handle_t *) (mpctx->demuxer->priv),
2513 cmd->args[0].v.s);
2514 break;
2516 case MP_CMD_TV_STEP_CHANNEL:{
2517 if (mpctx->file_format == DEMUXER_TYPE_TV) {
2518 int v = cmd->args[0].v.i;
2519 if (v > 0) {
2520 tv_step_channel((tvi_handle_t *) (mpctx->
2521 demuxer->priv),
2522 TV_CHANNEL_HIGHER);
2523 } else {
2524 tv_step_channel((tvi_handle_t *) (mpctx->
2525 demuxer->priv),
2526 TV_CHANNEL_LOWER);
2528 if (tv_channel_list) {
2529 set_osd_msg(OSD_MSG_TV_CHANNEL, 1, osd_duration,
2530 MSGTR_OSDChannel, tv_channel_current->name);
2531 //vo_osd_changed(OSDTYPE_SUBTITLE);
2534 #ifdef HAVE_PVR
2535 else if (mpctx->stream &&
2536 mpctx->stream->type == STREAMTYPE_PVR) {
2537 pvr_set_channel_step (mpctx->stream, cmd->args[0].v.i);
2538 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
2539 pvr_get_current_channelname (mpctx->stream),
2540 pvr_get_current_stationname (mpctx->stream));
2542 #endif /* HAVE_PVR */
2544 #ifdef HAS_DVBIN_SUPPORT
2545 if ((mpctx->stream->type == STREAMTYPE_DVB)
2546 && mpctx->stream->priv) {
2547 dvb_priv_t *priv = (dvb_priv_t *) mpctx->stream->priv;
2548 if (priv->is_on) {
2549 int dir;
2550 int v = cmd->args[0].v.i;
2552 mpctx->last_dvb_step = v;
2553 if (v > 0)
2554 dir = DVB_CHANNEL_HIGHER;
2555 else
2556 dir = DVB_CHANNEL_LOWER;
2559 if (dvb_step_channel(priv, dir))
2560 mpctx->eof = mpctx->dvbin_reopen = 1;
2563 #endif /* HAS_DVBIN_SUPPORT */
2564 break;
2566 case MP_CMD_TV_SET_CHANNEL:
2567 if (mpctx->file_format == DEMUXER_TYPE_TV) {
2568 tv_set_channel((tvi_handle_t *) (mpctx->demuxer->priv),
2569 cmd->args[0].v.s);
2570 if (tv_channel_list) {
2571 set_osd_msg(OSD_MSG_TV_CHANNEL, 1, osd_duration,
2572 MSGTR_OSDChannel, tv_channel_current->name);
2573 //vo_osd_changed(OSDTYPE_SUBTITLE);
2576 #ifdef HAVE_PVR
2577 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
2578 pvr_set_channel (mpctx->stream, cmd->args[0].v.s);
2579 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
2580 pvr_get_current_channelname (mpctx->stream),
2581 pvr_get_current_stationname (mpctx->stream));
2583 #endif /* HAVE_PVR */
2584 break;
2586 #ifdef HAS_DVBIN_SUPPORT
2587 case MP_CMD_DVB_SET_CHANNEL:
2588 if ((mpctx->stream->type == STREAMTYPE_DVB)
2589 && mpctx->stream->priv) {
2590 dvb_priv_t *priv = (dvb_priv_t *) mpctx->stream->priv;
2591 if (priv->is_on) {
2592 if (priv->list->current <= cmd->args[0].v.i)
2593 mpctx->last_dvb_step = 1;
2594 else
2595 mpctx->last_dvb_step = -1;
2597 if (dvb_set_channel
2598 (priv, cmd->args[1].v.i, cmd->args[0].v.i))
2599 mpctx->eof = mpctx->dvbin_reopen = 1;
2602 break;
2603 #endif /* HAS_DVBIN_SUPPORT */
2605 case MP_CMD_TV_LAST_CHANNEL:
2606 if (mpctx->file_format == DEMUXER_TYPE_TV) {
2607 tv_last_channel((tvi_handle_t *) (mpctx->demuxer->priv));
2608 if (tv_channel_list) {
2609 set_osd_msg(OSD_MSG_TV_CHANNEL, 1, osd_duration,
2610 MSGTR_OSDChannel, tv_channel_current->name);
2611 //vo_osd_changed(OSDTYPE_SUBTITLE);
2614 #ifdef HAVE_PVR
2615 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
2616 pvr_set_lastchannel (mpctx->stream);
2617 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
2618 pvr_get_current_channelname (mpctx->stream),
2619 pvr_get_current_stationname (mpctx->stream));
2621 #endif /* HAVE_PVR */
2622 break;
2624 case MP_CMD_TV_STEP_NORM:
2625 if (mpctx->file_format == DEMUXER_TYPE_TV)
2626 tv_step_norm((tvi_handle_t *) (mpctx->demuxer->priv));
2627 break;
2629 case MP_CMD_TV_STEP_CHANNEL_LIST:
2630 if (mpctx->file_format == DEMUXER_TYPE_TV)
2631 tv_step_chanlist((tvi_handle_t *) (mpctx->demuxer->priv));
2632 break;
2633 #ifdef HAVE_TV_TELETEXT
2634 case MP_CMD_TV_TELETEXT_ADD_DEC:
2636 tvi_handle_t* tvh=(tvi_handle_t *)(mpctx->demuxer->priv);
2637 if (mpctx->file_format == DEMUXER_TYPE_TV)
2638 tvh->functions->control(tvh->priv,TV_VBI_CONTROL_ADD_DEC,&(cmd->args[0].v.s));
2639 break;
2641 case MP_CMD_TV_TELETEXT_GO_LINK:
2643 tvi_handle_t* tvh=(tvi_handle_t *)(mpctx->demuxer->priv);
2644 if (mpctx->file_format == DEMUXER_TYPE_TV)
2645 tvh->functions->control(tvh->priv,TV_VBI_CONTROL_GO_LINK,&(cmd->args[0].v.i));
2646 break;
2648 #endif /* HAVE_TV_TELETEXT */
2649 #endif /* USE_TV */
2651 case MP_CMD_SUB_LOAD:
2652 if (sh_video) {
2653 int n = mpctx->set_of_sub_size;
2654 add_subtitles(cmd->args[0].v.s, sh_video->fps, 0);
2655 if (n != mpctx->set_of_sub_size) {
2656 if (mpctx->global_sub_indices[SUB_SOURCE_SUBS] < 0)
2657 mpctx->global_sub_indices[SUB_SOURCE_SUBS] =
2658 mpctx->global_sub_size;
2659 ++mpctx->global_sub_size;
2662 break;
2664 case MP_CMD_SUB_REMOVE:
2665 if (sh_video) {
2666 int v = cmd->args[0].v.i;
2667 sub_data *subd;
2668 if (v < 0) {
2669 for (v = 0; v < mpctx->set_of_sub_size; ++v) {
2670 subd = mpctx->set_of_subtitles[v];
2671 mp_msg(MSGT_CPLAYER, MSGL_STATUS,
2672 MSGTR_RemovedSubtitleFile, v + 1,
2673 filename_recode(subd->filename));
2674 sub_free(subd);
2675 mpctx->set_of_subtitles[v] = NULL;
2677 mpctx->global_sub_indices[SUB_SOURCE_SUBS] = -1;
2678 mpctx->global_sub_size -= mpctx->set_of_sub_size;
2679 mpctx->set_of_sub_size = 0;
2680 if (mpctx->set_of_sub_pos >= 0) {
2681 mpctx->global_sub_pos = -2;
2682 subdata = NULL;
2683 mp_input_queue_cmd(mp_input_parse_cmd("sub_select"));
2685 } else if (v < mpctx->set_of_sub_size) {
2686 subd = mpctx->set_of_subtitles[v];
2687 mp_msg(MSGT_CPLAYER, MSGL_STATUS,
2688 MSGTR_RemovedSubtitleFile, v + 1,
2689 filename_recode(subd->filename));
2690 sub_free(subd);
2691 if (mpctx->set_of_sub_pos == v) {
2692 mpctx->global_sub_pos = -2;
2693 subdata = NULL;
2694 mp_input_queue_cmd(mp_input_parse_cmd("sub_select"));
2695 } else if (mpctx->set_of_sub_pos > v) {
2696 --mpctx->set_of_sub_pos;
2697 --mpctx->global_sub_pos;
2699 while (++v < mpctx->set_of_sub_size)
2700 mpctx->set_of_subtitles[v - 1] =
2701 mpctx->set_of_subtitles[v];
2702 --mpctx->set_of_sub_size;
2703 --mpctx->global_sub_size;
2704 if (mpctx->set_of_sub_size <= 0)
2705 mpctx->global_sub_indices[SUB_SOURCE_SUBS] = -1;
2706 mpctx->set_of_subtitles[mpctx->set_of_sub_size] = NULL;
2709 break;
2711 case MP_CMD_GET_SUB_VISIBILITY:
2712 if (sh_video) {
2713 mp_msg(MSGT_GLOBAL, MSGL_INFO,
2714 "ANS_SUB_VISIBILITY=%d\n", sub_visibility);
2716 break;
2718 case MP_CMD_SCREENSHOT:
2719 if (vo_config_count) {
2720 mp_msg(MSGT_CPLAYER, MSGL_INFO, "sending VFCTRL_SCREENSHOT!\n");
2721 if (CONTROL_OK !=
2722 ((vf_instance_t *) sh_video->vfilter)->
2723 control(sh_video->vfilter, VFCTRL_SCREENSHOT,
2724 &cmd->args[0].v.i))
2725 mpctx->video_out->control(VOCTRL_SCREENSHOT, NULL);
2727 break;
2729 case MP_CMD_VF_CHANGE_RECTANGLE:
2730 set_rectangle(sh_video, cmd->args[0].v.i, cmd->args[1].v.i);
2731 break;
2733 case MP_CMD_GET_TIME_LENGTH:{
2734 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_LENGTH=%.2lf\n",
2735 demuxer_get_time_length(mpctx->demuxer));
2737 break;
2739 case MP_CMD_GET_FILENAME:{
2740 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_FILENAME='%s'\n",
2741 get_metadata(META_NAME));
2743 break;
2745 case MP_CMD_GET_VIDEO_CODEC:{
2746 char *inf = get_metadata(META_VIDEO_CODEC);
2747 if (!inf)
2748 inf = strdup("");
2749 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_VIDEO_CODEC='%s'\n", inf);
2750 free(inf);
2752 break;
2754 case MP_CMD_GET_VIDEO_BITRATE:{
2755 char *inf = get_metadata(META_VIDEO_BITRATE);
2756 if (!inf)
2757 inf = strdup("");
2758 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_VIDEO_BITRATE='%s'\n", inf);
2759 free(inf);
2761 break;
2763 case MP_CMD_GET_VIDEO_RESOLUTION:{
2764 char *inf = get_metadata(META_VIDEO_RESOLUTION);
2765 if (!inf)
2766 inf = strdup("");
2767 mp_msg(MSGT_GLOBAL, MSGL_INFO,
2768 "ANS_VIDEO_RESOLUTION='%s'\n", inf);
2769 free(inf);
2771 break;
2773 case MP_CMD_GET_AUDIO_CODEC:{
2774 char *inf = get_metadata(META_AUDIO_CODEC);
2775 if (!inf)
2776 inf = strdup("");
2777 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_AUDIO_CODEC='%s'\n", inf);
2778 free(inf);
2780 break;
2782 case MP_CMD_GET_AUDIO_BITRATE:{
2783 char *inf = get_metadata(META_AUDIO_BITRATE);
2784 if (!inf)
2785 inf = strdup("");
2786 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_AUDIO_BITRATE='%s'\n", inf);
2787 free(inf);
2789 break;
2791 case MP_CMD_GET_AUDIO_SAMPLES:{
2792 char *inf = get_metadata(META_AUDIO_SAMPLES);
2793 if (!inf)
2794 inf = strdup("");
2795 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_AUDIO_SAMPLES='%s'\n", inf);
2796 free(inf);
2798 break;
2800 case MP_CMD_GET_META_TITLE:{
2801 char *inf = get_metadata(META_INFO_TITLE);
2802 if (!inf)
2803 inf = strdup("");
2804 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_TITLE='%s'\n", inf);
2805 free(inf);
2807 break;
2809 case MP_CMD_GET_META_ARTIST:{
2810 char *inf = get_metadata(META_INFO_ARTIST);
2811 if (!inf)
2812 inf = strdup("");
2813 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_ARTIST='%s'\n", inf);
2814 free(inf);
2816 break;
2818 case MP_CMD_GET_META_ALBUM:{
2819 char *inf = get_metadata(META_INFO_ALBUM);
2820 if (!inf)
2821 inf = strdup("");
2822 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_ALBUM='%s'\n", inf);
2823 free(inf);
2825 break;
2827 case MP_CMD_GET_META_YEAR:{
2828 char *inf = get_metadata(META_INFO_YEAR);
2829 if (!inf)
2830 inf = strdup("");
2831 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_YEAR='%s'\n", inf);
2832 free(inf);
2834 break;
2836 case MP_CMD_GET_META_COMMENT:{
2837 char *inf = get_metadata(META_INFO_COMMENT);
2838 if (!inf)
2839 inf = strdup("");
2840 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_COMMENT='%s'\n", inf);
2841 free(inf);
2843 break;
2845 case MP_CMD_GET_META_TRACK:{
2846 char *inf = get_metadata(META_INFO_TRACK);
2847 if (!inf)
2848 inf = strdup("");
2849 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_TRACK='%s'\n", inf);
2850 free(inf);
2852 break;
2854 case MP_CMD_GET_META_GENRE:{
2855 char *inf = get_metadata(META_INFO_GENRE);
2856 if (!inf)
2857 inf = strdup("");
2858 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_GENRE='%s'\n", inf);
2859 free(inf);
2861 break;
2863 case MP_CMD_GET_VO_FULLSCREEN:
2864 if (mpctx->video_out && vo_config_count)
2865 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_VO_FULLSCREEN=%d\n", vo_fs);
2866 break;
2868 case MP_CMD_GET_PERCENT_POS:
2869 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_PERCENT_POSITION=%d\n",
2870 demuxer_get_percent_pos(mpctx->demuxer));
2871 break;
2873 case MP_CMD_GET_TIME_POS:{
2874 float pos = 0;
2875 if (sh_video)
2876 pos = sh_video->pts;
2877 else if (sh_audio && mpctx->audio_out)
2878 pos =
2879 playing_audio_pts(sh_audio, mpctx->d_audio,
2880 mpctx->audio_out);
2881 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_TIME_POSITION=%.1f\n", pos);
2883 break;
2885 case MP_CMD_RUN:
2886 #ifndef __MINGW32__
2887 if (!fork()) {
2888 execl("/bin/sh", "sh", "-c", cmd->args[0].v.s, NULL);
2889 exit(0);
2891 #endif
2892 break;
2894 case MP_CMD_KEYDOWN_EVENTS:
2895 mplayer_put_key(cmd->args[0].v.i);
2896 break;
2898 case MP_CMD_SEEK_CHAPTER:{
2899 int seek = cmd->args[0].v.i;
2900 int abs = (cmd->nargs > 1) ? cmd->args[1].v.i : 0;
2901 int chap;
2902 float next_pts = 0;
2903 int num_chapters;
2904 char *chapter_name;
2906 rel_seek_secs = 0;
2907 abs_seek_pos = 0;
2908 chap =
2909 demuxer_seek_chapter(mpctx->demuxer, seek, abs,
2910 &next_pts, &num_chapters,
2911 &chapter_name);
2912 if (chap != -1) {
2913 if (next_pts > -1.0) {
2914 abs_seek_pos = 1;
2915 rel_seek_secs = next_pts;
2917 if (chapter_name) {
2918 set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
2919 MSGTR_OSDChapter, chap + 1, chapter_name);
2920 free(chapter_name);
2922 } else {
2923 if (seek > 0)
2924 rel_seek_secs = 1000000000.;
2925 else
2926 set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
2927 MSGTR_OSDChapter, 0, MSGTR_Unknown);
2929 break;
2931 break;
2933 case MP_CMD_SET_MOUSE_POS:{
2934 int pointer_x, pointer_y;
2935 double dx, dy;
2936 pointer_x = cmd->args[0].v.i;
2937 pointer_y = cmd->args[1].v.i;
2938 rescale_input_coordinates(pointer_x, pointer_y, &dx, &dy);
2939 #ifdef USE_DVDNAV
2940 if (mpctx->stream->type == STREAMTYPE_DVDNAV
2941 && dx > 0.0 && dy > 0.0) {
2942 int button = -1;
2943 pointer_x = (int) (dx * (double) sh_video->disp_w);
2944 pointer_y = (int) (dy * (double) sh_video->disp_h);
2945 mp_dvdnav_update_mouse_pos(mpctx->stream,
2946 pointer_x, pointer_y, &button);
2947 if (button > 0)
2948 set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
2949 "Selected button number %d", button);
2951 #endif
2953 break;
2955 #ifdef USE_DVDNAV
2956 case MP_CMD_DVDNAV:{
2957 int button = -1;
2958 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
2959 break;
2961 if (mp_dvdnav_handle_input
2962 (mpctx->stream, cmd->args[0].v.i, &button)) {
2963 uninit_player(INITED_ALL - (INITED_STREAM | INITED_INPUT |
2964 (fixed_vo ? INITED_VO : 0)));
2965 brk_cmd = 2;
2966 } else if (button > 0)
2967 set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
2968 "Selected button number %d", button);
2970 break;
2971 #endif
2973 default:
2974 #ifdef HAVE_NEW_GUI
2975 if ((use_gui) && (cmd->id > MP_CMD_GUI_EVENTS))
2976 guiGetEvent(guiIEvent, (char *) cmd->id);
2977 else
2978 #endif
2979 mp_msg(MSGT_CPLAYER, MSGL_V,
2980 "Received unknown cmd %s\n", cmd->name);
2983 switch (cmd->pausing) {
2984 case 1: // "pausing"
2985 mpctx->osd_function = OSD_PAUSE;
2986 break;
2987 case 3: // "pausing_toggle"
2988 mpctx->was_paused = !mpctx->was_paused;
2989 if (mpctx->was_paused)
2990 mpctx->osd_function = OSD_PAUSE;
2991 else if (mpctx->osd_function == OSD_PAUSE)
2992 mpctx->osd_function = OSD_PLAY;
2993 break;
2994 case 2: // "pausing_keep"
2995 if (mpctx->was_paused)
2996 mpctx->osd_function = OSD_PAUSE;
2998 return brk_cmd;