2 * This file is part of MPlayer.
4 * MPlayer is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * MPlayer is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License along
15 * with MPlayer; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 #include "input/input.h"
29 #include "stream/stream.h"
30 #include "libmpdemux/demuxer.h"
31 #include "libmpdemux/stheader.h"
32 #include "codec-cfg.h"
35 #include "sub/dec_sub.h"
37 #include "m_property.h"
40 #include "libmpcodecs/vf.h"
41 #include "libmpcodecs/vd.h"
43 #include "libvo/video_out.h"
44 #include "sub/font_load.h"
46 #include "libao2/audio_out.h"
49 #include "libmpcodecs/dec_video.h"
50 #include "libmpcodecs/dec_audio.h"
51 #include "libmpcodecs/dec_teletext.h"
52 #include "osdep/strsep.h"
53 #include "sub/vobsub.h"
54 #include "sub/spudec.h"
56 #include "sub/ass_mp.h"
57 #include "stream/tv.h"
58 #include "stream/stream_radio.h"
59 #include "stream/pvr.h"
61 #include "stream/dvbin.h"
64 #include "stream/stream_dvd.h"
66 #include "stream/stream_dvdnav.h"
68 #include "libmenu/menu.h"
72 #include "libavutil/avstring.h"
76 static void rescale_input_coordinates(struct MPContext
*mpctx
, int ix
, int iy
,
77 double *dx
, double *dy
)
79 struct MPOpts
*opts
= &mpctx
->opts
;
80 struct vo
*vo
= mpctx
->video_out
;
81 //remove the borders, if any, and rescale to the range [0,1],[0,1]
82 if (vo_fs
) { //we are in full-screen mode
83 if (opts
->vo_screenwidth
> vo
->dwidth
) //there are borders along the x axis
84 ix
-= (opts
->vo_screenwidth
- vo
->dwidth
) / 2;
85 if (opts
->vo_screenheight
> vo
->dheight
) //there are borders along the y axis (usual way)
86 iy
-= (opts
->vo_screenheight
- vo
->dheight
) / 2;
88 if (ix
< 0 || ix
> vo
->dwidth
) {
91 } //we are on one of the borders
92 if (iy
< 0 || iy
> vo
->dheight
) {
95 } //we are on one of the borders
98 *dx
= (double) ix
/ (double) vo
->dwidth
;
99 *dy
= (double) iy
/ (double) vo
->dheight
;
101 mp_msg(MSGT_CPLAYER
, MSGL_V
,
102 "\r\nrescaled coordinates: %.3f, %.3f, screen (%d x %d), vodisplay: (%d, %d), fullscreen: %d\r\n",
103 *dx
, *dy
, opts
->vo_screenwidth
, opts
->vo_screenheight
, vo
->dwidth
,
107 static int sub_pos_by_source(MPContext
*mpctx
, int src
)
110 if (src
>= SUB_SOURCES
|| mpctx
->sub_counts
[src
] == 0)
112 for (i
= 0; i
< src
; i
++)
113 cnt
+= mpctx
->sub_counts
[i
];
117 static int sub_source_and_index_by_pos(MPContext
*mpctx
, int *pos
)
121 for (i
= 0; i
< SUB_SOURCES
; i
++) {
122 int cnt
= mpctx
->sub_counts
[i
];
123 if (*pos
>= start
&& *pos
< start
+ cnt
) {
133 static int sub_source_by_pos(MPContext
*mpctx
, int pos
)
135 return sub_source_and_index_by_pos(mpctx
, &pos
);
138 static int sub_source_pos(MPContext
*mpctx
)
140 int pos
= mpctx
->global_sub_pos
;
141 sub_source_and_index_by_pos(mpctx
, &pos
);
145 static int sub_source(MPContext
*mpctx
)
147 return sub_source_by_pos(mpctx
, mpctx
->global_sub_pos
);
150 static void update_global_sub_size(MPContext
*mpctx
)
152 struct MPOpts
*opts
= &mpctx
->opts
;
156 // update number of demuxer sub streams
157 for (i
= 0; i
< MAX_S_STREAMS
; i
++)
158 if (mpctx
->d_sub
->demuxer
->s_streams
[i
])
160 if (cnt
> mpctx
->sub_counts
[SUB_SOURCE_DEMUX
])
161 mpctx
->sub_counts
[SUB_SOURCE_DEMUX
] = cnt
;
163 // update global size
164 mpctx
->global_sub_size
= 0;
165 for (i
= 0; i
< SUB_SOURCES
; i
++)
166 mpctx
->global_sub_size
+= mpctx
->sub_counts
[i
];
168 // update global_sub_pos if we auto-detected a demuxer sub
169 if (mpctx
->global_sub_pos
== -1) {
171 if (mpctx
->demuxer
->sub
)
172 sub_id
= mpctx
->demuxer
->sub
->id
;
174 sub_id
= opts
->sub_id
;
175 if (sub_id
>= 0 && sub_id
< mpctx
->sub_counts
[SUB_SOURCE_DEMUX
])
176 mpctx
->global_sub_pos
= sub_pos_by_source(mpctx
, SUB_SOURCE_DEMUX
) +
182 * \brief Log the currently displayed subtitle to a file
184 * Logs the current or last displayed subtitle together with filename
185 * and time information to ~/.mplayer/subtitle_log
187 * Intended purpose is to allow convenient marking of bogus subtitles
188 * which need to be fixed while watching the movie.
191 static void log_sub(struct MPContext
*mpctx
)
196 struct subtitle
*vo_sub_last
= mpctx
->vo_sub_last
;
198 if (mpctx
->subdata
== NULL
|| vo_sub_last
== NULL
)
200 fname
= get_path("subtitle_log");
201 f
= fopen(fname
, "a");
204 fprintf(f
, "----------------------------------------------------------\n");
205 if (mpctx
->subdata
->sub_uses_time
) {
207 "N: %s S: %02ld:%02ld:%02ld.%02ld E: %02ld:%02ld:%02ld.%02ld\n",
208 mpctx
->filename
, vo_sub_last
->start
/ 360000,
209 (vo_sub_last
->start
/ 6000) % 60,
210 (vo_sub_last
->start
/ 100) % 60, vo_sub_last
->start
% 100,
211 vo_sub_last
->end
/ 360000, (vo_sub_last
->end
/ 6000) % 60,
212 (vo_sub_last
->end
/ 100) % 60, vo_sub_last
->end
% 100);
214 fprintf(f
, "N: %s S: %ld E: %ld\n", mpctx
->filename
,
215 vo_sub_last
->start
, vo_sub_last
->end
);
217 for (i
= 0; i
< vo_sub_last
->lines
; i
++) {
218 fprintf(f
, "%s\n", vo_sub_last
->text
[i
]);
224 /// \defgroup Properties
227 /// \defgroup GeneralProperties General properties
228 /// \ingroup Properties
231 static int mp_property_generic_option(struct m_option
*prop
, int action
,
232 void *arg
, MPContext
*mpctx
)
234 char *optname
= prop
->priv
;
235 const struct m_option
*opt
= m_config_get_option(mpctx
->mconfig
, optname
);
236 void *valptr
= m_option_get_ptr(opt
, &mpctx
->opts
);
239 case M_PROPERTY_GET_TYPE
:
240 *(const struct m_option
**)arg
= opt
;
241 return M_PROPERTY_OK
;
243 m_option_copy(opt
, arg
, valptr
);
244 return M_PROPERTY_OK
;
246 m_option_copy(opt
, valptr
, arg
);
247 return M_PROPERTY_OK
;
248 case M_PROPERTY_STEP_UP
:
249 if (opt
->type
== &m_option_type_choice
) {
250 int v
= *(int *) valptr
;
252 struct m_opt_choice_alternatives
*alt
;
253 for (alt
= opt
->priv
; alt
->name
; alt
++)
254 if ((unsigned) alt
->value
- v
- 1 < (unsigned) best
- v
- 1)
256 *(int *) valptr
= best
;
257 return M_PROPERTY_OK
;
261 return M_PROPERTY_NOT_IMPLEMENTED
;
265 static int mp_property_osdlevel(m_option_t
*prop
, int action
, void *arg
,
268 return m_property_choice(prop
, action
, arg
, &mpctx
->opts
.osd_level
);
272 static int mp_property_loop(m_option_t
*prop
, int action
, void *arg
,
275 struct MPOpts
*opts
= &mpctx
->opts
;
277 case M_PROPERTY_PRINT
:
278 if (!arg
) return M_PROPERTY_ERROR
;
279 if (opts
->loop_times
< 0)
280 *(char**)arg
= strdup("off");
281 else if (opts
->loop_times
== 0)
282 *(char**)arg
= strdup("inf");
285 return M_PROPERTY_OK
;
287 return m_property_int_range(prop
, action
, arg
, &opts
->loop_times
);
290 /// Playback speed (RW)
291 static int mp_property_playback_speed(m_option_t
*prop
, int action
,
292 void *arg
, MPContext
*mpctx
)
294 struct MPOpts
*opts
= &mpctx
->opts
;
298 return M_PROPERTY_ERROR
;
299 M_PROPERTY_CLAMP(prop
, *(float *) arg
);
300 opts
->playback_speed
= *(float *) arg
;
301 reinit_audio_chain(mpctx
);
302 return M_PROPERTY_OK
;
303 case M_PROPERTY_STEP_UP
:
304 case M_PROPERTY_STEP_DOWN
:
305 opts
->playback_speed
+= (arg
? *(float *) arg
: 0.1) *
306 (action
== M_PROPERTY_STEP_DOWN
? -1 : 1);
307 M_PROPERTY_CLAMP(prop
, opts
->playback_speed
);
308 reinit_audio_chain(mpctx
);
309 return M_PROPERTY_OK
;
311 return m_property_float_range(prop
, action
, arg
, &opts
->playback_speed
);
314 /// filename with path (RO)
315 static int mp_property_path(m_option_t
*prop
, int action
, void *arg
,
318 return m_property_string_ro(prop
, action
, arg
, mpctx
->filename
);
321 /// filename without path (RO)
322 static int mp_property_filename(m_option_t
*prop
, int action
, void *arg
,
326 if (!mpctx
->filename
)
327 return M_PROPERTY_UNAVAILABLE
;
328 f
= (char *)mp_basename(mpctx
->filename
);
331 return m_property_string_ro(prop
, action
, arg
, f
);
334 /// Demuxer name (RO)
335 static int mp_property_demuxer(m_option_t
*prop
, int action
, void *arg
,
339 return M_PROPERTY_UNAVAILABLE
;
340 return m_property_string_ro(prop
, action
, arg
,
341 (char *) mpctx
->demuxer
->desc
->name
);
344 /// Position in the stream (RW)
345 static int mp_property_stream_pos(m_option_t
*prop
, int action
, void *arg
,
348 if (!mpctx
->demuxer
|| !mpctx
->demuxer
->stream
)
349 return M_PROPERTY_UNAVAILABLE
;
351 return M_PROPERTY_ERROR
;
354 *(off_t
*) arg
= stream_tell(mpctx
->demuxer
->stream
);
355 return M_PROPERTY_OK
;
357 M_PROPERTY_CLAMP(prop
, *(off_t
*) arg
);
358 stream_seek(mpctx
->demuxer
->stream
, *(off_t
*) arg
);
359 return M_PROPERTY_OK
;
361 return M_PROPERTY_NOT_IMPLEMENTED
;
364 /// Stream start offset (RO)
365 static int mp_property_stream_start(m_option_t
*prop
, int action
,
366 void *arg
, MPContext
*mpctx
)
368 if (!mpctx
->demuxer
|| !mpctx
->demuxer
->stream
)
369 return M_PROPERTY_UNAVAILABLE
;
372 *(off_t
*) arg
= mpctx
->demuxer
->stream
->start_pos
;
373 return M_PROPERTY_OK
;
375 return M_PROPERTY_NOT_IMPLEMENTED
;
378 /// Stream end offset (RO)
379 static int mp_property_stream_end(m_option_t
*prop
, int action
, void *arg
,
382 if (!mpctx
->demuxer
|| !mpctx
->demuxer
->stream
)
383 return M_PROPERTY_UNAVAILABLE
;
386 *(off_t
*) arg
= mpctx
->demuxer
->stream
->end_pos
;
387 return M_PROPERTY_OK
;
389 return M_PROPERTY_NOT_IMPLEMENTED
;
392 /// Stream length (RO)
393 static int mp_property_stream_length(m_option_t
*prop
, int action
,
394 void *arg
, MPContext
*mpctx
)
396 if (!mpctx
->demuxer
|| !mpctx
->demuxer
->stream
)
397 return M_PROPERTY_UNAVAILABLE
;
401 mpctx
->demuxer
->stream
->end_pos
- mpctx
->demuxer
->stream
->start_pos
;
402 return M_PROPERTY_OK
;
404 return M_PROPERTY_NOT_IMPLEMENTED
;
407 /// Current stream position in seconds (RO)
408 static int mp_property_stream_time_pos(m_option_t
*prop
, int action
,
409 void *arg
, MPContext
*mpctx
)
411 if (!mpctx
->demuxer
|| mpctx
->demuxer
->stream_pts
== MP_NOPTS_VALUE
)
412 return M_PROPERTY_UNAVAILABLE
;
414 return m_property_time_ro(prop
, action
, arg
, mpctx
->demuxer
->stream_pts
);
418 /// Media length in seconds (RO)
419 static int mp_property_length(m_option_t
*prop
, int action
, void *arg
,
424 if (!mpctx
->demuxer
||
425 !(int) (len
= get_time_length(mpctx
)))
426 return M_PROPERTY_UNAVAILABLE
;
428 return m_property_time_ro(prop
, action
, arg
, len
);
431 /// Current position in percent (RW)
432 static int mp_property_percent_pos(m_option_t
*prop
, int action
,
433 void *arg
, MPContext
*mpctx
) {
437 return M_PROPERTY_UNAVAILABLE
;
441 if(!arg
) return M_PROPERTY_ERROR
;
442 M_PROPERTY_CLAMP(prop
, *(int*)arg
);
445 case M_PROPERTY_STEP_UP
:
446 case M_PROPERTY_STEP_DOWN
:
447 pos
= get_percent_pos(mpctx
);
448 pos
+= (arg
? *(int*)arg
: 10) *
449 (action
== M_PROPERTY_STEP_UP
? 1 : -1);
450 M_PROPERTY_CLAMP(prop
, pos
);
453 return m_property_int_ro(prop
, action
, arg
, get_percent_pos(mpctx
));
456 queue_seek(mpctx
, MPSEEK_FACTOR
, pos
/ 100.0, 0);
457 return M_PROPERTY_OK
;
460 /// Current position in seconds (RW)
461 static int mp_property_time_pos(m_option_t
*prop
, int action
,
462 void *arg
, MPContext
*mpctx
) {
463 if (!(mpctx
->sh_video
|| mpctx
->sh_audio
))
464 return M_PROPERTY_UNAVAILABLE
;
468 if(!arg
) return M_PROPERTY_ERROR
;
469 M_PROPERTY_CLAMP(prop
, *(double*)arg
);
470 queue_seek(mpctx
, MPSEEK_ABSOLUTE
, *(double*)arg
, 0);
471 return M_PROPERTY_OK
;
472 case M_PROPERTY_STEP_UP
:
473 case M_PROPERTY_STEP_DOWN
:
474 queue_seek(mpctx
, MPSEEK_RELATIVE
, (arg
? *(double*)arg
: 10.0) *
475 (action
== M_PROPERTY_STEP_UP
? 1.0 : -1.0), 0);
476 return M_PROPERTY_OK
;
478 return m_property_time_ro(prop
, action
, arg
, get_current_time(mpctx
));
481 /// Current chapter (RW)
482 static int mp_property_chapter(m_option_t
*prop
, int action
, void *arg
,
485 struct MPOpts
*opts
= &mpctx
->opts
;
488 char *chapter_name
= NULL
;
491 chapter
= get_current_chapter(mpctx
);
493 return M_PROPERTY_UNAVAILABLE
;
498 return M_PROPERTY_ERROR
;
499 *(int *) arg
= chapter
;
500 return M_PROPERTY_OK
;
501 case M_PROPERTY_PRINT
: {
503 return M_PROPERTY_ERROR
;
504 chapter_name
= chapter_display_name(mpctx
, chapter
);
506 return M_PROPERTY_UNAVAILABLE
;
507 *(char **) arg
= chapter_name
;
508 return M_PROPERTY_OK
;
512 return M_PROPERTY_ERROR
;
513 M_PROPERTY_CLAMP(prop
, *(int*)arg
);
514 step_all
= *(int *)arg
- chapter
;
517 case M_PROPERTY_STEP_UP
:
518 case M_PROPERTY_STEP_DOWN
: {
519 step_all
= (arg
&& *(int*)arg
!= 0 ? *(int*)arg
: 1)
520 * (action
== M_PROPERTY_STEP_UP
? 1 : -1);
527 return M_PROPERTY_NOT_IMPLEMENTED
;
531 queue_seek(mpctx
, MPSEEK_NONE
, 0, 0);
532 chapter
= seek_chapter(mpctx
, chapter
, &next_pts
, &chapter_name
);
535 queue_seek(mpctx
, MPSEEK_ABSOLUTE
, next_pts
, 0);
537 set_osd_tmsg(OSD_MSG_TEXT
, 1, opts
->osd_duration
,
538 "Chapter: (%d) %s", chapter
+ 1, chapter_name
);
539 } else if (step_all
> 0)
540 queue_seek(mpctx
, MPSEEK_RELATIVE
, 1000000000, 0);
542 set_osd_tmsg(OSD_MSG_TEXT
, 1, opts
->osd_duration
,
543 "Chapter: (%d) %s", 0, mp_gtext("unknown"));
544 talloc_free(chapter_name
);
545 return M_PROPERTY_OK
;
548 /// Number of chapters in file
549 static int mp_property_chapters(m_option_t
*prop
, int action
, void *arg
,
553 return M_PROPERTY_UNAVAILABLE
;
554 if (mpctx
->demuxer
->num_chapters
== 0)
555 stream_control(mpctx
->demuxer
->stream
, STREAM_CTRL_GET_NUM_CHAPTERS
, &mpctx
->demuxer
->num_chapters
);
556 return m_property_int_ro(prop
, action
, arg
, mpctx
->demuxer
->num_chapters
);
559 /// Current dvd angle (RW)
560 static int mp_property_angle(m_option_t
*prop
, int action
, void *arg
,
563 struct MPOpts
*opts
= &mpctx
->opts
;
566 char *angle_name
= NULL
;
569 angle
= demuxer_get_current_angle(mpctx
->demuxer
);
571 return M_PROPERTY_UNAVAILABLE
;
572 angles
= demuxer_angles_count(mpctx
->demuxer
);
574 return M_PROPERTY_UNAVAILABLE
;
579 return M_PROPERTY_ERROR
;
580 *(int *) arg
= angle
;
581 return M_PROPERTY_OK
;
582 case M_PROPERTY_PRINT
: {
584 return M_PROPERTY_ERROR
;
585 angle_name
= calloc(1, 64);
587 return M_PROPERTY_UNAVAILABLE
;
588 snprintf(angle_name
, 64, "%d/%d", angle
, angles
);
589 *(char **) arg
= angle_name
;
590 return M_PROPERTY_OK
;
594 return M_PROPERTY_ERROR
;
596 M_PROPERTY_CLAMP(prop
, angle
);
598 case M_PROPERTY_STEP_UP
:
599 case M_PROPERTY_STEP_DOWN
: {
605 step
*= (action
== M_PROPERTY_STEP_UP
? 1 : -1);
607 if (angle
< 1) //cycle
609 else if (angle
> angles
)
614 return M_PROPERTY_NOT_IMPLEMENTED
;
616 angle
= demuxer_set_angle(mpctx
->demuxer
, angle
);
618 struct sh_video
*sh_video
= mpctx
->demuxer
->video
->sh
;
620 resync_video_stream(sh_video
);
622 struct sh_audio
*sh_audio
= mpctx
->demuxer
->audio
->sh
;
624 resync_audio_stream(sh_audio
);
627 set_osd_tmsg(OSD_MSG_TEXT
, 1, opts
->osd_duration
,
628 "Angle: %d/%d", angle
, angles
);
630 return M_PROPERTY_OK
;
633 /// Demuxer meta data
634 static int mp_property_metadata(m_option_t
*prop
, int action
, void *arg
,
636 m_property_action_t
* ka
;
638 static const m_option_t key_type
=
639 { "metadata", NULL
, CONF_TYPE_STRING
, 0, 0, 0, NULL
};
641 return M_PROPERTY_UNAVAILABLE
;
645 if(!arg
) return M_PROPERTY_ERROR
;
646 *(char***)arg
= mpctx
->demuxer
->info
;
647 return M_PROPERTY_OK
;
648 case M_PROPERTY_KEY_ACTION
:
649 if(!arg
) return M_PROPERTY_ERROR
;
651 if(!(meta
= demux_info_get(mpctx
->demuxer
,ka
->key
)))
652 return M_PROPERTY_UNKNOWN
;
655 if(!ka
->arg
) return M_PROPERTY_ERROR
;
656 *(char**)ka
->arg
= meta
;
657 return M_PROPERTY_OK
;
658 case M_PROPERTY_GET_TYPE
:
659 if(!ka
->arg
) return M_PROPERTY_ERROR
;
660 *(const m_option_t
**)ka
->arg
= &key_type
;
661 return M_PROPERTY_OK
;
664 return M_PROPERTY_NOT_IMPLEMENTED
;
667 static int mp_property_pause(m_option_t
*prop
, int action
, void *arg
,
670 MPContext
*mpctx
= ctx
;
675 return M_PROPERTY_ERROR
;
676 if (mpctx
->paused
== (bool)*(int *) arg
)
677 return M_PROPERTY_OK
;
678 case M_PROPERTY_STEP_UP
:
679 case M_PROPERTY_STEP_DOWN
:
681 unpause_player(mpctx
);
682 mpctx
->osd_function
= OSD_PLAY
;
686 mpctx
->osd_function
= OSD_PAUSE
;
688 return M_PROPERTY_OK
;
690 return m_property_flag(prop
, action
, arg
, &mpctx
->paused
);
697 /// \defgroup AudioProperties Audio properties
698 /// \ingroup Properties
702 static int mp_property_volume(m_option_t
*prop
, int action
, void *arg
,
706 if (!mpctx
->sh_audio
)
707 return M_PROPERTY_UNAVAILABLE
;
712 return M_PROPERTY_ERROR
;
713 mixer_getbothvolume(&mpctx
->mixer
, arg
);
714 return M_PROPERTY_OK
;
715 case M_PROPERTY_PRINT
:{
718 return M_PROPERTY_ERROR
;
719 mixer_getbothvolume(&mpctx
->mixer
, &vol
);
720 return m_property_float_range(prop
, action
, arg
, &vol
);
722 case M_PROPERTY_STEP_UP
:
723 case M_PROPERTY_STEP_DOWN
:
727 return M_PROPERTY_NOT_IMPLEMENTED
;
730 if (mpctx
->edl_muted
)
731 return M_PROPERTY_DISABLED
;
732 mpctx
->user_muted
= 0;
737 return M_PROPERTY_ERROR
;
738 M_PROPERTY_CLAMP(prop
, *(float *) arg
);
739 mixer_setvolume(&mpctx
->mixer
, *(float *) arg
, *(float *) arg
);
740 return M_PROPERTY_OK
;
741 case M_PROPERTY_STEP_UP
:
742 if (arg
&& *(float *) arg
<= 0)
743 mixer_decvolume(&mpctx
->mixer
);
745 mixer_incvolume(&mpctx
->mixer
);
746 return M_PROPERTY_OK
;
747 case M_PROPERTY_STEP_DOWN
:
748 if (arg
&& *(float *) arg
<= 0)
749 mixer_incvolume(&mpctx
->mixer
);
751 mixer_decvolume(&mpctx
->mixer
);
752 return M_PROPERTY_OK
;
754 return M_PROPERTY_NOT_IMPLEMENTED
;
758 static int mp_property_mute(m_option_t
*prop
, int action
, void *arg
,
762 if (!mpctx
->sh_audio
)
763 return M_PROPERTY_UNAVAILABLE
;
767 if (mpctx
->edl_muted
)
768 return M_PROPERTY_DISABLED
;
770 return M_PROPERTY_ERROR
;
771 if ((!!*(int *) arg
) != mpctx
->mixer
.muted
)
772 mixer_mute(&mpctx
->mixer
);
773 mpctx
->user_muted
= mpctx
->mixer
.muted
;
774 return M_PROPERTY_OK
;
775 case M_PROPERTY_STEP_UP
:
776 case M_PROPERTY_STEP_DOWN
:
777 if (mpctx
->edl_muted
)
778 return M_PROPERTY_DISABLED
;
779 mixer_mute(&mpctx
->mixer
);
780 mpctx
->user_muted
= mpctx
->mixer
.muted
;
781 return M_PROPERTY_OK
;
782 case M_PROPERTY_PRINT
:
784 return M_PROPERTY_ERROR
;
785 if (mpctx
->edl_muted
) {
786 *(char **) arg
= strdup(mp_gtext("enabled (EDL)"));
787 return M_PROPERTY_OK
;
790 return m_property_flag(prop
, action
, arg
, &mpctx
->mixer
.muted
);
796 static int mp_property_audio_delay(m_option_t
*prop
, int action
,
797 void *arg
, MPContext
*mpctx
)
799 if (!(mpctx
->sh_audio
&& mpctx
->sh_video
))
800 return M_PROPERTY_UNAVAILABLE
;
803 case M_PROPERTY_STEP_UP
:
804 case M_PROPERTY_STEP_DOWN
: {
806 float delay
= audio_delay
;
807 ret
= m_property_delay(prop
, action
, arg
, &audio_delay
);
808 if (ret
!= M_PROPERTY_OK
)
811 mpctx
->delay
-= audio_delay
- delay
;
813 return M_PROPERTY_OK
;
815 return m_property_delay(prop
, action
, arg
, &audio_delay
);
819 /// Audio codec tag (RO)
820 static int mp_property_audio_format(m_option_t
*prop
, int action
,
821 void *arg
, MPContext
*mpctx
)
823 if (!mpctx
->sh_audio
)
824 return M_PROPERTY_UNAVAILABLE
;
825 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_audio
->format
);
828 /// Audio codec name (RO)
829 static int mp_property_audio_codec(m_option_t
*prop
, int action
,
830 void *arg
, MPContext
*mpctx
)
832 if (!mpctx
->sh_audio
|| !mpctx
->sh_audio
->codec
)
833 return M_PROPERTY_UNAVAILABLE
;
834 return m_property_string_ro(prop
, action
, arg
, mpctx
->sh_audio
->codec
->name
);
837 /// Audio bitrate (RO)
838 static int mp_property_audio_bitrate(m_option_t
*prop
, int action
,
839 void *arg
, MPContext
*mpctx
)
841 if (!mpctx
->sh_audio
)
842 return M_PROPERTY_UNAVAILABLE
;
843 return m_property_bitrate(prop
, action
, arg
, mpctx
->sh_audio
->i_bps
);
847 static int mp_property_samplerate(m_option_t
*prop
, int action
, void *arg
,
850 if (!mpctx
->sh_audio
)
851 return M_PROPERTY_UNAVAILABLE
;
853 case M_PROPERTY_PRINT
:
854 if(!arg
) return M_PROPERTY_ERROR
;
855 *(char**)arg
= malloc(16);
856 sprintf(*(char**)arg
,"%d kHz",mpctx
->sh_audio
->samplerate
/1000);
857 return M_PROPERTY_OK
;
859 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_audio
->samplerate
);
862 /// Number of channels (RO)
863 static int mp_property_channels(m_option_t
*prop
, int action
, void *arg
,
866 if (!mpctx
->sh_audio
)
867 return M_PROPERTY_UNAVAILABLE
;
869 case M_PROPERTY_PRINT
:
871 return M_PROPERTY_ERROR
;
872 switch (mpctx
->sh_audio
->channels
) {
874 *(char **) arg
= strdup("mono");
877 *(char **) arg
= strdup("stereo");
880 *(char **) arg
= malloc(32);
881 sprintf(*(char **) arg
, "%d channels", mpctx
->sh_audio
->channels
);
883 return M_PROPERTY_OK
;
885 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_audio
->channels
);
889 static int mp_property_balance(m_option_t
*prop
, int action
, void *arg
,
894 if (!mpctx
->sh_audio
|| mpctx
->sh_audio
->channels
< 2)
895 return M_PROPERTY_UNAVAILABLE
;
900 return M_PROPERTY_ERROR
;
901 mixer_getbalance(&mpctx
->mixer
, arg
);
902 return M_PROPERTY_OK
;
903 case M_PROPERTY_PRINT
: {
906 return M_PROPERTY_ERROR
;
907 mixer_getbalance(&mpctx
->mixer
, &bal
);
909 *str
= strdup("center");
910 else if (bal
== -1.f
)
911 *str
= strdup("left only");
913 *str
= strdup("right only");
915 unsigned right
= (bal
+ 1.f
) / 2.f
* 100.f
;
916 *str
= malloc(sizeof("left xxx%, right xxx%"));
917 sprintf(*str
, "left %d%%, right %d%%", 100 - right
, right
);
919 return M_PROPERTY_OK
;
921 case M_PROPERTY_STEP_UP
:
922 case M_PROPERTY_STEP_DOWN
:
923 mixer_getbalance(&mpctx
->mixer
, &bal
);
924 bal
+= (arg
? *(float*)arg
: .1f
) *
925 (action
== M_PROPERTY_STEP_UP
? 1.f
: -1.f
);
926 M_PROPERTY_CLAMP(prop
, bal
);
927 mixer_setbalance(&mpctx
->mixer
, bal
);
928 return M_PROPERTY_OK
;
931 return M_PROPERTY_ERROR
;
932 M_PROPERTY_CLAMP(prop
, *(float*)arg
);
933 mixer_setbalance(&mpctx
->mixer
, *(float*)arg
);
934 return M_PROPERTY_OK
;
936 return M_PROPERTY_NOT_IMPLEMENTED
;
939 /// Selected audio id (RW)
940 static int mp_property_audio(m_option_t
*prop
, int action
, void *arg
,
944 if (!mpctx
->demuxer
|| !mpctx
->d_audio
)
945 return M_PROPERTY_UNAVAILABLE
;
946 current_id
= mpctx
->sh_audio
? mpctx
->sh_audio
->aid
: -2;
951 return M_PROPERTY_ERROR
;
952 *(int *) arg
= current_id
;
953 return M_PROPERTY_OK
;
954 case M_PROPERTY_PRINT
:
956 return M_PROPERTY_ERROR
;
959 *(char **) arg
= strdup(mp_gtext("disabled"));
962 strncpy(lang
, mp_gtext("unknown"), sizeof(lang
));
963 sh_audio_t
* sh
= mpctx
->sh_audio
;
965 av_strlcpy(lang
, sh
->lang
, 40);
966 #ifdef CONFIG_DVDREAD
967 else if (mpctx
->stream
->type
== STREAMTYPE_DVD
) {
968 int code
= dvd_lang_from_aid(mpctx
->stream
, current_id
);
978 else if (mpctx
->stream
->type
== STREAMTYPE_DVDNAV
)
979 mp_dvdnav_lang_from_aid(mpctx
->stream
, current_id
, lang
);
981 *(char **) arg
= malloc(64);
982 snprintf(*(char **) arg
, 64, "(%d) %s", current_id
, lang
);
984 return M_PROPERTY_OK
;
986 case M_PROPERTY_STEP_UP
:
988 if (action
== M_PROPERTY_SET
&& arg
)
989 tmp
= *((int *) arg
);
992 int new_id
= demuxer_switch_audio(mpctx
->d_audio
->demuxer
, tmp
);
993 if (new_id
!= current_id
)
994 uninit_player(mpctx
, INITIALIZED_AO
| INITIALIZED_ACODEC
);
995 if (new_id
!= current_id
&& new_id
>= 0) {
997 sh2
= mpctx
->d_audio
->demuxer
->a_streams
[mpctx
->d_audio
->id
];
998 sh2
->ds
= mpctx
->d_audio
;
999 mpctx
->sh_audio
= sh2
;
1000 reinit_audio_chain(mpctx
);
1002 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_AUDIO_TRACK=%d\n", new_id
);
1003 return M_PROPERTY_OK
;
1005 return M_PROPERTY_NOT_IMPLEMENTED
;
1010 /// Selected video id (RW)
1011 static int mp_property_video(m_option_t
*prop
, int action
, void *arg
,
1014 struct MPOpts
*opts
= &mpctx
->opts
;
1015 int current_id
, tmp
;
1016 if (!mpctx
->demuxer
|| !mpctx
->d_video
)
1017 return M_PROPERTY_UNAVAILABLE
;
1018 current_id
= mpctx
->sh_video
? mpctx
->sh_video
->vid
: -2;
1021 case M_PROPERTY_GET
:
1023 return M_PROPERTY_ERROR
;
1024 *(int *) arg
= current_id
;
1025 return M_PROPERTY_OK
;
1026 case M_PROPERTY_PRINT
:
1028 return M_PROPERTY_ERROR
;
1031 *(char **) arg
= strdup(mp_gtext("disabled"));
1034 strncpy(lang
, mp_gtext("unknown"), sizeof(lang
));
1035 *(char **) arg
= malloc(64);
1036 snprintf(*(char **) arg
, 64, "(%d) %s", current_id
, lang
);
1038 return M_PROPERTY_OK
;
1040 case M_PROPERTY_STEP_UP
:
1041 case M_PROPERTY_SET
:
1042 if (action
== M_PROPERTY_SET
&& arg
)
1043 tmp
= *((int *) arg
);
1046 int new_id
= demuxer_switch_video(mpctx
->d_video
->demuxer
, tmp
);
1047 if (new_id
!= current_id
)
1048 uninit_player(mpctx
, INITIALIZED_VCODEC
|
1049 (opts
->fixed_vo
&& new_id
>= 0 ? 0 : INITIALIZED_VO
));
1050 if (new_id
!= current_id
&& new_id
>= 0) {
1052 sh2
= mpctx
->d_video
->demuxer
->v_streams
[mpctx
->d_video
->id
];
1053 sh2
->ds
= mpctx
->d_video
;
1054 mpctx
->sh_video
= sh2
;
1055 reinit_video_chain(mpctx
);
1057 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VIDEO_TRACK=%d\n", new_id
);
1058 return M_PROPERTY_OK
;
1061 return M_PROPERTY_NOT_IMPLEMENTED
;
1065 static int mp_property_program(m_option_t
*prop
, int action
, void *arg
,
1068 demux_program_t prog
;
1071 case M_PROPERTY_STEP_UP
:
1072 case M_PROPERTY_SET
:
1073 if (action
== M_PROPERTY_SET
&& arg
)
1074 prog
.progid
= *((int *) arg
);
1078 (mpctx
->demuxer
, DEMUXER_CTRL_IDENTIFY_PROGRAM
,
1079 &prog
) == DEMUXER_CTRL_NOTIMPL
)
1080 return M_PROPERTY_ERROR
;
1082 if (prog
.aid
< 0 && prog
.vid
< 0) {
1083 mp_msg(MSGT_CPLAYER
, MSGL_ERR
, "Selected program contains no audio or video streams!\n");
1084 return M_PROPERTY_ERROR
;
1086 mp_property_do("switch_audio", M_PROPERTY_SET
, &prog
.aid
, mpctx
);
1087 mp_property_do("switch_video", M_PROPERTY_SET
, &prog
.vid
, mpctx
);
1088 return M_PROPERTY_OK
;
1091 return M_PROPERTY_NOT_IMPLEMENTED
;
1097 /// \defgroup VideoProperties Video properties
1098 /// \ingroup Properties
1101 /// Fullscreen state (RW)
1102 static int mp_property_fullscreen(m_option_t
*prop
, int action
, void *arg
,
1106 if (!mpctx
->video_out
)
1107 return M_PROPERTY_UNAVAILABLE
;
1110 case M_PROPERTY_SET
:
1112 return M_PROPERTY_ERROR
;
1113 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
1114 if (vo_fs
== !!*(int *) arg
)
1115 return M_PROPERTY_OK
;
1116 case M_PROPERTY_STEP_UP
:
1117 case M_PROPERTY_STEP_DOWN
:
1118 if (mpctx
->video_out
->config_ok
)
1119 vo_control(mpctx
->video_out
, VOCTRL_FULLSCREEN
, 0);
1120 mpctx
->opts
.fullscreen
= vo_fs
;
1121 return M_PROPERTY_OK
;
1123 return m_property_flag(prop
, action
, arg
, &vo_fs
);
1127 static int mp_property_deinterlace(m_option_t
*prop
, int action
,
1128 void *arg
, MPContext
*mpctx
)
1132 if (!mpctx
->sh_video
|| !mpctx
->sh_video
->vfilter
)
1133 return M_PROPERTY_UNAVAILABLE
;
1134 vf
= mpctx
->sh_video
->vfilter
;
1136 case M_PROPERTY_GET
:
1138 return M_PROPERTY_ERROR
;
1139 vf
->control(vf
, VFCTRL_GET_DEINTERLACE
, arg
);
1140 return M_PROPERTY_OK
;
1141 case M_PROPERTY_SET
:
1143 return M_PROPERTY_ERROR
;
1144 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
1145 vf
->control(vf
, VFCTRL_SET_DEINTERLACE
, arg
);
1146 return M_PROPERTY_OK
;
1147 case M_PROPERTY_STEP_UP
:
1148 case M_PROPERTY_STEP_DOWN
:
1149 vf
->control(vf
, VFCTRL_GET_DEINTERLACE
, &deinterlace
);
1150 deinterlace
= !deinterlace
;
1151 vf
->control(vf
, VFCTRL_SET_DEINTERLACE
, &deinterlace
);
1152 return M_PROPERTY_OK
;
1155 vf
->control(vf
, VFCTRL_GET_DEINTERLACE
, &value
);
1156 return m_property_flag_ro(prop
, action
, arg
, value
);
1159 static int mp_property_yuv_colorspace(m_option_t
*prop
, int action
,
1160 void *arg
, MPContext
*mpctx
)
1162 if (!mpctx
->sh_video
|| !mpctx
->sh_video
->vfilter
)
1163 return M_PROPERTY_UNAVAILABLE
;
1165 struct vf_instance
*vf
= mpctx
->sh_video
->vfilter
;
1168 case M_PROPERTY_GET
:
1170 return M_PROPERTY_ERROR
;
1171 if (vf
->control(vf
, VFCTRL_GET_YUV_COLORSPACE
, arg
) != true)
1172 return M_PROPERTY_UNAVAILABLE
;
1173 return M_PROPERTY_OK
;
1174 case M_PROPERTY_PRINT
:
1176 return M_PROPERTY_ERROR
;
1177 if (vf
->control(vf
, VFCTRL_GET_YUV_COLORSPACE
, &colorspace
) != true)
1178 return M_PROPERTY_UNAVAILABLE
;
1179 char * const names
[] = {"BT.601 (SD)", "BT.709 (HD)", "SMPTE-240M"};
1180 if (colorspace
< 0 || colorspace
>= sizeof(names
) / sizeof(names
[0]))
1181 *(char **)arg
= strdup("Unknown");
1183 *(char**)arg
= strdup(names
[colorspace
]);
1184 return M_PROPERTY_OK
;
1185 case M_PROPERTY_SET
:
1187 return M_PROPERTY_ERROR
;
1188 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
1189 vf
->control(vf
, VFCTRL_SET_YUV_COLORSPACE
, arg
);
1190 return M_PROPERTY_OK
;
1191 case M_PROPERTY_STEP_UP
:;
1192 if (vf
->control(vf
, VFCTRL_GET_YUV_COLORSPACE
, &colorspace
) != true)
1193 return M_PROPERTY_UNAVAILABLE
;
1195 vf
->control(vf
, VFCTRL_SET_YUV_COLORSPACE
, &colorspace
);
1196 return M_PROPERTY_OK
;
1198 return M_PROPERTY_NOT_IMPLEMENTED
;
1201 static int mp_property_capture(m_option_t
*prop
, int action
,
1202 void *arg
, MPContext
*mpctx
)
1204 struct MPOpts
*opts
= &mpctx
->opts
;
1207 return M_PROPERTY_UNAVAILABLE
;
1209 if (!opts
->capture_dump
) {
1210 mp_tmsg(MSGT_GLOBAL
, MSGL_ERR
,
1211 "Capturing not enabled (forgot -capture parameter?)\n");
1212 return M_PROPERTY_ERROR
;
1215 int capturing
= !!mpctx
->stream
->capture_file
;
1217 int ret
= m_property_flag(prop
, action
, arg
, &capturing
);
1218 if (ret
== M_PROPERTY_OK
&& capturing
!= !!mpctx
->stream
->capture_file
) {
1220 mpctx
->stream
->capture_file
= fopen(opts
->stream_dump_name
, "wb");
1221 if (!mpctx
->stream
->capture_file
) {
1222 mp_tmsg(MSGT_GLOBAL
, MSGL_ERR
,
1223 "Error opening capture file: %s\n", strerror(errno
));
1224 ret
= M_PROPERTY_ERROR
;
1227 fclose(mpctx
->stream
->capture_file
);
1228 mpctx
->stream
->capture_file
= NULL
;
1236 static int mp_property_panscan(m_option_t
*prop
, int action
, void *arg
,
1240 if (!mpctx
->video_out
1241 || vo_control(mpctx
->video_out
, VOCTRL_GET_PANSCAN
, NULL
) != VO_TRUE
)
1242 return M_PROPERTY_UNAVAILABLE
;
1245 case M_PROPERTY_SET
:
1247 return M_PROPERTY_ERROR
;
1248 M_PROPERTY_CLAMP(prop
, *(float *) arg
);
1249 vo_panscan
= *(float *) arg
;
1250 vo_control(mpctx
->video_out
, VOCTRL_SET_PANSCAN
, NULL
);
1251 return M_PROPERTY_OK
;
1252 case M_PROPERTY_STEP_UP
:
1253 case M_PROPERTY_STEP_DOWN
:
1254 vo_panscan
+= (arg
? *(float *) arg
: 0.1) *
1255 (action
== M_PROPERTY_STEP_DOWN
? -1 : 1);
1258 else if (vo_panscan
< 0)
1260 vo_control(mpctx
->video_out
, VOCTRL_SET_PANSCAN
, NULL
);
1261 return M_PROPERTY_OK
;
1263 return m_property_float_range(prop
, action
, arg
, &vo_panscan
);
1267 /// Helper to set vo flags.
1268 /** \ingroup PropertyImplHelper
1270 static int mp_property_vo_flag(m_option_t
*prop
, int action
, void *arg
,
1271 int vo_ctrl
, int *vo_var
, MPContext
*mpctx
)
1274 if (!mpctx
->video_out
)
1275 return M_PROPERTY_UNAVAILABLE
;
1278 case M_PROPERTY_SET
:
1280 return M_PROPERTY_ERROR
;
1281 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
1282 if (*vo_var
== !!*(int *) arg
)
1283 return M_PROPERTY_OK
;
1284 case M_PROPERTY_STEP_UP
:
1285 case M_PROPERTY_STEP_DOWN
:
1286 if (mpctx
->video_out
->config_ok
)
1287 vo_control(mpctx
->video_out
, vo_ctrl
, 0);
1288 return M_PROPERTY_OK
;
1290 return m_property_flag(prop
, action
, arg
, vo_var
);
1294 /// Window always on top (RW)
1295 static int mp_property_ontop(m_option_t
*prop
, int action
, void *arg
,
1298 return mp_property_vo_flag(prop
, action
, arg
, VOCTRL_ONTOP
,
1299 &mpctx
->opts
.vo_ontop
, mpctx
);
1302 /// Display in the root window (RW)
1303 static int mp_property_rootwin(m_option_t
*prop
, int action
, void *arg
,
1306 return mp_property_vo_flag(prop
, action
, arg
, VOCTRL_ROOTWIN
,
1307 &vo_rootwin
, mpctx
);
1310 /// Show window borders (RW)
1311 static int mp_property_border(m_option_t
*prop
, int action
, void *arg
,
1314 return mp_property_vo_flag(prop
, action
, arg
, VOCTRL_BORDER
,
1318 /// Framedropping state (RW)
1319 static int mp_property_framedropping(m_option_t
*prop
, int action
,
1320 void *arg
, MPContext
*mpctx
)
1323 if (!mpctx
->sh_video
)
1324 return M_PROPERTY_UNAVAILABLE
;
1327 case M_PROPERTY_PRINT
:
1329 return M_PROPERTY_ERROR
;
1330 *(char **) arg
= strdup(frame_dropping
== 1 ? mp_gtext("enabled") :
1331 (frame_dropping
== 2 ? mp_gtext("hard") :
1332 mp_gtext("disabled")));
1333 return M_PROPERTY_OK
;
1335 return m_property_choice(prop
, action
, arg
, &frame_dropping
);
1339 /// Color settings, try to use vf/vo then fall back on TV. (RW)
1340 static int mp_property_gamma(m_option_t
*prop
, int action
, void *arg
,
1343 int *gamma
= (int *)((char *)&mpctx
->opts
+ prop
->offset
);
1346 if (!mpctx
->sh_video
)
1347 return M_PROPERTY_UNAVAILABLE
;
1349 if (gamma
[0] == 1000) {
1351 get_video_colors(mpctx
->sh_video
, prop
->name
, gamma
);
1355 case M_PROPERTY_SET
:
1357 return M_PROPERTY_ERROR
;
1358 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
1359 *gamma
= *(int *) arg
;
1360 r
= set_video_colors(mpctx
->sh_video
, prop
->name
, *gamma
);
1364 case M_PROPERTY_GET
:
1365 if (get_video_colors(mpctx
->sh_video
, prop
->name
, &val
) > 0) {
1367 return M_PROPERTY_ERROR
;
1369 return M_PROPERTY_OK
;
1372 case M_PROPERTY_STEP_UP
:
1373 case M_PROPERTY_STEP_DOWN
:
1374 *gamma
+= (arg
? *(int *) arg
: 1) *
1375 (action
== M_PROPERTY_STEP_DOWN
? -1 : 1);
1376 M_PROPERTY_CLAMP(prop
, *gamma
);
1377 r
= set_video_colors(mpctx
->sh_video
, prop
->name
, *gamma
);
1382 return M_PROPERTY_NOT_IMPLEMENTED
;
1386 if (mpctx
->demuxer
->type
== DEMUXER_TYPE_TV
) {
1387 int l
= strlen(prop
->name
);
1388 char tv_prop
[3 + l
+ 1];
1389 sprintf(tv_prop
, "tv_%s", prop
->name
);
1390 return mp_property_do(tv_prop
, action
, arg
, mpctx
);
1394 return M_PROPERTY_UNAVAILABLE
;
1398 static int mp_property_vsync(m_option_t
*prop
, int action
, void *arg
,
1401 return m_property_flag(prop
, action
, arg
, &vo_vsync
);
1404 /// Video codec tag (RO)
1405 static int mp_property_video_format(m_option_t
*prop
, int action
,
1406 void *arg
, MPContext
*mpctx
)
1409 if (!mpctx
->sh_video
)
1410 return M_PROPERTY_UNAVAILABLE
;
1412 case M_PROPERTY_PRINT
:
1414 return M_PROPERTY_ERROR
;
1415 switch(mpctx
->sh_video
->format
) {
1417 meta
= strdup ("mpeg1"); break;
1419 meta
= strdup ("mpeg2"); break;
1421 meta
= strdup ("mpeg4"); break;
1423 meta
= strdup ("h264"); break;
1425 if(mpctx
->sh_video
->format
>= 0x20202020) {
1427 sprintf (meta
, "%.4s", (char *) &mpctx
->sh_video
->format
);
1430 sprintf (meta
, "0x%08X", mpctx
->sh_video
->format
);
1433 *(char**)arg
= meta
;
1434 return M_PROPERTY_OK
;
1436 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_video
->format
);
1439 /// Video codec name (RO)
1440 static int mp_property_video_codec(m_option_t
*prop
, int action
,
1441 void *arg
, MPContext
*mpctx
)
1443 if (!mpctx
->sh_video
|| !mpctx
->sh_video
->codec
)
1444 return M_PROPERTY_UNAVAILABLE
;
1445 return m_property_string_ro(prop
, action
, arg
, mpctx
->sh_video
->codec
->name
);
1449 /// Video bitrate (RO)
1450 static int mp_property_video_bitrate(m_option_t
*prop
, int action
,
1451 void *arg
, MPContext
*mpctx
)
1453 if (!mpctx
->sh_video
)
1454 return M_PROPERTY_UNAVAILABLE
;
1455 return m_property_bitrate(prop
, action
, arg
, mpctx
->sh_video
->i_bps
);
1458 /// Video display width (RO)
1459 static int mp_property_width(m_option_t
*prop
, int action
, void *arg
,
1462 if (!mpctx
->sh_video
)
1463 return M_PROPERTY_UNAVAILABLE
;
1464 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_video
->disp_w
);
1467 /// Video display height (RO)
1468 static int mp_property_height(m_option_t
*prop
, int action
, void *arg
,
1471 if (!mpctx
->sh_video
)
1472 return M_PROPERTY_UNAVAILABLE
;
1473 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_video
->disp_h
);
1477 static int mp_property_fps(m_option_t
*prop
, int action
, void *arg
,
1480 if (!mpctx
->sh_video
)
1481 return M_PROPERTY_UNAVAILABLE
;
1482 return m_property_float_ro(prop
, action
, arg
, mpctx
->sh_video
->fps
);
1485 /// Video aspect (RO)
1486 static int mp_property_aspect(m_option_t
*prop
, int action
, void *arg
,
1489 if (!mpctx
->sh_video
)
1490 return M_PROPERTY_UNAVAILABLE
;
1491 return m_property_float_ro(prop
, action
, arg
, mpctx
->sh_video
->aspect
);
1496 /// \defgroup SubProprties Subtitles properties
1497 /// \ingroup Properties
1500 /// Text subtitle position (RW)
1501 static int mp_property_sub_pos(m_option_t
*prop
, int action
, void *arg
,
1505 case M_PROPERTY_SET
:
1507 return M_PROPERTY_ERROR
;
1508 case M_PROPERTY_STEP_UP
:
1509 case M_PROPERTY_STEP_DOWN
:
1510 vo_osd_changed(OSDTYPE_SUBTITLE
);
1512 return m_property_int_range(prop
, action
, arg
, &sub_pos
);
1516 /// Selected subtitles (RW)
1517 static int mp_property_sub(m_option_t
*prop
, int action
, void *arg
,
1520 struct MPOpts
*opts
= &mpctx
->opts
;
1521 demux_stream_t
*const d_sub
= mpctx
->d_sub
;
1522 int source
= -1, reset_spu
= 0;
1523 int source_pos
= -1;
1525 update_global_sub_size(mpctx
);
1526 const int global_sub_size
= mpctx
->global_sub_size
;
1528 if (global_sub_size
<= 0)
1529 return M_PROPERTY_UNAVAILABLE
;
1532 case M_PROPERTY_GET
:
1534 return M_PROPERTY_ERROR
;
1535 *(int *) arg
= mpctx
->global_sub_pos
;
1536 return M_PROPERTY_OK
;
1537 case M_PROPERTY_PRINT
:
1539 return M_PROPERTY_ERROR
;
1540 *(char **) arg
= malloc(64);
1541 (*(char **) arg
)[63] = 0;
1542 char *sub_name
= NULL
;
1544 sub_name
= mpctx
->subdata
->filename
;
1546 if (mpctx
->osd
->ass_track
)
1547 sub_name
= mpctx
->osd
->ass_track
->name
;
1549 if (!sub_name
&& mpctx
->subdata
)
1550 sub_name
= mpctx
->subdata
->filename
;
1552 const char *tmp
= mp_basename(sub_name
);
1554 snprintf(*(char **) arg
, 63, "(%d) %s%s",
1555 mpctx
->set_of_sub_pos
+ 1,
1556 strlen(tmp
) < 20 ? "" : "...",
1557 strlen(tmp
) < 20 ? tmp
: tmp
+ strlen(tmp
) - 19);
1558 return M_PROPERTY_OK
;
1560 #ifdef CONFIG_DVDNAV
1561 if (mpctx
->stream
->type
== STREAMTYPE_DVDNAV
) {
1562 if (vo_spudec
&& opts
->sub_id
>= 0) {
1563 unsigned char lang
[3];
1564 if (mp_dvdnav_lang_from_sid(mpctx
->stream
, opts
->sub_id
, lang
)) {
1565 snprintf(*(char **) arg
, 63, "(%d) %s", opts
->sub_id
, lang
);
1566 return M_PROPERTY_OK
;
1572 if ((d_sub
->demuxer
->type
== DEMUXER_TYPE_MATROSKA
1573 || d_sub
->demuxer
->type
== DEMUXER_TYPE_LAVF
1574 || d_sub
->demuxer
->type
== DEMUXER_TYPE_LAVF_PREFERRED
1575 || d_sub
->demuxer
->type
== DEMUXER_TYPE_OGG
)
1576 && d_sub
->sh
&& opts
->sub_id
>= 0) {
1577 const char* lang
= ((sh_sub_t
*)d_sub
->sh
)->lang
;
1578 if (!lang
) lang
= mp_gtext("unknown");
1579 snprintf(*(char **) arg
, 63, "(%d) %s", opts
->sub_id
, lang
);
1580 return M_PROPERTY_OK
;
1583 if (vo_vobsub
&& vobsub_id
>= 0) {
1584 const char *language
= mp_gtext("unknown");
1585 language
= vobsub_get_id(vo_vobsub
, (unsigned int) vobsub_id
);
1586 snprintf(*(char **) arg
, 63, "(%d) %s",
1587 vobsub_id
, language
? language
: mp_gtext("unknown"));
1588 return M_PROPERTY_OK
;
1590 #ifdef CONFIG_DVDREAD
1591 if (vo_spudec
&& mpctx
->stream
->type
== STREAMTYPE_DVD
1592 && opts
->sub_id
>= 0) {
1594 int code
= dvd_lang_from_sid(mpctx
->stream
, opts
->sub_id
);
1595 lang
[0] = code
>> 8;
1598 snprintf(*(char **) arg
, 63, "(%d) %s", opts
->sub_id
, lang
);
1599 return M_PROPERTY_OK
;
1602 if (opts
->sub_id
>= 0) {
1603 snprintf(*(char **) arg
, 63, "(%d) %s", opts
->sub_id
,
1604 mp_gtext("unknown"));
1605 return M_PROPERTY_OK
;
1607 snprintf(*(char **) arg
, 63, mp_gtext("disabled"));
1608 return M_PROPERTY_OK
;
1610 case M_PROPERTY_SET
:
1612 return M_PROPERTY_ERROR
;
1613 if (*(int *) arg
< -1)
1615 else if (*(int *) arg
>= global_sub_size
)
1616 *(int *) arg
= global_sub_size
- 1;
1617 mpctx
->global_sub_pos
= *(int *) arg
;
1619 case M_PROPERTY_STEP_UP
:
1620 mpctx
->global_sub_pos
+= 2;
1621 mpctx
->global_sub_pos
=
1622 (mpctx
->global_sub_pos
% (global_sub_size
+ 1)) - 1;
1624 case M_PROPERTY_STEP_DOWN
:
1625 mpctx
->global_sub_pos
+= global_sub_size
+ 1;
1626 mpctx
->global_sub_pos
=
1627 (mpctx
->global_sub_pos
% (global_sub_size
+ 1)) - 1;
1630 return M_PROPERTY_NOT_IMPLEMENTED
;
1633 if (mpctx
->global_sub_pos
>= 0) {
1634 source
= sub_source(mpctx
);
1635 source_pos
= sub_source_pos(mpctx
);
1638 mp_msg(MSGT_CPLAYER
, MSGL_DBG3
,
1639 "subtitles: %d subs, (v@%d s@%d d@%d), @%d, source @%d\n",
1641 mpctx
->sub_counts
[SUB_SOURCE_VOBSUB
],
1642 mpctx
->sub_counts
[SUB_SOURCE_SUBS
],
1643 mpctx
->sub_counts
[SUB_SOURCE_DEMUX
],
1644 mpctx
->global_sub_pos
, source
);
1646 mpctx
->set_of_sub_pos
= -1;
1647 mpctx
->subdata
= NULL
;
1656 mpctx
->osd
->ass_track
= NULL
;
1657 uninit_player(mpctx
, INITIALIZED_SUB
);
1659 if (source
== SUB_SOURCE_VOBSUB
) {
1660 vobsub_id
= vobsub_get_id_by_index(vo_vobsub
, source_pos
);
1661 } else if (source
== SUB_SOURCE_SUBS
) {
1662 mpctx
->set_of_sub_pos
= source_pos
;
1664 if (opts
->ass_enabled
1665 && mpctx
->set_of_ass_tracks
[mpctx
->set_of_sub_pos
]) {
1666 mpctx
->osd
->ass_track
=
1667 mpctx
->set_of_ass_tracks
[mpctx
->set_of_sub_pos
];
1668 mpctx
->osd
->ass_track_changed
= true;
1669 mpctx
->osd
->vsfilter_aspect
=
1670 mpctx
->track_was_native_ass
[mpctx
->set_of_sub_pos
];
1674 mpctx
->subdata
= mpctx
->set_of_subtitles
[mpctx
->set_of_sub_pos
];
1675 vo_osd_changed(OSDTYPE_SUBTITLE
);
1677 } else if (source
== SUB_SOURCE_DEMUX
) {
1678 opts
->sub_id
= source_pos
;
1679 if (d_sub
&& opts
->sub_id
< MAX_S_STREAMS
) {
1681 // default: assume 1:1 mapping of sid and stream id
1682 d_sub
->id
= opts
->sub_id
;
1683 d_sub
->sh
= mpctx
->d_sub
->demuxer
->s_streams
[d_sub
->id
];
1684 ds_free_packs(d_sub
);
1685 for (i
= 0; i
< MAX_S_STREAMS
; i
++) {
1686 sh_sub_t
*sh
= mpctx
->d_sub
->demuxer
->s_streams
[i
];
1687 if (sh
&& sh
->sid
== opts
->sub_id
) {
1693 if (d_sub
->sh
&& d_sub
->id
>= 0) {
1694 sh_sub_t
*sh
= d_sub
->sh
;
1695 if (sh
->type
== 'v')
1696 init_vo_spudec(mpctx
);
1698 sub_init(sh
, mpctx
->osd
);
1699 mpctx
->initialized_flags
|= INITIALIZED_SUB
;
1707 #ifdef CONFIG_DVDREAD
1709 && (mpctx
->stream
->type
== STREAMTYPE_DVD
1710 || mpctx
->stream
->type
== STREAMTYPE_DVDNAV
)
1711 && opts
->sub_id
< 0 && reset_spu
) {
1717 update_subtitles(mpctx
, 0, 0, true);
1719 return M_PROPERTY_OK
;
1722 /// Selected sub source (RW)
1723 static int mp_property_sub_source(m_option_t
*prop
, int action
, void *arg
,
1727 update_global_sub_size(mpctx
);
1728 if (!mpctx
->sh_video
|| mpctx
->global_sub_size
<= 0)
1729 return M_PROPERTY_UNAVAILABLE
;
1732 case M_PROPERTY_GET
:
1734 return M_PROPERTY_ERROR
;
1735 *(int *) arg
= sub_source(mpctx
);
1736 return M_PROPERTY_OK
;
1737 case M_PROPERTY_PRINT
:
1739 return M_PROPERTY_ERROR
;
1740 *(char **) arg
= malloc(64);
1741 (*(char **) arg
)[63] = 0;
1742 switch (sub_source(mpctx
))
1744 case SUB_SOURCE_SUBS
:
1745 snprintf(*(char **) arg
, 63, mp_gtext("file"));
1747 case SUB_SOURCE_VOBSUB
:
1748 snprintf(*(char **) arg
, 63, mp_gtext("vobsub"));
1750 case SUB_SOURCE_DEMUX
:
1751 snprintf(*(char **) arg
, 63, mp_gtext("embedded"));
1754 snprintf(*(char **) arg
, 63, mp_gtext("disabled"));
1756 return M_PROPERTY_OK
;
1757 case M_PROPERTY_SET
:
1759 return M_PROPERTY_ERROR
;
1760 M_PROPERTY_CLAMP(prop
, *(int*)arg
);
1761 if (*(int *) arg
< 0)
1762 mpctx
->global_sub_pos
= -1;
1763 else if (*(int *) arg
!= sub_source(mpctx
)) {
1764 int new_pos
= sub_pos_by_source(mpctx
, *(int *)arg
);
1766 return M_PROPERTY_UNAVAILABLE
;
1767 mpctx
->global_sub_pos
= new_pos
;
1770 case M_PROPERTY_STEP_UP
:
1771 case M_PROPERTY_STEP_DOWN
: {
1772 int step_all
= (arg
&& *(int*)arg
!= 0 ? *(int*)arg
: 1)
1773 * (action
== M_PROPERTY_STEP_UP
? 1 : -1);
1774 int step
= (step_all
> 0) ? 1 : -1;
1775 int cur_source
= sub_source(mpctx
);
1776 source
= cur_source
;
1779 if (source
>= SUB_SOURCES
)
1781 else if (source
< -1)
1782 source
= SUB_SOURCES
- 1;
1783 if (source
== cur_source
|| source
== -1 ||
1784 mpctx
->sub_counts
[source
])
1787 if (source
== cur_source
)
1788 return M_PROPERTY_OK
;
1790 mpctx
->global_sub_pos
= -1;
1792 mpctx
->global_sub_pos
= sub_pos_by_source(mpctx
, source
);
1796 return M_PROPERTY_NOT_IMPLEMENTED
;
1798 --mpctx
->global_sub_pos
;
1799 return mp_property_sub(prop
, M_PROPERTY_STEP_UP
, NULL
, mpctx
);
1802 /// Selected subtitles from specific source (RW)
1803 static int mp_property_sub_by_type(m_option_t
*prop
, int action
, void *arg
,
1806 int source
, is_cur_source
, offset
, new_pos
;
1807 update_global_sub_size(mpctx
);
1808 if (!mpctx
->sh_video
|| mpctx
->global_sub_size
<= 0)
1809 return M_PROPERTY_UNAVAILABLE
;
1811 if (!strcmp(prop
->name
, "sub_file"))
1812 source
= SUB_SOURCE_SUBS
;
1813 else if (!strcmp(prop
->name
, "sub_vob"))
1814 source
= SUB_SOURCE_VOBSUB
;
1815 else if (!strcmp(prop
->name
, "sub_demux"))
1816 source
= SUB_SOURCE_DEMUX
;
1818 return M_PROPERTY_ERROR
;
1820 offset
= sub_pos_by_source(mpctx
, source
);
1822 return M_PROPERTY_UNAVAILABLE
;
1824 is_cur_source
= sub_source(mpctx
) == source
;
1825 new_pos
= mpctx
->global_sub_pos
;
1827 case M_PROPERTY_GET
:
1829 return M_PROPERTY_ERROR
;
1830 if (is_cur_source
) {
1831 *(int *) arg
= sub_source_pos(mpctx
);
1832 if (source
== SUB_SOURCE_VOBSUB
)
1833 *(int *) arg
= vobsub_get_id_by_index(vo_vobsub
, *(int *) arg
);
1837 return M_PROPERTY_OK
;
1838 case M_PROPERTY_PRINT
:
1840 return M_PROPERTY_ERROR
;
1842 return mp_property_sub(prop
, M_PROPERTY_PRINT
, arg
, mpctx
);
1843 *(char **) arg
= malloc(64);
1844 (*(char **) arg
)[63] = 0;
1845 snprintf(*(char **) arg
, 63, mp_gtext("disabled"));
1846 return M_PROPERTY_OK
;
1847 case M_PROPERTY_SET
:
1849 return M_PROPERTY_ERROR
;
1850 if (*(int *) arg
>= 0) {
1851 int index
= *(int *)arg
;
1852 if (source
== SUB_SOURCE_VOBSUB
)
1853 index
= vobsub_get_index_by_id(vo_vobsub
, index
);
1854 new_pos
= offset
+ index
;
1855 if (index
< 0 || index
> mpctx
->sub_counts
[source
]) {
1863 case M_PROPERTY_STEP_UP
:
1864 case M_PROPERTY_STEP_DOWN
: {
1865 int step_all
= (arg
&& *(int*)arg
!= 0 ? *(int*)arg
: 1)
1866 * (action
== M_PROPERTY_STEP_UP
? 1 : -1);
1867 int step
= (step_all
> 0) ? 1 : -1;
1868 int max_sub_pos_for_source
= -1;
1872 if (new_pos
== -1) {
1875 else if (max_sub_pos_for_source
== -1) {
1876 // Find max pos for specific source
1877 new_pos
= mpctx
->global_sub_size
- 1;
1879 && sub_source(mpctx
) != source
)
1883 new_pos
= max_sub_pos_for_source
;
1887 if (new_pos
< offset
||
1888 new_pos
>= mpctx
->global_sub_size
||
1889 sub_source(mpctx
) != source
)
1897 return M_PROPERTY_NOT_IMPLEMENTED
;
1899 return mp_property_sub(prop
, M_PROPERTY_SET
, &new_pos
, mpctx
);
1902 /// Subtitle delay (RW)
1903 static int mp_property_sub_delay(m_option_t
*prop
, int action
, void *arg
,
1906 if (!mpctx
->sh_video
)
1907 return M_PROPERTY_UNAVAILABLE
;
1908 return m_property_delay(prop
, action
, arg
, &sub_delay
);
1911 /// Alignment of text subtitles (RW)
1912 static int mp_property_sub_alignment(m_option_t
*prop
, int action
,
1913 void *arg
, MPContext
*mpctx
)
1915 char *name
[] = { _("top"), _("center"), _("bottom") };
1917 if (!mpctx
->sh_video
|| mpctx
->global_sub_pos
< 0
1918 || sub_source(mpctx
) != SUB_SOURCE_SUBS
)
1919 return M_PROPERTY_UNAVAILABLE
;
1922 case M_PROPERTY_PRINT
:
1924 return M_PROPERTY_ERROR
;
1925 M_PROPERTY_CLAMP(prop
, sub_alignment
);
1926 *(char **) arg
= strdup(mp_gtext(name
[sub_alignment
]));
1927 return M_PROPERTY_OK
;
1928 case M_PROPERTY_SET
:
1930 return M_PROPERTY_ERROR
;
1931 case M_PROPERTY_STEP_UP
:
1932 case M_PROPERTY_STEP_DOWN
:
1933 vo_osd_changed(OSDTYPE_SUBTITLE
);
1935 return m_property_choice(prop
, action
, arg
, &sub_alignment
);
1939 /// Subtitle visibility (RW)
1940 static int mp_property_sub_visibility(m_option_t
*prop
, int action
,
1941 void *arg
, MPContext
*mpctx
)
1943 if (!mpctx
->sh_video
)
1944 return M_PROPERTY_UNAVAILABLE
;
1947 case M_PROPERTY_SET
:
1949 return M_PROPERTY_ERROR
;
1950 case M_PROPERTY_STEP_UP
:
1951 case M_PROPERTY_STEP_DOWN
:
1952 vo_osd_changed(OSDTYPE_SUBTITLE
);
1954 vo_osd_changed(OSDTYPE_SPU
);
1956 return m_property_flag(prop
, action
, arg
, &sub_visibility
);
1961 /// Use margins for libass subtitles (RW)
1962 static int mp_property_ass_use_margins(m_option_t
*prop
, int action
,
1963 void *arg
, MPContext
*mpctx
)
1965 if (!mpctx
->sh_video
)
1966 return M_PROPERTY_UNAVAILABLE
;
1969 case M_PROPERTY_SET
:
1971 return M_PROPERTY_ERROR
;
1972 case M_PROPERTY_STEP_UP
:
1973 case M_PROPERTY_STEP_DOWN
:
1974 ass_force_reload
= 1;
1976 return m_property_flag(prop
, action
, arg
, &ass_use_margins
);
1981 /// Show only forced subtitles (RW)
1982 static int mp_property_sub_forced_only(m_option_t
*prop
, int action
,
1983 void *arg
, MPContext
*mpctx
)
1986 return M_PROPERTY_UNAVAILABLE
;
1989 case M_PROPERTY_SET
:
1991 return M_PROPERTY_ERROR
;
1992 case M_PROPERTY_STEP_UP
:
1993 case M_PROPERTY_STEP_DOWN
:
1994 m_property_flag(prop
, action
, arg
, &forced_subs_only
);
1995 spudec_set_forced_subs_only(vo_spudec
, forced_subs_only
);
1996 return M_PROPERTY_OK
;
1998 return m_property_flag(prop
, action
, arg
, &forced_subs_only
);
2003 #ifdef CONFIG_FREETYPE
2004 /// Subtitle scale (RW)
2005 static int mp_property_sub_scale(m_option_t
*prop
, int action
, void *arg
,
2008 struct MPOpts
*opts
= &mpctx
->opts
;
2011 case M_PROPERTY_SET
:
2013 return M_PROPERTY_ERROR
;
2014 M_PROPERTY_CLAMP(prop
, *(float *) arg
);
2016 if (opts
->ass_enabled
) {
2017 ass_font_scale
= *(float *) arg
;
2018 ass_force_reload
= 1;
2021 text_font_scale_factor
= *(float *) arg
;
2022 force_load_font
= 1;
2023 return M_PROPERTY_OK
;
2024 case M_PROPERTY_STEP_UP
:
2025 case M_PROPERTY_STEP_DOWN
:
2027 if (opts
->ass_enabled
) {
2028 ass_font_scale
+= (arg
? *(float *) arg
: 0.1)*
2029 (action
== M_PROPERTY_STEP_UP
? 1.0 : -1.0);
2030 M_PROPERTY_CLAMP(prop
, ass_font_scale
);
2031 ass_force_reload
= 1;
2034 text_font_scale_factor
+= (arg
? *(float *) arg
: 0.1)*
2035 (action
== M_PROPERTY_STEP_UP
? 1.0 : -1.0);
2036 M_PROPERTY_CLAMP(prop
, text_font_scale_factor
);
2037 force_load_font
= 1;
2038 return M_PROPERTY_OK
;
2041 if (opts
->ass_enabled
)
2042 return m_property_float_ro(prop
, action
, arg
, ass_font_scale
);
2045 return m_property_float_ro(prop
, action
, arg
, text_font_scale_factor
);
2052 /// \defgroup TVProperties TV properties
2053 /// \ingroup Properties
2058 /// TV color settings (RW)
2059 static int mp_property_tv_color(m_option_t
*prop
, int action
, void *arg
,
2063 tvi_handle_t
*tvh
= mpctx
->demuxer
->priv
;
2064 if (mpctx
->demuxer
->type
!= DEMUXER_TYPE_TV
|| !tvh
)
2065 return M_PROPERTY_UNAVAILABLE
;
2068 case M_PROPERTY_SET
:
2070 return M_PROPERTY_ERROR
;
2071 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
2072 return tv_set_color_options(tvh
, prop
->offset
, *(int *) arg
);
2073 case M_PROPERTY_GET
:
2074 return tv_get_color_options(tvh
, prop
->offset
, arg
);
2075 case M_PROPERTY_STEP_UP
:
2076 case M_PROPERTY_STEP_DOWN
:
2077 if ((r
= tv_get_color_options(tvh
, prop
->offset
, &val
)) >= 0) {
2079 return M_PROPERTY_ERROR
;
2080 val
+= (arg
? *(int *) arg
: 1) *
2081 (action
== M_PROPERTY_STEP_DOWN
? -1 : 1);
2082 M_PROPERTY_CLAMP(prop
, val
);
2083 return tv_set_color_options(tvh
, prop
->offset
, val
);
2085 return M_PROPERTY_ERROR
;
2087 return M_PROPERTY_NOT_IMPLEMENTED
;
2092 static int mp_property_teletext_common(m_option_t
*prop
, int action
, void *arg
,
2096 int base_ioctl
= prop
->offset
;
2098 for teletext's GET,SET,STEP ioctls this is not 0
2102 if (!mpctx
->demuxer
|| !mpctx
->demuxer
->teletext
)
2103 return M_PROPERTY_UNAVAILABLE
;
2105 return M_PROPERTY_ERROR
;
2108 case M_PROPERTY_GET
:
2110 return M_PROPERTY_ERROR
;
2111 result
=teletext_control(mpctx
->demuxer
->teletext
, base_ioctl
, arg
);
2113 case M_PROPERTY_SET
:
2115 return M_PROPERTY_ERROR
;
2116 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
2117 result
=teletext_control(mpctx
->demuxer
->teletext
, base_ioctl
+1, arg
);
2119 case M_PROPERTY_STEP_UP
:
2120 case M_PROPERTY_STEP_DOWN
:
2121 result
=teletext_control(mpctx
->demuxer
->teletext
, base_ioctl
, &val
);
2122 val
+= (arg
? *(int *) arg
: 1) * (action
== M_PROPERTY_STEP_DOWN
? -1 : 1);
2123 result
=teletext_control(mpctx
->demuxer
->teletext
, base_ioctl
+1, &val
);
2126 return M_PROPERTY_NOT_IMPLEMENTED
;
2129 return result
== VBI_CONTROL_TRUE
? M_PROPERTY_OK
: M_PROPERTY_ERROR
;
2132 static int mp_property_teletext_mode(m_option_t
*prop
, int action
, void *arg
,
2138 //with tvh==NULL will fail too
2139 result
=mp_property_teletext_common(prop
,action
,arg
,mpctx
);
2140 if(result
!=M_PROPERTY_OK
)
2143 if(teletext_control(mpctx
->demuxer
->teletext
,
2144 prop
->offset
, &val
)==VBI_CONTROL_TRUE
&& val
)
2145 mp_input_set_section(mpctx
->input
, "teletext");
2147 mp_input_set_section(mpctx
->input
, "tv");
2148 return M_PROPERTY_OK
;
2151 static int mp_property_teletext_page(m_option_t
*prop
, int action
, void *arg
,
2156 if (!mpctx
->demuxer
->teletext
)
2157 return M_PROPERTY_UNAVAILABLE
;
2159 case M_PROPERTY_STEP_UP
:
2160 case M_PROPERTY_STEP_DOWN
:
2161 //This should be handled separately
2162 val
= (arg
? *(int *) arg
: 1) * (action
== M_PROPERTY_STEP_DOWN
? -1 : 1);
2163 result
=teletext_control(mpctx
->demuxer
->teletext
,
2164 TV_VBI_CONTROL_STEP_PAGE
, &val
);
2167 result
=mp_property_teletext_common(prop
,action
,arg
,mpctx
);
2174 /// All properties available in MPlayer.
2175 /** \ingroup Properties
2177 static const m_option_t mp_properties
[] = {
2179 { "osdlevel", mp_property_osdlevel
, CONF_TYPE_INT
,
2180 M_OPT_RANGE
, 0, 3, NULL
},
2181 { "loop", mp_property_loop
, CONF_TYPE_INT
,
2182 M_OPT_MIN
, -1, 0, NULL
},
2183 { "speed", mp_property_playback_speed
, CONF_TYPE_FLOAT
,
2184 M_OPT_RANGE
, 0.01, 100.0, NULL
},
2185 { "filename", mp_property_filename
, CONF_TYPE_STRING
,
2187 { "path", mp_property_path
, CONF_TYPE_STRING
,
2189 { "demuxer", mp_property_demuxer
, CONF_TYPE_STRING
,
2191 { "stream_pos", mp_property_stream_pos
, CONF_TYPE_POSITION
,
2192 M_OPT_MIN
, 0, 0, NULL
},
2193 { "stream_start", mp_property_stream_start
, CONF_TYPE_POSITION
,
2194 M_OPT_MIN
, 0, 0, NULL
},
2195 { "stream_end", mp_property_stream_end
, CONF_TYPE_POSITION
,
2196 M_OPT_MIN
, 0, 0, NULL
},
2197 { "stream_length", mp_property_stream_length
, CONF_TYPE_POSITION
,
2198 M_OPT_MIN
, 0, 0, NULL
},
2199 { "stream_time_pos", mp_property_stream_time_pos
, CONF_TYPE_TIME
,
2200 M_OPT_MIN
, 0, 0, NULL
},
2201 { "length", mp_property_length
, CONF_TYPE_TIME
,
2202 M_OPT_MIN
, 0, 0, NULL
},
2203 { "percent_pos", mp_property_percent_pos
, CONF_TYPE_INT
,
2204 M_OPT_RANGE
, 0, 100, NULL
},
2205 { "time_pos", mp_property_time_pos
, CONF_TYPE_TIME
,
2206 M_OPT_MIN
, 0, 0, NULL
},
2207 { "chapter", mp_property_chapter
, CONF_TYPE_INT
,
2208 M_OPT_MIN
, 0, 0, NULL
},
2209 { "chapters", mp_property_chapters
, CONF_TYPE_INT
,
2211 { "angle", mp_property_angle
, CONF_TYPE_INT
,
2212 CONF_RANGE
, -2, 10, NULL
},
2213 { "metadata", mp_property_metadata
, CONF_TYPE_STRING_LIST
,
2215 { "pause", mp_property_pause
, CONF_TYPE_FLAG
,
2216 M_OPT_RANGE
, 0, 1, NULL
},
2217 { "capturing", mp_property_capture
, CONF_TYPE_FLAG
,
2218 M_OPT_RANGE
, 0, 1, NULL
},
2219 { "pts_association_mode", mp_property_generic_option
, &m_option_type_choice
,
2220 0, 0, 0, "pts-association-mode" },
2221 { "hr_seek", mp_property_generic_option
, &m_option_type_choice
,
2222 0, 0, 0, "hr-seek" },
2225 { "volume", mp_property_volume
, CONF_TYPE_FLOAT
,
2226 M_OPT_RANGE
, 0, 100, NULL
},
2227 { "mute", mp_property_mute
, CONF_TYPE_FLAG
,
2228 M_OPT_RANGE
, 0, 1, NULL
},
2229 { "audio_delay", mp_property_audio_delay
, CONF_TYPE_FLOAT
,
2230 M_OPT_RANGE
, -100, 100, NULL
},
2231 { "audio_format", mp_property_audio_format
, CONF_TYPE_INT
,
2233 { "audio_codec", mp_property_audio_codec
, CONF_TYPE_STRING
,
2235 { "audio_bitrate", mp_property_audio_bitrate
, CONF_TYPE_INT
,
2237 { "samplerate", mp_property_samplerate
, CONF_TYPE_INT
,
2239 { "channels", mp_property_channels
, CONF_TYPE_INT
,
2241 { "switch_audio", mp_property_audio
, CONF_TYPE_INT
,
2242 CONF_RANGE
, -2, 65535, NULL
},
2243 { "balance", mp_property_balance
, CONF_TYPE_FLOAT
,
2244 M_OPT_RANGE
, -1, 1, NULL
},
2247 { "fullscreen", mp_property_fullscreen
, CONF_TYPE_FLAG
,
2248 M_OPT_RANGE
, 0, 1, NULL
},
2249 { "deinterlace", mp_property_deinterlace
, CONF_TYPE_FLAG
,
2250 M_OPT_RANGE
, 0, 1, NULL
},
2251 { "yuv_colorspace", mp_property_yuv_colorspace
, CONF_TYPE_INT
,
2252 M_OPT_RANGE
, 0, 2, NULL
},
2253 { "ontop", mp_property_ontop
, CONF_TYPE_FLAG
,
2254 M_OPT_RANGE
, 0, 1, NULL
},
2255 { "rootwin", mp_property_rootwin
, CONF_TYPE_FLAG
,
2256 M_OPT_RANGE
, 0, 1, NULL
},
2257 { "border", mp_property_border
, CONF_TYPE_FLAG
,
2258 M_OPT_RANGE
, 0, 1, NULL
},
2259 { "framedropping", mp_property_framedropping
, CONF_TYPE_INT
,
2260 M_OPT_RANGE
, 0, 2, NULL
},
2261 { "gamma", mp_property_gamma
, CONF_TYPE_INT
,
2262 M_OPT_RANGE
, -100, 100, .offset
=offsetof(struct MPOpts
, vo_gamma_gamma
)},
2263 { "brightness", mp_property_gamma
, CONF_TYPE_INT
,
2264 M_OPT_RANGE
, -100, 100, .offset
=offsetof(struct MPOpts
, vo_gamma_brightness
) },
2265 { "contrast", mp_property_gamma
, CONF_TYPE_INT
,
2266 M_OPT_RANGE
, -100, 100, .offset
=offsetof(struct MPOpts
, vo_gamma_contrast
) },
2267 { "saturation", mp_property_gamma
, CONF_TYPE_INT
,
2268 M_OPT_RANGE
, -100, 100, .offset
=offsetof(struct MPOpts
, vo_gamma_saturation
) },
2269 { "hue", mp_property_gamma
, CONF_TYPE_INT
,
2270 M_OPT_RANGE
, -100, 100, .offset
=offsetof(struct MPOpts
, vo_gamma_hue
) },
2271 { "panscan", mp_property_panscan
, CONF_TYPE_FLOAT
,
2272 M_OPT_RANGE
, 0, 1, NULL
},
2273 { "vsync", mp_property_vsync
, CONF_TYPE_FLAG
,
2274 M_OPT_RANGE
, 0, 1, NULL
},
2275 { "video_format", mp_property_video_format
, CONF_TYPE_INT
,
2277 { "video_codec", mp_property_video_codec
, CONF_TYPE_STRING
,
2279 { "video_bitrate", mp_property_video_bitrate
, CONF_TYPE_INT
,
2281 { "width", mp_property_width
, CONF_TYPE_INT
,
2283 { "height", mp_property_height
, CONF_TYPE_INT
,
2285 { "fps", mp_property_fps
, CONF_TYPE_FLOAT
,
2287 { "aspect", mp_property_aspect
, CONF_TYPE_FLOAT
,
2289 { "switch_video", mp_property_video
, CONF_TYPE_INT
,
2290 CONF_RANGE
, -2, 65535, NULL
},
2291 { "switch_program", mp_property_program
, CONF_TYPE_INT
,
2292 CONF_RANGE
, -1, 65535, NULL
},
2295 { "sub", mp_property_sub
, CONF_TYPE_INT
,
2296 M_OPT_MIN
, -1, 0, NULL
},
2297 { "sub_source", mp_property_sub_source
, CONF_TYPE_INT
,
2298 M_OPT_RANGE
, -1, SUB_SOURCES
- 1, NULL
},
2299 { "sub_vob", mp_property_sub_by_type
, CONF_TYPE_INT
,
2300 M_OPT_MIN
, -1, 0, NULL
},
2301 { "sub_demux", mp_property_sub_by_type
, CONF_TYPE_INT
,
2302 M_OPT_MIN
, -1, 0, NULL
},
2303 { "sub_file", mp_property_sub_by_type
, CONF_TYPE_INT
,
2304 M_OPT_MIN
, -1, 0, NULL
},
2305 { "sub_delay", mp_property_sub_delay
, CONF_TYPE_FLOAT
,
2307 { "sub_pos", mp_property_sub_pos
, CONF_TYPE_INT
,
2308 M_OPT_RANGE
, 0, 100, NULL
},
2309 { "sub_alignment", mp_property_sub_alignment
, CONF_TYPE_INT
,
2310 M_OPT_RANGE
, 0, 2, NULL
},
2311 { "sub_visibility", mp_property_sub_visibility
, CONF_TYPE_FLAG
,
2312 M_OPT_RANGE
, 0, 1, NULL
},
2313 { "sub_forced_only", mp_property_sub_forced_only
, CONF_TYPE_FLAG
,
2314 M_OPT_RANGE
, 0, 1, NULL
},
2315 #ifdef CONFIG_FREETYPE
2316 { "sub_scale", mp_property_sub_scale
, CONF_TYPE_FLOAT
,
2317 M_OPT_RANGE
, 0, 100, NULL
},
2320 { "ass_use_margins", mp_property_ass_use_margins
, CONF_TYPE_FLAG
,
2321 M_OPT_RANGE
, 0, 1, NULL
},
2325 { "tv_brightness", mp_property_tv_color
, CONF_TYPE_INT
,
2326 M_OPT_RANGE
, -100, 100, .offset
=TV_COLOR_BRIGHTNESS
},
2327 { "tv_contrast", mp_property_tv_color
, CONF_TYPE_INT
,
2328 M_OPT_RANGE
, -100, 100, .offset
=TV_COLOR_CONTRAST
},
2329 { "tv_saturation", mp_property_tv_color
, CONF_TYPE_INT
,
2330 M_OPT_RANGE
, -100, 100, .offset
=TV_COLOR_SATURATION
},
2331 { "tv_hue", mp_property_tv_color
, CONF_TYPE_INT
,
2332 M_OPT_RANGE
, -100, 100, .offset
=TV_COLOR_HUE
},
2334 { "teletext_page", mp_property_teletext_page
, CONF_TYPE_INT
,
2335 M_OPT_RANGE
, 100, 899, .offset
=TV_VBI_CONTROL_GET_PAGE
},
2336 { "teletext_subpage", mp_property_teletext_common
, CONF_TYPE_INT
,
2337 M_OPT_RANGE
, 0, 64, .offset
=TV_VBI_CONTROL_GET_SUBPAGE
},
2338 { "teletext_mode", mp_property_teletext_mode
, CONF_TYPE_FLAG
,
2339 M_OPT_RANGE
, 0, 1, .offset
=TV_VBI_CONTROL_GET_MODE
},
2340 { "teletext_format", mp_property_teletext_common
, CONF_TYPE_INT
,
2341 M_OPT_RANGE
, 0, 3, .offset
=TV_VBI_CONTROL_GET_FORMAT
},
2342 { "teletext_half_page", mp_property_teletext_common
, CONF_TYPE_INT
,
2343 M_OPT_RANGE
, 0, 2, .offset
=TV_VBI_CONTROL_GET_HALF_PAGE
},
2344 { NULL
, NULL
, NULL
, 0, 0, 0, NULL
}
2348 int mp_property_do(const char *name
, int action
, void *val
, void *ctx
)
2350 return m_property_do(mp_properties
, name
, action
, val
, ctx
);
2353 char* mp_property_print(const char *name
, void* ctx
)
2356 if(mp_property_do(name
,M_PROPERTY_PRINT
,&ret
,ctx
) <= 0)
2361 char *property_expand_string(MPContext
*mpctx
, char *str
)
2363 return m_properties_expand_string(mp_properties
, str
, mpctx
);
2366 void property_print_help(void)
2368 m_properties_print_help_list(mp_properties
);
2372 /* List of default ways to show a property on OSD.
2374 * Setting osd_progbar to -1 displays seek bar, other nonzero displays
2375 * a bar showing the current position between min/max values of the
2376 * property. In this case osd_msg is only used for terminal output
2377 * if there is no video; it'll be a label shown together with percentage.
2379 * Otherwise setting osd_msg will show the string on OSD, formatted with
2380 * the text value of the property as argument.
2382 static struct property_osd_display
{
2385 /// progressbar type
2386 int osd_progbar
; // -1 is special value for seek indicators
2387 /// osd msg id if it must be shared
2389 /// osd msg template
2390 const char *osd_msg
;
2391 } property_osd_display
[] = {
2393 { "loop", 0, -1, _("Loop: %s") },
2394 { "chapter", -1, -1, NULL
},
2395 { "capturing", 0, -1, _("Capturing: %s") },
2396 { "pts_association_mode", 0, -1, "PTS association mode: %s" },
2397 { "hr_seek", 0, -1, "hr-seek: %s" },
2398 { "speed", 0, -1, _("Speed: x %6s") },
2400 { "volume", OSD_VOLUME
, -1, _("Volume") },
2401 { "mute", 0, -1, _("Mute: %s") },
2402 { "audio_delay", 0, -1, _("A-V delay: %s") },
2403 { "switch_audio", 0, -1, _("Audio: %s") },
2404 { "balance", OSD_BALANCE
, -1, _("Balance") },
2406 { "panscan", OSD_PANSCAN
, -1, _("Panscan") },
2407 { "ontop", 0, -1, _("Stay on top: %s") },
2408 { "rootwin", 0, -1, _("Rootwin: %s") },
2409 { "border", 0, -1, _("Border: %s") },
2410 { "framedropping", 0, -1, _("Framedropping: %s") },
2411 { "deinterlace", 0, -1, _("Deinterlace: %s") },
2412 { "yuv_colorspace", 0, -1, _("YUV colorspace: %s") },
2413 { "gamma", OSD_BRIGHTNESS
, -1, _("Gamma") },
2414 { "brightness", OSD_BRIGHTNESS
, -1, _("Brightness") },
2415 { "contrast", OSD_CONTRAST
, -1, _("Contrast") },
2416 { "saturation", OSD_SATURATION
, -1, _("Saturation") },
2417 { "hue", OSD_HUE
, -1, _("Hue") },
2418 { "vsync", 0, -1, _("VSync: %s") },
2420 { "sub", 0, -1, _("Subtitles: %s") },
2421 { "sub_source", 0, -1, _("Sub source: %s") },
2422 { "sub_vob", 0, -1, _("Subtitles: %s") },
2423 { "sub_demux", 0, -1, _("Subtitles: %s") },
2424 { "sub_file", 0, -1, _("Subtitles: %s") },
2425 { "sub_pos", 0, -1, _("Sub position: %s/100") },
2426 { "sub_alignment", 0, -1, _("Sub alignment: %s") },
2427 { "sub_delay", 0, OSD_MSG_SUB_DELAY
, _("Sub delay: %s") },
2428 { "sub_visibility", 0, -1, _("Subtitles: %s") },
2429 { "sub_forced_only", 0, -1, _("Forced sub only: %s") },
2430 #ifdef CONFIG_FREETYPE
2431 { "sub_scale", 0, -1, _("Sub Scale: %s")},
2434 { "tv_brightness", OSD_BRIGHTNESS
, -1, _("Brightness") },
2435 { "tv_hue", OSD_HUE
, -1, _("Hue") },
2436 { "tv_saturation", OSD_SATURATION
, -1, _("Saturation") },
2437 { "tv_contrast", OSD_CONTRAST
, -1, _("Contrast") },
2442 static int show_property_osd(MPContext
*mpctx
, const char *pname
)
2444 struct MPOpts
*opts
= &mpctx
->opts
;
2447 struct property_osd_display
*p
;
2449 // look for the command
2450 for (p
= property_osd_display
; p
->name
; p
++)
2451 if (!strcmp(p
->name
, pname
))
2456 if (mp_property_do(pname
, M_PROPERTY_GET_TYPE
, &prop
, mpctx
) <= 0 || !prop
)
2459 if (p
->osd_progbar
== -1)
2460 mpctx
->add_osd_seek_info
= true;
2461 else if (p
->osd_progbar
) {
2462 if (prop
->type
== CONF_TYPE_INT
) {
2463 if (mp_property_do(pname
, M_PROPERTY_GET
, &r
, mpctx
) > 0)
2464 set_osd_bar(mpctx
, p
->osd_progbar
, mp_gtext(p
->osd_msg
),
2465 prop
->min
, prop
->max
, r
);
2466 } else if (prop
->type
== CONF_TYPE_FLOAT
) {
2468 if (mp_property_do(pname
, M_PROPERTY_GET
, &f
, mpctx
) > 0)
2469 set_osd_bar(mpctx
, p
->osd_progbar
, mp_gtext(p
->osd_msg
),
2470 prop
->min
, prop
->max
, f
);
2472 mp_msg(MSGT_CPLAYER
, MSGL_ERR
,
2473 "Property use an unsupported type.\n");
2480 char *val
= mp_property_print(pname
, mpctx
);
2482 int index
= p
- property_osd_display
;
2483 set_osd_tmsg(p
->osd_id
>= 0 ? p
->osd_id
: OSD_MSG_PROPERTY
+ index
,
2484 1, opts
->osd_duration
, p
->osd_msg
, val
);
2493 * \defgroup Command2Property Command to property bridge
2495 * It is used to handle most commands that just set a property
2496 * and optionally display something on the OSD.
2497 * Two kinds of commands are handled: adjust or toggle.
2499 * Adjust commands take 1 or 2 parameters: <value> <abs>
2500 * If <abs> is non-zero the property is set to the given value
2501 * otherwise it is adjusted.
2503 * Toggle commands take 0 or 1 parameters. With no parameter
2504 * or a value less than the property minimum it just steps the
2505 * property to its next or previous value respectively.
2506 * Otherwise it sets it to the given value.
2511 /// List of the commands that can be handled by setting a property.
2517 /// set/adjust or toggle command
2519 } set_prop_cmd
[] = {
2521 { "loop", MP_CMD_LOOP
, 0},
2522 { "chapter", MP_CMD_SEEK_CHAPTER
, 0},
2523 { "angle", MP_CMD_SWITCH_ANGLE
, 0},
2524 { "pause", MP_CMD_PAUSE
, 0},
2525 { "capturing", MP_CMD_CAPTURING
, 1},
2527 { "volume", MP_CMD_VOLUME
, 0},
2528 { "mute", MP_CMD_MUTE
, 1},
2529 { "audio_delay", MP_CMD_AUDIO_DELAY
, 0},
2530 { "switch_audio", MP_CMD_SWITCH_AUDIO
, 1},
2531 { "balance", MP_CMD_BALANCE
, 0},
2533 { "fullscreen", MP_CMD_VO_FULLSCREEN
, 1},
2534 { "panscan", MP_CMD_PANSCAN
, 0},
2535 { "ontop", MP_CMD_VO_ONTOP
, 1},
2536 { "rootwin", MP_CMD_VO_ROOTWIN
, 1},
2537 { "border", MP_CMD_VO_BORDER
, 1},
2538 { "framedropping", MP_CMD_FRAMEDROPPING
, 1},
2539 { "gamma", MP_CMD_GAMMA
, 0},
2540 { "brightness", MP_CMD_BRIGHTNESS
, 0},
2541 { "contrast", MP_CMD_CONTRAST
, 0},
2542 { "saturation", MP_CMD_SATURATION
, 0},
2543 { "hue", MP_CMD_HUE
, 0},
2544 { "vsync", MP_CMD_SWITCH_VSYNC
, 1},
2546 { "sub", MP_CMD_SUB_SELECT
, 1},
2547 { "sub_source", MP_CMD_SUB_SOURCE
, 1},
2548 { "sub_vob", MP_CMD_SUB_VOB
, 1},
2549 { "sub_demux", MP_CMD_SUB_DEMUX
, 1},
2550 { "sub_file", MP_CMD_SUB_FILE
, 1},
2551 { "sub_pos", MP_CMD_SUB_POS
, 0},
2552 { "sub_alignment", MP_CMD_SUB_ALIGNMENT
, 1},
2553 { "sub_delay", MP_CMD_SUB_DELAY
, 0},
2554 { "sub_visibility", MP_CMD_SUB_VISIBILITY
, 1},
2555 { "sub_forced_only", MP_CMD_SUB_FORCED_ONLY
, 1},
2556 #ifdef CONFIG_FREETYPE
2557 { "sub_scale", MP_CMD_SUB_SCALE
, 0},
2560 { "ass_use_margins", MP_CMD_ASS_USE_MARGINS
, 1},
2563 { "tv_brightness", MP_CMD_TV_SET_BRIGHTNESS
, 0},
2564 { "tv_hue", MP_CMD_TV_SET_HUE
, 0},
2565 { "tv_saturation", MP_CMD_TV_SET_SATURATION
, 0},
2566 { "tv_contrast", MP_CMD_TV_SET_CONTRAST
, 0},
2571 /// Handle commands that set a property.
2572 static int set_property_command(MPContext
*mpctx
, mp_cmd_t
*cmd
)
2578 // look for the command
2579 for (i
= 0; set_prop_cmd
[i
].name
; i
++)
2580 if (set_prop_cmd
[i
].cmd
== cmd
->id
)
2582 if (!(pname
= set_prop_cmd
[i
].name
))
2585 if (mp_property_do(pname
,M_PROPERTY_GET_TYPE
,&prop
,mpctx
) <= 0 || !prop
)
2589 if (set_prop_cmd
[i
].toggle
) {
2591 if (cmd
->nargs
> 0 && cmd
->args
[0].v
.i
>= prop
->min
)
2592 r
= mp_property_do(pname
, M_PROPERTY_SET
, &cmd
->args
[0].v
.i
, mpctx
);
2593 else if (cmd
->nargs
> 0)
2594 r
= mp_property_do(pname
, M_PROPERTY_STEP_DOWN
, NULL
, mpctx
);
2596 r
= mp_property_do(pname
, M_PROPERTY_STEP_UP
, NULL
, mpctx
);
2597 } else if (cmd
->args
[1].v
.i
) //set
2598 r
= mp_property_do(pname
, M_PROPERTY_SET
, &cmd
->args
[0].v
, mpctx
);
2600 r
= mp_property_do(pname
, M_PROPERTY_STEP_UP
, &cmd
->args
[0].v
, mpctx
);
2605 show_property_osd(mpctx
, pname
);
2610 #ifdef CONFIG_DVDNAV
2611 static const struct {
2613 const mp_command_type cmd
;
2614 } mp_dvdnav_bindings
[] = {
2615 { "up", MP_CMD_DVDNAV_UP
},
2616 { "down", MP_CMD_DVDNAV_DOWN
},
2617 { "left", MP_CMD_DVDNAV_LEFT
},
2618 { "right", MP_CMD_DVDNAV_RIGHT
},
2619 { "menu", MP_CMD_DVDNAV_MENU
},
2620 { "select", MP_CMD_DVDNAV_SELECT
},
2621 { "prev", MP_CMD_DVDNAV_PREVMENU
},
2622 { "mouse", MP_CMD_DVDNAV_MOUSECLICK
},
2625 * keep old dvdnav sub-command options for a while in order not to
2626 * break slave-mode API too suddenly.
2628 { "1", MP_CMD_DVDNAV_UP
},
2629 { "2", MP_CMD_DVDNAV_DOWN
},
2630 { "3", MP_CMD_DVDNAV_LEFT
},
2631 { "4", MP_CMD_DVDNAV_RIGHT
},
2632 { "5", MP_CMD_DVDNAV_MENU
},
2633 { "6", MP_CMD_DVDNAV_SELECT
},
2634 { "7", MP_CMD_DVDNAV_PREVMENU
},
2635 { "8", MP_CMD_DVDNAV_MOUSECLICK
},
2640 static const char *property_error_string(int error_value
)
2642 switch (error_value
) {
2643 case M_PROPERTY_ERROR
:
2645 case M_PROPERTY_UNAVAILABLE
:
2646 return "PROPERTY_UNAVAILABLE";
2647 case M_PROPERTY_NOT_IMPLEMENTED
:
2648 return "NOT_IMPLEMENTED";
2649 case M_PROPERTY_UNKNOWN
:
2650 return "PROPERTY_UNKNOWN";
2651 case M_PROPERTY_DISABLED
:
2657 static void remove_subtitle_range(MPContext
*mpctx
, int start
, int count
)
2660 int end
= start
+ count
;
2661 int after
= mpctx
->set_of_sub_size
- end
;
2662 sub_data
**subs
= mpctx
->set_of_subtitles
;
2664 struct ass_track
**ass_tracks
= mpctx
->set_of_ass_tracks
;
2666 if (count
< 0 || count
> mpctx
->set_of_sub_size
||
2667 start
< 0 || start
> mpctx
->set_of_sub_size
- count
) {
2668 mp_msg(MSGT_CPLAYER
, MSGL_ERR
,
2669 "Cannot remove invalid subtitle range %i +%i\n", start
, count
);
2672 for (idx
= start
; idx
< end
; idx
++) {
2673 sub_data
*subd
= subs
[idx
];
2674 char *filename
= "";
2676 filename
= subd
->filename
;
2679 filename
= ass_tracks
[idx
]->name
;
2681 mp_msg(MSGT_CPLAYER
, MSGL_STATUS
,
2682 "SUB: Removed subtitle file (%d): %s\n", idx
+ 1,
2683 filename_recode(filename
));
2687 if (ass_tracks
[idx
])
2688 ass_free_track(ass_tracks
[idx
]);
2689 ass_tracks
[idx
] = NULL
;
2693 mpctx
->global_sub_size
-= count
;
2694 mpctx
->set_of_sub_size
-= count
;
2695 if (mpctx
->set_of_sub_size
<= 0)
2696 mpctx
->sub_counts
[SUB_SOURCE_SUBS
] = 0;
2698 memmove(subs
+ start
, subs
+ end
, after
* sizeof(*subs
));
2699 memset(subs
+ start
+ after
, 0, count
* sizeof(*subs
));
2701 memmove(ass_tracks
+ start
, ass_tracks
+ end
, after
* sizeof(*ass_tracks
));
2702 memset(ass_tracks
+ start
+ after
, 0, count
* sizeof(*ass_tracks
));
2705 if (mpctx
->set_of_sub_pos
>= start
&& mpctx
->set_of_sub_pos
< end
) {
2706 mpctx
->global_sub_pos
= -2;
2707 mpctx
->subdata
= NULL
;
2708 mpctx
->osd
->ass_track
= NULL
;
2709 mp_input_queue_cmd(mpctx
->input
, mp_input_parse_cmd("sub_select"));
2710 } else if (mpctx
->set_of_sub_pos
>= end
) {
2711 mpctx
->set_of_sub_pos
-= count
;
2712 mpctx
->global_sub_pos
-= count
;
2716 void run_command(MPContext
*mpctx
, mp_cmd_t
*cmd
)
2718 struct MPOpts
*opts
= &mpctx
->opts
;
2719 sh_audio_t
* const sh_audio
= mpctx
->sh_audio
;
2720 sh_video_t
* const sh_video
= mpctx
->sh_video
;
2721 int osd_duration
= opts
->osd_duration
;
2722 int case_fallthrough_hack
= 0;
2723 if (!set_property_command(mpctx
, cmd
))
2726 mpctx
->add_osd_seek_info
= true;
2727 float v
= cmd
->args
[0].v
.f
;
2728 int abs
= (cmd
->nargs
> 1) ? cmd
->args
[1].v
.i
: 0;
2729 int exact
= (cmd
->nargs
> 2) ? cmd
->args
[2].v
.i
: 0;
2730 if (abs
== 2) { /* Absolute seek to a specific timestamp in seconds */
2731 queue_seek(mpctx
, MPSEEK_ABSOLUTE
, v
, exact
);
2732 mpctx
->osd_function
= v
> get_current_time(mpctx
) ?
2734 } else if (abs
) { /* Absolute seek by percentage */
2735 queue_seek(mpctx
, MPSEEK_FACTOR
, v
/ 100.0, exact
);
2736 mpctx
->osd_function
= OSD_FFW
; // Direction isn't set correctly
2738 queue_seek(mpctx
, MPSEEK_RELATIVE
, v
, exact
);
2739 mpctx
->osd_function
= (v
> 0) ? OSD_FFW
: OSD_REW
;
2744 case MP_CMD_SET_PROPERTY_OSD
:
2745 case_fallthrough_hack
= 1;
2747 case MP_CMD_SET_PROPERTY
:{
2748 int r
= mp_property_do(cmd
->args
[0].v
.s
, M_PROPERTY_PARSE
,
2749 cmd
->args
[1].v
.s
, mpctx
);
2750 if (r
== M_PROPERTY_UNKNOWN
)
2751 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2752 "Unknown property: '%s'\n", cmd
->args
[0].v
.s
);
2754 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2755 "Failed to set property '%s' to '%s'.\n",
2756 cmd
->args
[0].v
.s
, cmd
->args
[1].v
.s
);
2757 else if (case_fallthrough_hack
)
2758 show_property_osd(mpctx
, cmd
->args
[0].v
.s
);
2760 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_ERROR=%s\n", property_error_string(r
));
2764 case MP_CMD_STEP_PROPERTY_OSD
:
2765 case_fallthrough_hack
= 1;
2767 case MP_CMD_STEP_PROPERTY
:{
2772 if (cmd
->args
[1].v
.f
) {
2774 if((r
= mp_property_do(cmd
->args
[0].v
.s
,
2775 M_PROPERTY_GET_TYPE
,
2776 &prop
, mpctx
)) <= 0)
2778 if(prop
->type
== CONF_TYPE_INT
||
2779 prop
->type
== CONF_TYPE_FLAG
)
2780 i
= cmd
->args
[1].v
.f
, arg
= &i
;
2781 else if(prop
->type
== CONF_TYPE_FLOAT
)
2782 arg
= &cmd
->args
[1].v
.f
;
2783 else if(prop
->type
== CONF_TYPE_DOUBLE
||
2784 prop
->type
== CONF_TYPE_TIME
)
2785 d
= cmd
->args
[1].v
.f
, arg
= &d
;
2786 else if(prop
->type
== CONF_TYPE_POSITION
)
2787 o
= cmd
->args
[1].v
.f
, arg
= &o
;
2789 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2790 "Ignoring step size stepping property '%s'.\n",
2793 r
= mp_property_do(cmd
->args
[0].v
.s
,
2794 cmd
->args
[2].v
.i
< 0 ?
2795 M_PROPERTY_STEP_DOWN
: M_PROPERTY_STEP_UP
,
2798 if (r
== M_PROPERTY_UNKNOWN
)
2799 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2800 "Unknown property: '%s'\n", cmd
->args
[0].v
.s
);
2802 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2803 "Failed to increment property '%s' by %f.\n",
2804 cmd
->args
[0].v
.s
, cmd
->args
[1].v
.f
);
2805 else if (case_fallthrough_hack
)
2806 show_property_osd(mpctx
, cmd
->args
[0].v
.s
);
2808 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_ERROR=%s\n", property_error_string(r
));
2812 case MP_CMD_GET_PROPERTY
:{
2814 int r
= mp_property_do(cmd
->args
[0].v
.s
, M_PROPERTY_TO_STRING
,
2817 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2818 "Failed to get value of property '%s'.\n",
2820 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_ERROR=%s\n", property_error_string(r
));
2823 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_%s=%s\n",
2824 cmd
->args
[0].v
.s
, tmp
);
2829 case MP_CMD_EDL_MARK
:
2831 float v
= get_current_time(mpctx
);
2832 if (mpctx
->begin_skip
== MP_NOPTS_VALUE
) {
2833 mpctx
->begin_skip
= v
;
2834 mp_tmsg(MSGT_CPLAYER
, MSGL_INFO
, "EDL skip start, press 'i' again to end block.\n");
2836 if (mpctx
->begin_skip
> v
)
2837 mp_tmsg(MSGT_CPLAYER
, MSGL_WARN
, "EDL skip canceled, last start > stop\n");
2839 fprintf(edl_fd
, "%f %f %d\n", mpctx
->begin_skip
, v
, 0);
2840 mp_tmsg(MSGT_CPLAYER
, MSGL_INFO
, "EDL skip end, line written.\n");
2842 mpctx
->begin_skip
= MP_NOPTS_VALUE
;
2847 case MP_CMD_SWITCH_RATIO
:
2850 if (cmd
->nargs
== 0 || cmd
->args
[0].v
.f
== -1)
2851 opts
->movie_aspect
= (float) sh_video
->disp_w
/ sh_video
->disp_h
;
2853 opts
->movie_aspect
= cmd
->args
[0].v
.f
;
2854 mpcodecs_config_vo(sh_video
, sh_video
->disp_w
, sh_video
->disp_h
, 0);
2857 case MP_CMD_SPEED_INCR
:{
2858 float v
= cmd
->args
[0].v
.f
;
2859 mp_property_do("speed", M_PROPERTY_STEP_UP
, &v
, mpctx
);
2860 show_property_osd(mpctx
, "speed");
2864 case MP_CMD_SPEED_MULT
:
2865 case_fallthrough_hack
= true;
2867 case MP_CMD_SPEED_SET
:{
2868 float v
= cmd
->args
[0].v
.f
;
2869 if (case_fallthrough_hack
)
2870 v
*= mpctx
->opts
.playback_speed
;
2871 mp_property_do("speed", M_PROPERTY_SET
, &v
, mpctx
);
2872 show_property_osd(mpctx
, "speed");
2876 case MP_CMD_FRAME_STEP
:
2877 add_step_frame(mpctx
);
2880 case MP_CMD_FILE_FILTER
:
2881 file_filter
= cmd
->args
[0].v
.i
;
2885 exit_player_with_rc(mpctx
, EXIT_QUIT
,
2886 (cmd
->nargs
> 0) ? cmd
->args
[0].v
.i
: 0);
2888 case MP_CMD_PLAY_TREE_STEP
:{
2889 int n
= cmd
->args
[0].v
.i
== 0 ? 1 : cmd
->args
[0].v
.i
;
2890 int force
= cmd
->args
[1].v
.i
;
2893 if (!force
&& mpctx
->playtree_iter
) {
2894 play_tree_iter_t
*i
=
2895 play_tree_iter_new_copy(mpctx
->playtree_iter
);
2896 if (play_tree_iter_step(i
, n
, 0) ==
2897 PLAY_TREE_ITER_ENTRY
)
2899 (n
> 0) ? PT_NEXT_ENTRY
: PT_PREV_ENTRY
;
2900 play_tree_iter_free(i
);
2902 mpctx
->stop_play
= (n
> 0) ? PT_NEXT_ENTRY
: PT_PREV_ENTRY
;
2903 if (mpctx
->stop_play
)
2904 mpctx
->play_tree_step
= n
;
2909 case MP_CMD_PLAY_TREE_UP_STEP
:{
2910 int n
= cmd
->args
[0].v
.i
> 0 ? 1 : -1;
2911 int force
= cmd
->args
[1].v
.i
;
2913 if (!force
&& mpctx
->playtree_iter
) {
2914 play_tree_iter_t
*i
=
2915 play_tree_iter_new_copy(mpctx
->playtree_iter
);
2916 if (play_tree_iter_up_step(i
, n
, 0) == PLAY_TREE_ITER_ENTRY
)
2917 mpctx
->stop_play
= (n
> 0) ? PT_UP_NEXT
: PT_UP_PREV
;
2918 play_tree_iter_free(i
);
2920 mpctx
->stop_play
= (n
> 0) ? PT_UP_NEXT
: PT_UP_PREV
;
2924 case MP_CMD_PLAY_ALT_SRC_STEP
:
2925 if (mpctx
->playtree_iter
&& mpctx
->playtree_iter
->num_files
> 1) {
2926 int v
= cmd
->args
[0].v
.i
;
2928 && mpctx
->playtree_iter
->file
<
2929 mpctx
->playtree_iter
->num_files
)
2930 mpctx
->stop_play
= PT_NEXT_SRC
;
2931 else if (v
< 0 && mpctx
->playtree_iter
->file
> 1)
2932 mpctx
->stop_play
= PT_PREV_SRC
;
2936 case MP_CMD_SUB_STEP
:
2938 int movement
= cmd
->args
[0].v
.i
;
2939 step_sub(mpctx
->subdata
, mpctx
->video_pts
, movement
);
2941 if (mpctx
->osd
->ass_track
)
2943 ass_step_sub(mpctx
->osd
->ass_track
,
2945 sub_delay
) * 1000 + .5, movement
) / 1000.;
2947 set_osd_tmsg(OSD_MSG_SUB_DELAY
, 1, osd_duration
,
2948 "Sub delay: %d ms", ROUND(sub_delay
* 1000));
2952 case MP_CMD_SUB_LOG
:
2957 int v
= cmd
->args
[0].v
.i
;
2958 int max
= (opts
->term_osd
2959 && !sh_video
) ? MAX_TERM_OSD_LEVEL
: MAX_OSD_LEVEL
;
2960 if (opts
->osd_level
> max
)
2961 opts
->osd_level
= max
;
2963 opts
->osd_level
= (opts
->osd_level
+ 1) % (max
+ 1);
2965 opts
->osd_level
= v
> max
? max
: v
;
2966 /* Show OSD state when disabled, but not when an explicit
2967 argument is given to the OSD command, i.e. in slave mode. */
2968 if (v
== -1 && opts
->osd_level
<= 1)
2969 set_osd_tmsg(OSD_MSG_OSD_STATUS
, 0, osd_duration
,
2971 opts
->osd_level
? mp_gtext("enabled") :
2972 mp_gtext("disabled"));
2974 rm_osd_msg(OSD_MSG_OSD_STATUS
);
2978 case MP_CMD_OSD_SHOW_TEXT
:
2979 set_osd_msg(OSD_MSG_TEXT
, cmd
->args
[2].v
.i
,
2981 0 ? osd_duration
: cmd
->args
[1].v
.i
),
2982 "%-.63s", cmd
->args
[0].v
.s
);
2985 case MP_CMD_OSD_SHOW_PROPERTY_TEXT
:{
2986 char *txt
= m_properties_expand_string(mp_properties
,
2989 /* if no argument supplied take default osd_duration, else <arg> ms. */
2991 set_osd_msg(OSD_MSG_TEXT
, cmd
->args
[2].v
.i
,
2993 0 ? osd_duration
: cmd
->args
[1].v
.i
),
3000 case MP_CMD_LOADFILE
:{
3001 play_tree_t
*e
= play_tree_new();
3002 play_tree_add_file(e
, cmd
->args
[0].v
.s
);
3004 if (cmd
->args
[1].v
.i
) // append
3005 play_tree_append_entry(mpctx
->playtree
->child
, e
);
3007 // Go back to the starting point.
3008 while (play_tree_iter_up_step
3009 (mpctx
->playtree_iter
, 0, 1) != PLAY_TREE_ITER_END
)
3011 play_tree_free_list(mpctx
->playtree
->child
, 1);
3012 play_tree_set_child(mpctx
->playtree
, e
);
3013 pt_iter_goto_head(mpctx
->playtree_iter
);
3014 mpctx
->stop_play
= PT_NEXT_SRC
;
3019 case MP_CMD_LOADLIST
:{
3020 play_tree_t
*e
= parse_playlist_file(mpctx
->mconfig
, cmd
->args
[0].v
.s
);
3022 mp_tmsg(MSGT_CPLAYER
, MSGL_ERR
,
3023 "\nUnable to load playlist %s.\n", cmd
->args
[0].v
.s
);
3025 if (cmd
->args
[1].v
.i
) // append
3026 play_tree_append_entry(mpctx
->playtree
->child
, e
);
3028 // Go back to the starting point.
3029 while (play_tree_iter_up_step
3030 (mpctx
->playtree_iter
, 0, 1)
3031 != PLAY_TREE_ITER_END
)
3033 play_tree_free_list(mpctx
->playtree
->child
, 1);
3034 play_tree_set_child(mpctx
->playtree
, e
);
3035 pt_iter_goto_head(mpctx
->playtree_iter
);
3036 mpctx
->stop_play
= PT_NEXT_SRC
;
3043 // Go back to the starting point.
3044 while (play_tree_iter_up_step
3045 (mpctx
->playtree_iter
, 0, 1) != PLAY_TREE_ITER_END
)
3047 mpctx
->stop_play
= PT_STOP
;
3050 case MP_CMD_OSD_SHOW_PROGRESSION
:{
3051 int len
= get_time_length(mpctx
);
3052 int pts
= get_current_time(mpctx
);
3053 set_osd_bar(mpctx
, 0, "Position", 0, 100, get_percent_pos(mpctx
));
3054 set_osd_msg(OSD_MSG_TEXT
, 1, osd_duration
,
3055 "%c %02d:%02d:%02d / %02d:%02d:%02d",
3056 mpctx
->osd_function
, pts
/3600, (pts
/60)%60, pts
%60,
3057 len
/3600, (len
/60)%60, len
%60);
3062 case MP_CMD_RADIO_STEP_CHANNEL
:
3063 if (mpctx
->demuxer
->stream
->type
== STREAMTYPE_RADIO
) {
3064 int v
= cmd
->args
[0].v
.i
;
3066 radio_step_channel(mpctx
->demuxer
->stream
,
3067 RADIO_CHANNEL_HIGHER
);
3069 radio_step_channel(mpctx
->demuxer
->stream
,
3070 RADIO_CHANNEL_LOWER
);
3071 if (radio_get_channel_name(mpctx
->demuxer
->stream
)) {
3072 set_osd_tmsg(OSD_MSG_RADIO_CHANNEL
, 1, osd_duration
,
3074 radio_get_channel_name(mpctx
->demuxer
->stream
));
3079 case MP_CMD_RADIO_SET_CHANNEL
:
3080 if (mpctx
->demuxer
->stream
->type
== STREAMTYPE_RADIO
) {
3081 radio_set_channel(mpctx
->demuxer
->stream
, cmd
->args
[0].v
.s
);
3082 if (radio_get_channel_name(mpctx
->demuxer
->stream
)) {
3083 set_osd_tmsg(OSD_MSG_RADIO_CHANNEL
, 1, osd_duration
,
3085 radio_get_channel_name(mpctx
->demuxer
->stream
));
3090 case MP_CMD_RADIO_SET_FREQ
:
3091 if (mpctx
->demuxer
->stream
->type
== STREAMTYPE_RADIO
)
3092 radio_set_freq(mpctx
->demuxer
->stream
, cmd
->args
[0].v
.f
);
3095 case MP_CMD_RADIO_STEP_FREQ
:
3096 if (mpctx
->demuxer
->stream
->type
== STREAMTYPE_RADIO
)
3097 radio_step_freq(mpctx
->demuxer
->stream
, cmd
->args
[0].v
.f
);
3102 case MP_CMD_TV_START_SCAN
:
3103 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3104 tv_start_scan((tvi_handle_t
*) (mpctx
->demuxer
->priv
),1);
3106 case MP_CMD_TV_SET_FREQ
:
3107 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3108 tv_set_freq((tvi_handle_t
*) (mpctx
->demuxer
->priv
),
3109 cmd
->args
[0].v
.f
* 16.0);
3111 else if (mpctx
->stream
&& mpctx
->stream
->type
== STREAMTYPE_PVR
) {
3112 pvr_set_freq (mpctx
->stream
, ROUND (cmd
->args
[0].v
.f
));
3113 set_osd_msg (OSD_MSG_TV_CHANNEL
, 1, osd_duration
, "%s: %s",
3114 pvr_get_current_channelname (mpctx
->stream
),
3115 pvr_get_current_stationname (mpctx
->stream
));
3117 #endif /* CONFIG_PVR */
3120 case MP_CMD_TV_STEP_FREQ
:
3121 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3122 tv_step_freq((tvi_handle_t
*) (mpctx
->demuxer
->priv
),
3123 cmd
->args
[0].v
.f
* 16.0);
3125 else if (mpctx
->stream
&& mpctx
->stream
->type
== STREAMTYPE_PVR
) {
3126 pvr_force_freq_step (mpctx
->stream
, ROUND (cmd
->args
[0].v
.f
));
3127 set_osd_msg (OSD_MSG_TV_CHANNEL
, 1, osd_duration
, "%s: f %d",
3128 pvr_get_current_channelname (mpctx
->stream
),
3129 pvr_get_current_frequency (mpctx
->stream
));
3131 #endif /* CONFIG_PVR */
3134 case MP_CMD_TV_SET_NORM
:
3135 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3136 tv_set_norm((tvi_handle_t
*) (mpctx
->demuxer
->priv
),
3140 case MP_CMD_TV_STEP_CHANNEL
:{
3141 if (mpctx
->file_format
== DEMUXER_TYPE_TV
) {
3142 int v
= cmd
->args
[0].v
.i
;
3144 tv_step_channel((tvi_handle_t
*) (mpctx
->
3148 tv_step_channel((tvi_handle_t
*) (mpctx
->
3152 if (tv_channel_list
) {
3153 set_osd_tmsg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
,
3154 "Channel: %s", tv_channel_current
->name
);
3155 //vo_osd_changed(OSDTYPE_SUBTITLE);
3159 else if (mpctx
->stream
&&
3160 mpctx
->stream
->type
== STREAMTYPE_PVR
) {
3161 pvr_set_channel_step (mpctx
->stream
, cmd
->args
[0].v
.i
);
3162 set_osd_msg (OSD_MSG_TV_CHANNEL
, 1, osd_duration
, "%s: %s",
3163 pvr_get_current_channelname (mpctx
->stream
),
3164 pvr_get_current_stationname (mpctx
->stream
));
3166 #endif /* CONFIG_PVR */
3169 if (mpctx
->stream
->type
== STREAMTYPE_DVB
) {
3171 int v
= cmd
->args
[0].v
.i
;
3173 mpctx
->last_dvb_step
= v
;
3175 dir
= DVB_CHANNEL_HIGHER
;
3177 dir
= DVB_CHANNEL_LOWER
;
3180 if (dvb_step_channel(mpctx
->stream
, dir
)) {
3181 mpctx
->stop_play
= PT_NEXT_ENTRY
;
3182 mpctx
->dvbin_reopen
= 1;
3185 #endif /* CONFIG_DVBIN */
3188 case MP_CMD_TV_SET_CHANNEL
:
3189 if (mpctx
->file_format
== DEMUXER_TYPE_TV
) {
3190 tv_set_channel((tvi_handle_t
*) (mpctx
->demuxer
->priv
),
3192 if (tv_channel_list
) {
3193 set_osd_tmsg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
,
3194 "Channel: %s", tv_channel_current
->name
);
3195 //vo_osd_changed(OSDTYPE_SUBTITLE);
3199 else if (mpctx
->stream
&& mpctx
->stream
->type
== STREAMTYPE_PVR
) {
3200 pvr_set_channel (mpctx
->stream
, cmd
->args
[0].v
.s
);
3201 set_osd_msg (OSD_MSG_TV_CHANNEL
, 1, osd_duration
, "%s: %s",
3202 pvr_get_current_channelname (mpctx
->stream
),
3203 pvr_get_current_stationname (mpctx
->stream
));
3205 #endif /* CONFIG_PVR */
3209 case MP_CMD_DVB_SET_CHANNEL
:
3210 if (mpctx
->stream
->type
== STREAMTYPE_DVB
) {
3211 mpctx
->last_dvb_step
= 1;
3213 if (dvb_set_channel(mpctx
->stream
, cmd
->args
[1].v
.i
,
3214 cmd
->args
[0].v
.i
)) {
3215 mpctx
->stop_play
= PT_NEXT_ENTRY
;
3216 mpctx
->dvbin_reopen
= 1;
3220 #endif /* CONFIG_DVBIN */
3222 case MP_CMD_TV_LAST_CHANNEL
:
3223 if (mpctx
->file_format
== DEMUXER_TYPE_TV
) {
3224 tv_last_channel((tvi_handle_t
*) (mpctx
->demuxer
->priv
));
3225 if (tv_channel_list
) {
3226 set_osd_tmsg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
,
3227 "Channel: %s", tv_channel_current
->name
);
3228 //vo_osd_changed(OSDTYPE_SUBTITLE);
3232 else if (mpctx
->stream
&& mpctx
->stream
->type
== STREAMTYPE_PVR
) {
3233 pvr_set_lastchannel (mpctx
->stream
);
3234 set_osd_msg (OSD_MSG_TV_CHANNEL
, 1, osd_duration
, "%s: %s",
3235 pvr_get_current_channelname (mpctx
->stream
),
3236 pvr_get_current_stationname (mpctx
->stream
));
3238 #endif /* CONFIG_PVR */
3241 case MP_CMD_TV_STEP_NORM
:
3242 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3243 tv_step_norm((tvi_handle_t
*) (mpctx
->demuxer
->priv
));
3246 case MP_CMD_TV_STEP_CHANNEL_LIST
:
3247 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3248 tv_step_chanlist((tvi_handle_t
*) (mpctx
->demuxer
->priv
));
3250 #endif /* CONFIG_TV */
3251 case MP_CMD_TV_TELETEXT_ADD_DEC
:
3252 if (mpctx
->demuxer
->teletext
)
3253 teletext_control(mpctx
->demuxer
->teletext
,TV_VBI_CONTROL_ADD_DEC
,
3254 &(cmd
->args
[0].v
.s
));
3256 case MP_CMD_TV_TELETEXT_GO_LINK
:
3257 if (mpctx
->demuxer
->teletext
)
3258 teletext_control(mpctx
->demuxer
->teletext
,TV_VBI_CONTROL_GO_LINK
,
3259 &(cmd
->args
[0].v
.i
));
3262 case MP_CMD_SUB_LOAD
:
3264 int n
= mpctx
->set_of_sub_size
;
3265 add_subtitles(mpctx
, cmd
->args
[0].v
.s
, sh_video
->fps
, 0);
3266 if (n
!= mpctx
->set_of_sub_size
) {
3267 mpctx
->sub_counts
[SUB_SOURCE_SUBS
]++;
3268 ++mpctx
->global_sub_size
;
3273 case MP_CMD_SUB_REMOVE
:
3275 int v
= cmd
->args
[0].v
.i
;
3277 remove_subtitle_range(mpctx
, 0, mpctx
->set_of_sub_size
);
3278 } else if (v
< mpctx
->set_of_sub_size
) {
3279 remove_subtitle_range(mpctx
, v
, 1);
3284 case MP_CMD_GET_SUB_VISIBILITY
:
3286 mp_msg(MSGT_GLOBAL
, MSGL_INFO
,
3287 "ANS_SUB_VISIBILITY=%d\n", sub_visibility
);
3291 case MP_CMD_SCREENSHOT
:
3292 if (mpctx
->video_out
&& mpctx
->video_out
->config_ok
) {
3293 mp_msg(MSGT_CPLAYER
, MSGL_INFO
, "sending VFCTRL_SCREENSHOT!\n");
3295 ((vf_instance_t
*) sh_video
->vfilter
)->
3296 control(sh_video
->vfilter
, VFCTRL_SCREENSHOT
,
3298 mp_msg(MSGT_CPLAYER
, MSGL_INFO
, "failed (forgot -vf screenshot?)\n");
3302 case MP_CMD_VF_CHANGE_RECTANGLE
:
3305 set_rectangle(sh_video
, cmd
->args
[0].v
.i
, cmd
->args
[1].v
.i
);
3308 case MP_CMD_GET_TIME_LENGTH
:{
3309 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_LENGTH=%.2f\n",
3310 get_time_length(mpctx
));
3314 case MP_CMD_GET_FILENAME
:{
3315 char *inf
= get_metadata(mpctx
, META_NAME
);
3316 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_FILENAME='%s'\n", inf
);
3321 case MP_CMD_GET_VIDEO_CODEC
:{
3322 char *inf
= get_metadata(mpctx
, META_VIDEO_CODEC
);
3323 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_VIDEO_CODEC='%s'\n", inf
);
3328 case MP_CMD_GET_VIDEO_BITRATE
:{
3329 char *inf
= get_metadata(mpctx
, META_VIDEO_BITRATE
);
3330 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_VIDEO_BITRATE='%s'\n", inf
);
3335 case MP_CMD_GET_VIDEO_RESOLUTION
:{
3336 char *inf
= get_metadata(mpctx
, META_VIDEO_RESOLUTION
);
3337 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_VIDEO_RESOLUTION='%s'\n", inf
);
3342 case MP_CMD_GET_AUDIO_CODEC
:{
3343 char *inf
= get_metadata(mpctx
, META_AUDIO_CODEC
);
3344 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_AUDIO_CODEC='%s'\n", inf
);
3349 case MP_CMD_GET_AUDIO_BITRATE
:{
3350 char *inf
= get_metadata(mpctx
, META_AUDIO_BITRATE
);
3351 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_AUDIO_BITRATE='%s'\n", inf
);
3356 case MP_CMD_GET_AUDIO_SAMPLES
:{
3357 char *inf
= get_metadata(mpctx
, META_AUDIO_SAMPLES
);
3358 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_AUDIO_SAMPLES='%s'\n", inf
);
3363 case MP_CMD_GET_META_TITLE
:{
3364 char *inf
= get_metadata(mpctx
, META_INFO_TITLE
);
3365 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_TITLE='%s'\n", inf
);
3370 case MP_CMD_GET_META_ARTIST
:{
3371 char *inf
= get_metadata(mpctx
, META_INFO_ARTIST
);
3372 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_ARTIST='%s'\n", inf
);
3377 case MP_CMD_GET_META_ALBUM
:{
3378 char *inf
= get_metadata(mpctx
, META_INFO_ALBUM
);
3379 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_ALBUM='%s'\n", inf
);
3384 case MP_CMD_GET_META_YEAR
:{
3385 char *inf
= get_metadata(mpctx
, META_INFO_YEAR
);
3386 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_YEAR='%s'\n", inf
);
3391 case MP_CMD_GET_META_COMMENT
:{
3392 char *inf
= get_metadata(mpctx
, META_INFO_COMMENT
);
3393 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_COMMENT='%s'\n", inf
);
3398 case MP_CMD_GET_META_TRACK
:{
3399 char *inf
= get_metadata(mpctx
, META_INFO_TRACK
);
3400 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_TRACK='%s'\n", inf
);
3405 case MP_CMD_GET_META_GENRE
:{
3406 char *inf
= get_metadata(mpctx
, META_INFO_GENRE
);
3407 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_GENRE='%s'\n", inf
);
3412 case MP_CMD_GET_VO_FULLSCREEN
:
3413 if (mpctx
->video_out
&& mpctx
->video_out
->config_ok
)
3414 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_VO_FULLSCREEN=%d\n", vo_fs
);
3417 case MP_CMD_GET_PERCENT_POS
:
3418 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_PERCENT_POSITION=%d\n",
3419 get_percent_pos(mpctx
));
3422 case MP_CMD_GET_TIME_POS
:{
3423 float pos
= get_current_time(mpctx
);
3424 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_TIME_POSITION=%.1f\n", pos
);
3431 execl("/bin/sh", "sh", "-c", cmd
->args
[0].v
.s
, NULL
);
3437 case MP_CMD_KEYDOWN_EVENTS
:
3438 mplayer_put_key(mpctx
->key_fifo
, cmd
->args
[0].v
.i
);
3441 case MP_CMD_SET_MOUSE_POS
:{
3442 int pointer_x
, pointer_y
;
3444 pointer_x
= cmd
->args
[0].v
.i
;
3445 pointer_y
= cmd
->args
[1].v
.i
;
3446 rescale_input_coordinates(mpctx
, pointer_x
, pointer_y
, &dx
, &dy
);
3447 #ifdef CONFIG_DVDNAV
3448 if (mpctx
->stream
->type
== STREAMTYPE_DVDNAV
3449 && dx
> 0.0 && dy
> 0.0) {
3451 pointer_x
= (int) (dx
* (double) sh_video
->disp_w
);
3452 pointer_y
= (int) (dy
* (double) sh_video
->disp_h
);
3453 mp_dvdnav_update_mouse_pos(mpctx
->stream
,
3454 pointer_x
, pointer_y
, &button
);
3455 if (opts
->osd_level
> 1 && button
> 0)
3456 set_osd_msg(OSD_MSG_TEXT
, 1, osd_duration
,
3457 "Selected button number %d", button
);
3461 if (use_menu
&& dx
>= 0.0 && dy
>= 0.0)
3462 menu_update_mouse_pos(dx
, dy
);
3467 #ifdef CONFIG_DVDNAV
3468 case MP_CMD_DVDNAV
:{
3471 mp_command_type command
= 0;
3472 if (mpctx
->stream
->type
!= STREAMTYPE_DVDNAV
)
3475 for (i
= 0; mp_dvdnav_bindings
[i
].name
; i
++)
3476 if (cmd
->args
[0].v
.s
&&
3477 !strcasecmp (cmd
->args
[0].v
.s
,
3478 mp_dvdnav_bindings
[i
].name
))
3479 command
= mp_dvdnav_bindings
[i
].cmd
;
3481 mp_dvdnav_handle_input(mpctx
->stream
,command
,&button
);
3482 if (opts
->osd_level
> 1 && button
> 0)
3483 set_osd_msg(OSD_MSG_TEXT
, 1, osd_duration
,
3484 "Selected button number %d", button
);
3488 case MP_CMD_SWITCH_TITLE
:
3489 if (mpctx
->stream
->type
== STREAMTYPE_DVDNAV
)
3490 mp_dvdnav_switch_title(mpctx
->stream
, cmd
->args
[0].v
.i
);
3495 case MP_CMD_AF_SWITCH
:
3498 af_uninit(mpctx
->mixer
.afilter
);
3499 af_init(mpctx
->mixer
.afilter
);
3506 char* af_args
= strdup(cmd
->args
[0].v
.s
);
3507 char* af_commands
= af_args
;
3510 while ((af_command
= strsep(&af_commands
, ",")) != NULL
)
3512 if (cmd
->id
== MP_CMD_AF_DEL
)
3514 af
= af_get(mpctx
->mixer
.afilter
, af_command
);
3516 af_remove(mpctx
->mixer
.afilter
, af
);
3519 af_add(mpctx
->mixer
.afilter
, af_command
);
3521 reinit_audio_chain(mpctx
);
3528 af_uninit(mpctx
->mixer
.afilter
);
3529 af_init(mpctx
->mixer
.afilter
);
3530 reinit_audio_chain(mpctx
);
3532 case MP_CMD_AF_CMDLINE
:
3534 af_instance_t
*af
= af_get(sh_audio
->afilter
, cmd
->args
[0].v
.s
);
3536 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
3537 "Filter '%s' not found in chain.\n", cmd
->args
[0].v
.s
);
3540 af
->control(af
, AF_CONTROL_COMMAND_LINE
, cmd
->args
[1].v
.s
);
3541 af_reinit(sh_audio
->afilter
, af
);
3546 mp_msg(MSGT_CPLAYER
, MSGL_V
,
3547 "Received unknown cmd %s\n", cmd
->name
);
3550 switch (cmd
->pausing
) {
3551 case 1: // "pausing"
3552 pause_player(mpctx
);
3554 case 3: // "pausing_toggle"
3556 unpause_player(mpctx
);
3558 pause_player(mpctx
);