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 "libvo/csputils.h"
45 #include "sub/font_load.h"
47 #include "libao2/audio_out.h"
50 #include "libmpcodecs/dec_video.h"
51 #include "libmpcodecs/dec_audio.h"
52 #include "libmpcodecs/dec_teletext.h"
53 #include "osdep/strsep.h"
54 #include "sub/vobsub.h"
55 #include "sub/spudec.h"
57 #include "sub/ass_mp.h"
58 #include "stream/tv.h"
59 #include "stream/stream_radio.h"
60 #include "stream/pvr.h"
62 #include "stream/dvbin.h"
65 #include "stream/stream_dvd.h"
67 #include "stream/stream_dvdnav.h"
69 #include "screenshot.h"
73 #include "libavutil/avstring.h"
75 static void rescale_input_coordinates(struct MPContext
*mpctx
, int ix
, int iy
,
76 double *dx
, double *dy
)
78 struct MPOpts
*opts
= &mpctx
->opts
;
79 struct vo
*vo
= mpctx
->video_out
;
80 //remove the borders, if any, and rescale to the range [0,1],[0,1]
81 if (vo_fs
) { //we are in full-screen mode
82 if (opts
->vo_screenwidth
> vo
->dwidth
)
83 // there are borders along the x axis
84 ix
-= (opts
->vo_screenwidth
- vo
->dwidth
) / 2;
85 if (opts
->vo_screenheight
> vo
->dheight
)
86 // there are borders along the y axis (usual way)
87 iy
-= (opts
->vo_screenheight
- vo
->dheight
) / 2;
89 if (ix
< 0 || ix
> vo
->dwidth
) {
92 } //we are on one of the borders
93 if (iy
< 0 || iy
> vo
->dheight
) {
96 } //we are on one of the borders
99 *dx
= (double) ix
/ (double) vo
->dwidth
;
100 *dy
= (double) iy
/ (double) vo
->dheight
;
102 mp_msg(MSGT_CPLAYER
, MSGL_V
,
103 "\r\nrescaled coordinates: %.3f, %.3f, screen (%d x %d), vodisplay: (%d, %d), fullscreen: %d\r\n",
104 *dx
, *dy
, opts
->vo_screenwidth
, opts
->vo_screenheight
, vo
->dwidth
,
108 static int sub_pos_by_source(MPContext
*mpctx
, int src
)
111 if (src
>= SUB_SOURCES
|| mpctx
->sub_counts
[src
] == 0)
113 for (i
= 0; i
< src
; i
++)
114 cnt
+= mpctx
->sub_counts
[i
];
118 static int sub_source_and_index_by_pos(MPContext
*mpctx
, int *pos
)
122 for (i
= 0; i
< SUB_SOURCES
; i
++) {
123 int cnt
= mpctx
->sub_counts
[i
];
124 if (*pos
>= start
&& *pos
< start
+ cnt
) {
134 static int sub_source_by_pos(MPContext
*mpctx
, int pos
)
136 return sub_source_and_index_by_pos(mpctx
, &pos
);
139 static int sub_source_pos(MPContext
*mpctx
)
141 int pos
= mpctx
->global_sub_pos
;
142 sub_source_and_index_by_pos(mpctx
, &pos
);
146 static int sub_source(MPContext
*mpctx
)
148 return sub_source_by_pos(mpctx
, mpctx
->global_sub_pos
);
151 static void update_global_sub_size(MPContext
*mpctx
)
153 struct MPOpts
*opts
= &mpctx
->opts
;
157 // update number of demuxer sub streams
158 for (i
= 0; i
< MAX_S_STREAMS
; i
++)
159 if (mpctx
->d_sub
->demuxer
->s_streams
[i
])
161 if (cnt
> mpctx
->sub_counts
[SUB_SOURCE_DEMUX
])
162 mpctx
->sub_counts
[SUB_SOURCE_DEMUX
] = cnt
;
164 // update global size
165 mpctx
->global_sub_size
= 0;
166 for (i
= 0; i
< SUB_SOURCES
; i
++)
167 mpctx
->global_sub_size
+= mpctx
->sub_counts
[i
];
169 // update global_sub_pos if we auto-detected a demuxer sub
170 if (mpctx
->global_sub_pos
== -1) {
172 if (mpctx
->demuxer
->sub
)
173 sub_id
= mpctx
->demuxer
->sub
->id
;
175 sub_id
= opts
->sub_id
;
176 if (sub_id
>= 0 && sub_id
< mpctx
->sub_counts
[SUB_SOURCE_DEMUX
])
177 mpctx
->global_sub_pos
= sub_pos_by_source(mpctx
, SUB_SOURCE_DEMUX
) +
183 * \brief Log the currently displayed subtitle to a file
185 * Logs the current or last displayed subtitle together with filename
186 * and time information to ~/.mplayer/subtitle_log
188 * Intended purpose is to allow convenient marking of bogus subtitles
189 * which need to be fixed while watching the movie.
192 static void log_sub(struct MPContext
*mpctx
)
197 struct subtitle
*vo_sub_last
= mpctx
->vo_sub_last
;
199 if (mpctx
->subdata
== NULL
|| vo_sub_last
== NULL
)
201 fname
= get_path("subtitle_log");
202 f
= fopen(fname
, "a");
205 fprintf(f
, "----------------------------------------------------------\n");
206 if (mpctx
->subdata
->sub_uses_time
) {
208 "N: %s S: %02ld:%02ld:%02ld.%02ld E: %02ld:%02ld:%02ld.%02ld\n",
209 mpctx
->filename
, vo_sub_last
->start
/ 360000,
210 (vo_sub_last
->start
/ 6000) % 60,
211 (vo_sub_last
->start
/ 100) % 60, vo_sub_last
->start
% 100,
212 vo_sub_last
->end
/ 360000, (vo_sub_last
->end
/ 6000) % 60,
213 (vo_sub_last
->end
/ 100) % 60, vo_sub_last
->end
% 100);
215 fprintf(f
, "N: %s S: %ld E: %ld\n", mpctx
->filename
,
216 vo_sub_last
->start
, vo_sub_last
->end
);
218 for (i
= 0; i
< vo_sub_last
->lines
; i
++)
219 fprintf(f
, "%s\n", vo_sub_last
->text
[i
]);
224 static int mp_property_generic_option(struct m_option
*prop
, int action
,
225 void *arg
, MPContext
*mpctx
)
227 char *optname
= prop
->priv
;
228 const struct m_option
*opt
= m_config_get_option(mpctx
->mconfig
,
230 void *valptr
= m_option_get_ptr(opt
, &mpctx
->opts
);
233 case M_PROPERTY_GET_TYPE
:
234 *(const struct m_option
**)arg
= opt
;
235 return M_PROPERTY_OK
;
237 m_option_copy(opt
, arg
, valptr
);
238 return M_PROPERTY_OK
;
240 m_option_copy(opt
, valptr
, arg
);
241 return M_PROPERTY_OK
;
242 case M_PROPERTY_STEP_UP
:
243 if (opt
->type
== &m_option_type_choice
) {
244 int v
= *(int *) valptr
;
246 struct m_opt_choice_alternatives
*alt
;
247 for (alt
= opt
->priv
; alt
->name
; alt
++)
248 if ((unsigned) alt
->value
- v
- 1 < (unsigned) best
- v
- 1)
250 *(int *) valptr
= best
;
251 return M_PROPERTY_OK
;
255 return M_PROPERTY_NOT_IMPLEMENTED
;
259 static int mp_property_osdlevel(m_option_t
*prop
, int action
, void *arg
,
262 return m_property_choice(prop
, action
, arg
, &mpctx
->opts
.osd_level
);
266 static int mp_property_loop(m_option_t
*prop
, int action
, void *arg
,
269 struct MPOpts
*opts
= &mpctx
->opts
;
271 case M_PROPERTY_PRINT
:
273 return M_PROPERTY_ERROR
;
274 if (opts
->loop_times
< 0)
275 *(char **)arg
= talloc_strdup(NULL
, "off");
276 else if (opts
->loop_times
== 0)
277 *(char **)arg
= talloc_strdup(NULL
, "inf");
280 return M_PROPERTY_OK
;
282 return m_property_int_range(prop
, action
, arg
, &opts
->loop_times
);
285 /// Playback speed (RW)
286 static int mp_property_playback_speed(m_option_t
*prop
, int action
,
287 void *arg
, MPContext
*mpctx
)
289 struct MPOpts
*opts
= &mpctx
->opts
;
290 double orig_speed
= opts
->playback_speed
;
294 return M_PROPERTY_ERROR
;
295 opts
->playback_speed
= *(float *) arg
;
297 case M_PROPERTY_STEP_UP
:
298 case M_PROPERTY_STEP_DOWN
:
299 opts
->playback_speed
+= (arg
? *(float *) arg
: 0.1) *
300 (action
== M_PROPERTY_STEP_DOWN
? -1 : 1);
302 M_PROPERTY_CLAMP(prop
, opts
->playback_speed
);
303 // Adjust time until next frame flip for nosound mode
304 mpctx
->time_frame
*= orig_speed
/ opts
->playback_speed
;
305 reinit_audio_chain(mpctx
);
306 return M_PROPERTY_OK
;
308 return m_property_float_range(prop
, action
, arg
, &opts
->playback_speed
);
311 /// filename with path (RO)
312 static int mp_property_path(m_option_t
*prop
, int action
, void *arg
,
315 return m_property_string_ro(prop
, action
, arg
, mpctx
->filename
);
318 /// filename without path (RO)
319 static int mp_property_filename(m_option_t
*prop
, int action
, void *arg
,
323 if (!mpctx
->filename
)
324 return M_PROPERTY_UNAVAILABLE
;
325 f
= (char *)mp_basename(mpctx
->filename
);
328 return m_property_string_ro(prop
, action
, arg
, f
);
331 /// Demuxer name (RO)
332 static int mp_property_demuxer(m_option_t
*prop
, int action
, void *arg
,
336 return M_PROPERTY_UNAVAILABLE
;
337 return m_property_string_ro(prop
, action
, arg
,
338 (char *) mpctx
->demuxer
->desc
->name
);
341 /// Position in the stream (RW)
342 static int mp_property_stream_pos(m_option_t
*prop
, int action
, void *arg
,
345 if (!mpctx
->demuxer
|| !mpctx
->demuxer
->stream
)
346 return M_PROPERTY_UNAVAILABLE
;
348 return M_PROPERTY_ERROR
;
351 *(off_t
*) arg
= stream_tell(mpctx
->demuxer
->stream
);
352 return M_PROPERTY_OK
;
354 M_PROPERTY_CLAMP(prop
, *(off_t
*) arg
);
355 stream_seek(mpctx
->demuxer
->stream
, *(off_t
*) arg
);
356 return M_PROPERTY_OK
;
358 return M_PROPERTY_NOT_IMPLEMENTED
;
361 /// Stream start offset (RO)
362 static int mp_property_stream_start(m_option_t
*prop
, int action
,
363 void *arg
, MPContext
*mpctx
)
365 if (!mpctx
->demuxer
|| !mpctx
->demuxer
->stream
)
366 return M_PROPERTY_UNAVAILABLE
;
369 *(off_t
*) arg
= mpctx
->demuxer
->stream
->start_pos
;
370 return M_PROPERTY_OK
;
372 return M_PROPERTY_NOT_IMPLEMENTED
;
375 /// Stream end offset (RO)
376 static int mp_property_stream_end(m_option_t
*prop
, int action
, void *arg
,
379 if (!mpctx
->demuxer
|| !mpctx
->demuxer
->stream
)
380 return M_PROPERTY_UNAVAILABLE
;
383 *(off_t
*) arg
= mpctx
->demuxer
->stream
->end_pos
;
384 return M_PROPERTY_OK
;
386 return M_PROPERTY_NOT_IMPLEMENTED
;
389 /// Stream length (RO)
390 static int mp_property_stream_length(m_option_t
*prop
, int action
,
391 void *arg
, MPContext
*mpctx
)
393 if (!mpctx
->demuxer
|| !mpctx
->demuxer
->stream
)
394 return M_PROPERTY_UNAVAILABLE
;
398 mpctx
->demuxer
->stream
->end_pos
- mpctx
->demuxer
->stream
->start_pos
;
399 return M_PROPERTY_OK
;
401 return M_PROPERTY_NOT_IMPLEMENTED
;
404 /// Current stream position in seconds (RO)
405 static int mp_property_stream_time_pos(m_option_t
*prop
, int action
,
406 void *arg
, MPContext
*mpctx
)
408 if (!mpctx
->demuxer
|| mpctx
->demuxer
->stream_pts
== MP_NOPTS_VALUE
)
409 return M_PROPERTY_UNAVAILABLE
;
411 return m_property_time_ro(prop
, action
, arg
, mpctx
->demuxer
->stream_pts
);
415 /// Media length in seconds (RO)
416 static int mp_property_length(m_option_t
*prop
, int action
, void *arg
,
421 if (!mpctx
->demuxer
||
422 !(int) (len
= get_time_length(mpctx
)))
423 return M_PROPERTY_UNAVAILABLE
;
425 return m_property_time_ro(prop
, action
, arg
, len
);
428 /// Current position in percent (RW)
429 static int mp_property_percent_pos(m_option_t
*prop
, int action
,
430 void *arg
, MPContext
*mpctx
)
435 return M_PROPERTY_UNAVAILABLE
;
440 return M_PROPERTY_ERROR
;
441 M_PROPERTY_CLAMP(prop
, *(int *)arg
);
444 case M_PROPERTY_STEP_UP
:
445 case M_PROPERTY_STEP_DOWN
:
446 pos
= get_percent_pos(mpctx
);
447 pos
+= (arg
? *(int *)arg
: 10) *
448 (action
== M_PROPERTY_STEP_UP
? 1 : -1);
449 M_PROPERTY_CLAMP(prop
, pos
);
452 return m_property_int_ro(prop
, action
, arg
, get_percent_pos(mpctx
));
455 queue_seek(mpctx
, MPSEEK_FACTOR
, pos
/ 100.0, 0);
456 return M_PROPERTY_OK
;
459 /// Current position in seconds (RW)
460 static int mp_property_time_pos(m_option_t
*prop
, int action
,
461 void *arg
, MPContext
*mpctx
)
463 if (!(mpctx
->sh_video
|| mpctx
->sh_audio
))
464 return M_PROPERTY_UNAVAILABLE
;
469 return M_PROPERTY_ERROR
;
470 M_PROPERTY_CLAMP(prop
, *(double *)arg
);
471 queue_seek(mpctx
, MPSEEK_ABSOLUTE
, *(double *)arg
, 0);
472 return M_PROPERTY_OK
;
473 case M_PROPERTY_STEP_UP
:
474 case M_PROPERTY_STEP_DOWN
:
475 queue_seek(mpctx
, MPSEEK_RELATIVE
, (arg
? *(double *)arg
: 10.0) *
476 (action
== M_PROPERTY_STEP_UP
? 1.0 : -1.0), 0);
477 return M_PROPERTY_OK
;
479 return m_property_time_ro(prop
, action
, arg
, get_current_time(mpctx
));
482 /// Current chapter (RW)
483 static int mp_property_chapter(m_option_t
*prop
, int action
, void *arg
,
486 struct MPOpts
*opts
= &mpctx
->opts
;
489 char *chapter_name
= NULL
;
492 chapter
= get_current_chapter(mpctx
);
494 return M_PROPERTY_UNAVAILABLE
;
499 return M_PROPERTY_ERROR
;
500 *(int *) arg
= chapter
;
501 return M_PROPERTY_OK
;
502 case M_PROPERTY_PRINT
: {
504 return M_PROPERTY_ERROR
;
505 chapter_name
= chapter_display_name(mpctx
, chapter
);
507 return M_PROPERTY_UNAVAILABLE
;
508 *(char **) arg
= chapter_name
;
509 return M_PROPERTY_OK
;
513 return M_PROPERTY_ERROR
;
514 M_PROPERTY_CLAMP(prop
, *(int *)arg
);
515 step_all
= *(int *)arg
- chapter
;
518 case M_PROPERTY_STEP_UP
:
519 case M_PROPERTY_STEP_DOWN
: {
520 step_all
= (arg
&& *(int *)arg
!= 0 ? *(int *)arg
: 1)
521 * (action
== M_PROPERTY_STEP_UP
? 1 : -1);
528 return M_PROPERTY_NOT_IMPLEMENTED
;
532 queue_seek(mpctx
, MPSEEK_NONE
, 0, 0);
533 chapter
= seek_chapter(mpctx
, chapter
, &next_pts
);
536 queue_seek(mpctx
, MPSEEK_ABSOLUTE
, next_pts
, 0);
537 chapter_name
= chapter_display_name(mpctx
, chapter
);
538 set_osd_tmsg(OSD_MSG_TEXT
, 1, opts
->osd_duration
,
539 "Chapter: %s", chapter_name
);
540 } else if (step_all
> 0)
541 queue_seek(mpctx
, MPSEEK_RELATIVE
, 1000000000, 0);
543 set_osd_tmsg(OSD_MSG_TEXT
, 1, opts
->osd_duration
,
544 "Chapter: (%d) %s", 0, mp_gtext("unknown"));
545 talloc_free(chapter_name
);
546 return M_PROPERTY_OK
;
549 /// Number of chapters in file
550 static int mp_property_chapters(m_option_t
*prop
, int action
, void *arg
,
554 return M_PROPERTY_UNAVAILABLE
;
555 int count
= get_chapter_count(mpctx
);
556 return m_property_int_ro(prop
, action
, arg
, count
);
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
;
568 angle
= demuxer_get_current_angle(mpctx
->demuxer
);
570 return M_PROPERTY_UNAVAILABLE
;
571 angles
= demuxer_angles_count(mpctx
->demuxer
);
573 return M_PROPERTY_UNAVAILABLE
;
578 return M_PROPERTY_ERROR
;
579 *(int *) arg
= angle
;
580 return M_PROPERTY_OK
;
581 case M_PROPERTY_PRINT
: {
583 return M_PROPERTY_ERROR
;
584 *(char **) arg
= talloc_asprintf(NULL
, "%d/%d", angle
, angles
);
585 return M_PROPERTY_OK
;
589 return M_PROPERTY_ERROR
;
591 M_PROPERTY_CLAMP(prop
, angle
);
593 case M_PROPERTY_STEP_UP
:
594 case M_PROPERTY_STEP_DOWN
: {
600 step
*= (action
== M_PROPERTY_STEP_UP
? 1 : -1);
602 if (angle
< 1) //cycle
604 else if (angle
> angles
)
609 return M_PROPERTY_NOT_IMPLEMENTED
;
611 angle
= demuxer_set_angle(mpctx
->demuxer
, angle
);
613 struct sh_video
*sh_video
= mpctx
->demuxer
->video
->sh
;
615 resync_video_stream(sh_video
);
617 struct sh_audio
*sh_audio
= mpctx
->demuxer
->audio
->sh
;
619 resync_audio_stream(sh_audio
);
622 set_osd_tmsg(OSD_MSG_TEXT
, 1, opts
->osd_duration
,
623 "Angle: %d/%d", angle
, angles
);
624 return M_PROPERTY_OK
;
627 /// Demuxer meta data
628 static int mp_property_metadata(m_option_t
*prop
, int action
, void *arg
,
631 m_property_action_t
*ka
;
633 static const m_option_t key_type
=
635 "metadata", NULL
, CONF_TYPE_STRING
, 0, 0, 0, NULL
638 return M_PROPERTY_UNAVAILABLE
;
643 return M_PROPERTY_ERROR
;
644 *(char ***)arg
= mpctx
->demuxer
->info
;
645 return M_PROPERTY_OK
;
646 case M_PROPERTY_KEY_ACTION
:
648 return M_PROPERTY_ERROR
;
650 if (!(meta
= demux_info_get(mpctx
->demuxer
, ka
->key
)))
651 return M_PROPERTY_UNKNOWN
;
652 switch (ka
->action
) {
655 return M_PROPERTY_ERROR
;
656 *(char **)ka
->arg
= meta
;
657 return M_PROPERTY_OK
;
658 case M_PROPERTY_GET_TYPE
:
660 return M_PROPERTY_ERROR
;
661 *(const m_option_t
**)ka
->arg
= &key_type
;
662 return M_PROPERTY_OK
;
665 return M_PROPERTY_NOT_IMPLEMENTED
;
668 static int mp_property_pause(m_option_t
*prop
, int action
, void *arg
,
671 MPContext
*mpctx
= ctx
;
676 return M_PROPERTY_ERROR
;
677 if (mpctx
->paused
== (bool) * (int *)arg
)
678 return M_PROPERTY_OK
;
679 case M_PROPERTY_STEP_UP
:
680 case M_PROPERTY_STEP_DOWN
:
682 unpause_player(mpctx
);
686 return M_PROPERTY_OK
;
688 return m_property_flag(prop
, action
, arg
, &mpctx
->paused
);
694 static int mp_property_volume(m_option_t
*prop
, int action
, void *arg
,
698 if (!mpctx
->sh_audio
)
699 return M_PROPERTY_UNAVAILABLE
;
704 return M_PROPERTY_ERROR
;
705 mixer_getbothvolume(&mpctx
->mixer
, arg
);
706 return M_PROPERTY_OK
;
707 case M_PROPERTY_PRINT
: {
710 return M_PROPERTY_ERROR
;
711 mixer_getbothvolume(&mpctx
->mixer
, &vol
);
712 return m_property_float_range(prop
, action
, arg
, &vol
);
714 case M_PROPERTY_STEP_UP
:
715 case M_PROPERTY_STEP_DOWN
:
719 return M_PROPERTY_NOT_IMPLEMENTED
;
722 mpctx
->user_muted
= 0;
727 return M_PROPERTY_ERROR
;
728 M_PROPERTY_CLAMP(prop
, *(float *) arg
);
729 mixer_setvolume(&mpctx
->mixer
, *(float *) arg
, *(float *) arg
);
730 return M_PROPERTY_OK
;
731 case M_PROPERTY_STEP_UP
:
732 if (arg
&& *(float *) arg
<= 0)
733 mixer_decvolume(&mpctx
->mixer
);
735 mixer_incvolume(&mpctx
->mixer
);
736 return M_PROPERTY_OK
;
737 case M_PROPERTY_STEP_DOWN
:
738 if (arg
&& *(float *) arg
<= 0)
739 mixer_incvolume(&mpctx
->mixer
);
741 mixer_decvolume(&mpctx
->mixer
);
742 return M_PROPERTY_OK
;
744 return M_PROPERTY_NOT_IMPLEMENTED
;
748 static int mp_property_mute(m_option_t
*prop
, int action
, void *arg
,
752 if (!mpctx
->sh_audio
)
753 return M_PROPERTY_UNAVAILABLE
;
758 return M_PROPERTY_ERROR
;
759 if ((!!*(int *) arg
) != mpctx
->mixer
.muted
)
760 mixer_mute(&mpctx
->mixer
);
761 mpctx
->user_muted
= mpctx
->mixer
.muted
;
762 return M_PROPERTY_OK
;
763 case M_PROPERTY_STEP_UP
:
764 case M_PROPERTY_STEP_DOWN
:
765 mixer_mute(&mpctx
->mixer
);
766 mpctx
->user_muted
= mpctx
->mixer
.muted
;
767 return M_PROPERTY_OK
;
769 return m_property_flag(prop
, action
, arg
, &mpctx
->mixer
.muted
);
775 static int mp_property_audio_delay(m_option_t
*prop
, int action
,
776 void *arg
, MPContext
*mpctx
)
778 if (!(mpctx
->sh_audio
&& mpctx
->sh_video
))
779 return M_PROPERTY_UNAVAILABLE
;
782 case M_PROPERTY_STEP_UP
:
783 case M_PROPERTY_STEP_DOWN
: {
785 float delay
= audio_delay
;
786 ret
= m_property_delay(prop
, action
, arg
, &audio_delay
);
787 if (ret
!= M_PROPERTY_OK
)
790 mpctx
->delay
-= audio_delay
- delay
;
792 return M_PROPERTY_OK
;
794 return m_property_delay(prop
, action
, arg
, &audio_delay
);
798 /// Audio codec tag (RO)
799 static int mp_property_audio_format(m_option_t
*prop
, int action
,
800 void *arg
, MPContext
*mpctx
)
802 if (!mpctx
->sh_audio
)
803 return M_PROPERTY_UNAVAILABLE
;
804 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_audio
->format
);
807 /// Audio codec name (RO)
808 static int mp_property_audio_codec(m_option_t
*prop
, int action
,
809 void *arg
, MPContext
*mpctx
)
811 if (!mpctx
->sh_audio
|| !mpctx
->sh_audio
->codec
)
812 return M_PROPERTY_UNAVAILABLE
;
813 return m_property_string_ro(prop
, action
, arg
,
814 mpctx
->sh_audio
->codec
->name
);
817 /// Audio bitrate (RO)
818 static int mp_property_audio_bitrate(m_option_t
*prop
, int action
,
819 void *arg
, MPContext
*mpctx
)
821 if (!mpctx
->sh_audio
)
822 return M_PROPERTY_UNAVAILABLE
;
823 return m_property_bitrate(prop
, action
, arg
, mpctx
->sh_audio
->i_bps
);
827 static int mp_property_samplerate(m_option_t
*prop
, int action
, void *arg
,
830 if (!mpctx
->sh_audio
)
831 return M_PROPERTY_UNAVAILABLE
;
833 case M_PROPERTY_PRINT
:
835 return M_PROPERTY_ERROR
;
836 *(char **)arg
= talloc_asprintf(NULL
, "%d kHz",
837 mpctx
->sh_audio
->samplerate
/ 1000);
838 return M_PROPERTY_OK
;
840 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_audio
->samplerate
);
843 /// Number of channels (RO)
844 static int mp_property_channels(m_option_t
*prop
, int action
, void *arg
,
847 if (!mpctx
->sh_audio
)
848 return M_PROPERTY_UNAVAILABLE
;
850 case M_PROPERTY_PRINT
:
852 return M_PROPERTY_ERROR
;
853 switch (mpctx
->sh_audio
->channels
) {
855 *(char **) arg
= talloc_strdup(NULL
, "mono");
858 *(char **) arg
= talloc_strdup(NULL
, "stereo");
861 *(char **) arg
= talloc_asprintf(NULL
, "%d channels",
862 mpctx
->sh_audio
->channels
);
864 return M_PROPERTY_OK
;
866 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_audio
->channels
);
870 static int mp_property_balance(m_option_t
*prop
, int action
, void *arg
,
875 if (!mpctx
->sh_audio
|| mpctx
->sh_audio
->channels
< 2)
876 return M_PROPERTY_UNAVAILABLE
;
881 return M_PROPERTY_ERROR
;
882 mixer_getbalance(&mpctx
->mixer
, arg
);
883 return M_PROPERTY_OK
;
884 case M_PROPERTY_PRINT
: {
887 return M_PROPERTY_ERROR
;
888 mixer_getbalance(&mpctx
->mixer
, &bal
);
890 *str
= talloc_strdup(NULL
, "center");
891 else if (bal
== -1.f
)
892 *str
= talloc_strdup(NULL
, "left only");
894 *str
= talloc_strdup(NULL
, "right only");
896 unsigned right
= (bal
+ 1.f
) / 2.f
* 100.f
;
897 *str
= talloc_asprintf(NULL
, "left %d%%, right %d%%",
900 return M_PROPERTY_OK
;
902 case M_PROPERTY_STEP_UP
:
903 case M_PROPERTY_STEP_DOWN
:
904 mixer_getbalance(&mpctx
->mixer
, &bal
);
905 bal
+= (arg
? *(float *)arg
: .1f
) *
906 (action
== M_PROPERTY_STEP_UP
? 1.f
: -1.f
);
907 M_PROPERTY_CLAMP(prop
, bal
);
908 mixer_setbalance(&mpctx
->mixer
, bal
);
909 return M_PROPERTY_OK
;
912 return M_PROPERTY_ERROR
;
913 M_PROPERTY_CLAMP(prop
, *(float *)arg
);
914 mixer_setbalance(&mpctx
->mixer
, *(float *)arg
);
915 return M_PROPERTY_OK
;
917 return M_PROPERTY_NOT_IMPLEMENTED
;
920 /// Selected audio id (RW)
921 static int mp_property_audio(m_option_t
*prop
, int action
, void *arg
,
925 if (!mpctx
->demuxer
|| !mpctx
->d_audio
)
926 return M_PROPERTY_UNAVAILABLE
;
927 struct sh_audio
*sh
= mpctx
->sh_audio
;
928 current_id
= sh
? sh
->aid
: -2;
933 return M_PROPERTY_ERROR
;
934 *(int *) arg
= current_id
;
935 return M_PROPERTY_OK
;
936 case M_PROPERTY_PRINT
:
938 return M_PROPERTY_ERROR
;
941 *(char **) arg
= talloc_strdup(NULL
, mp_gtext("disabled"));
942 else if (sh
&& (sh
->lang
|| sh
->title
)) {
943 char *lang
= sh
->lang
? sh
->lang
: mp_gtext("unknown");
945 *(char **)arg
= talloc_asprintf(NULL
, "(%d) %s (\"%s\")",
946 current_id
, lang
, sh
->title
);
948 *(char **)arg
= talloc_asprintf(NULL
, "(%d) %s", current_id
,
952 strncpy(lang
, mp_gtext("unknown"), sizeof(lang
));
954 #ifdef CONFIG_DVDREAD
955 else if (mpctx
->stream
->type
== STREAMTYPE_DVD
) {
956 int code
= dvd_lang_from_aid(mpctx
->stream
, current_id
);
966 else if (mpctx
->stream
->type
== STREAMTYPE_DVDNAV
)
967 mp_dvdnav_lang_from_aid(mpctx
->stream
, current_id
, lang
);
969 *(char **)arg
= talloc_asprintf(NULL
, "(%d) %s", current_id
, lang
);
971 return M_PROPERTY_OK
;
973 case M_PROPERTY_STEP_UP
:
975 if (action
== M_PROPERTY_SET
&& arg
)
976 tmp
= *((int *) arg
);
979 int new_id
= demuxer_switch_audio(mpctx
->d_audio
->demuxer
, tmp
);
980 if (new_id
!= current_id
)
981 uninit_player(mpctx
, INITIALIZED_AO
| INITIALIZED_ACODEC
);
982 if (new_id
!= current_id
&& new_id
>= 0) {
984 sh2
= mpctx
->d_audio
->demuxer
->a_streams
[mpctx
->d_audio
->id
];
985 sh2
->ds
= mpctx
->d_audio
;
986 mpctx
->sh_audio
= sh2
;
987 reinit_audio_chain(mpctx
);
989 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_AUDIO_TRACK=%d\n", new_id
);
990 return M_PROPERTY_OK
;
992 return M_PROPERTY_NOT_IMPLEMENTED
;
997 /// Selected video id (RW)
998 static int mp_property_video(m_option_t
*prop
, int action
, void *arg
,
1001 struct MPOpts
*opts
= &mpctx
->opts
;
1002 int current_id
, tmp
;
1003 if (!mpctx
->demuxer
|| !mpctx
->d_video
)
1004 return M_PROPERTY_UNAVAILABLE
;
1005 current_id
= mpctx
->sh_video
? mpctx
->sh_video
->vid
: -2;
1008 case M_PROPERTY_GET
:
1010 return M_PROPERTY_ERROR
;
1011 *(int *) arg
= current_id
;
1012 return M_PROPERTY_OK
;
1013 case M_PROPERTY_PRINT
:
1015 return M_PROPERTY_ERROR
;
1018 *(char **) arg
= talloc_strdup(NULL
, mp_gtext("disabled"));
1020 *(char **) arg
= talloc_asprintf(NULL
, "(%d) %s", current_id
,
1021 mp_gtext("unknown"));
1023 return M_PROPERTY_OK
;
1025 case M_PROPERTY_STEP_UP
:
1026 case M_PROPERTY_SET
:
1027 if (action
== M_PROPERTY_SET
&& arg
)
1028 tmp
= *((int *) arg
);
1031 int new_id
= demuxer_switch_video(mpctx
->d_video
->demuxer
, tmp
);
1032 if (new_id
!= current_id
)
1033 uninit_player(mpctx
, INITIALIZED_VCODEC
|
1034 (opts
->fixed_vo
&& new_id
>= 0 ? 0 : INITIALIZED_VO
));
1035 if (new_id
!= current_id
&& new_id
>= 0) {
1037 sh2
= mpctx
->d_video
->demuxer
->v_streams
[mpctx
->d_video
->id
];
1038 sh2
->ds
= mpctx
->d_video
;
1039 mpctx
->sh_video
= sh2
;
1040 reinit_video_chain(mpctx
);
1042 mp_msg(MSGT_IDENTIFY
, MSGL_INFO
, "ID_VIDEO_TRACK=%d\n", new_id
);
1043 return M_PROPERTY_OK
;
1046 return M_PROPERTY_NOT_IMPLEMENTED
;
1050 static int mp_property_program(m_option_t
*prop
, int action
, void *arg
,
1053 demux_program_t prog
;
1056 case M_PROPERTY_STEP_UP
:
1057 case M_PROPERTY_SET
:
1058 if (action
== M_PROPERTY_SET
&& arg
)
1059 prog
.progid
= *((int *) arg
);
1062 if (demux_control(mpctx
->demuxer
, DEMUXER_CTRL_IDENTIFY_PROGRAM
,
1063 &prog
) == DEMUXER_CTRL_NOTIMPL
)
1064 return M_PROPERTY_ERROR
;
1066 if (prog
.aid
< 0 && prog
.vid
< 0) {
1067 mp_msg(MSGT_CPLAYER
, MSGL_ERR
,
1068 "Selected program contains no audio or video streams!\n");
1069 return M_PROPERTY_ERROR
;
1071 mp_property_do("switch_audio", M_PROPERTY_SET
, &prog
.aid
, mpctx
);
1072 mp_property_do("switch_video", M_PROPERTY_SET
, &prog
.vid
, mpctx
);
1073 return M_PROPERTY_OK
;
1076 return M_PROPERTY_NOT_IMPLEMENTED
;
1081 /// Fullscreen state (RW)
1082 static int mp_property_fullscreen(m_option_t
*prop
, int action
, void *arg
,
1086 if (!mpctx
->video_out
)
1087 return M_PROPERTY_UNAVAILABLE
;
1090 case M_PROPERTY_SET
:
1092 return M_PROPERTY_ERROR
;
1093 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
1094 if (vo_fs
== !!*(int *) arg
)
1095 return M_PROPERTY_OK
;
1096 case M_PROPERTY_STEP_UP
:
1097 case M_PROPERTY_STEP_DOWN
:
1098 if (mpctx
->video_out
->config_ok
)
1099 vo_control(mpctx
->video_out
, VOCTRL_FULLSCREEN
, 0);
1100 mpctx
->opts
.fullscreen
= vo_fs
;
1101 return M_PROPERTY_OK
;
1103 return m_property_flag(prop
, action
, arg
, &vo_fs
);
1107 static int mp_property_deinterlace(m_option_t
*prop
, int action
,
1108 void *arg
, MPContext
*mpctx
)
1112 if (!mpctx
->sh_video
|| !mpctx
->sh_video
->vfilter
)
1113 return M_PROPERTY_UNAVAILABLE
;
1114 vf
= mpctx
->sh_video
->vfilter
;
1116 case M_PROPERTY_GET
:
1118 return M_PROPERTY_ERROR
;
1119 vf
->control(vf
, VFCTRL_GET_DEINTERLACE
, arg
);
1120 return M_PROPERTY_OK
;
1121 case M_PROPERTY_SET
:
1123 return M_PROPERTY_ERROR
;
1124 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
1125 vf
->control(vf
, VFCTRL_SET_DEINTERLACE
, arg
);
1126 return M_PROPERTY_OK
;
1127 case M_PROPERTY_STEP_UP
:
1128 case M_PROPERTY_STEP_DOWN
:
1129 vf
->control(vf
, VFCTRL_GET_DEINTERLACE
, &deinterlace
);
1130 deinterlace
= !deinterlace
;
1131 vf
->control(vf
, VFCTRL_SET_DEINTERLACE
, &deinterlace
);
1132 return M_PROPERTY_OK
;
1135 vf
->control(vf
, VFCTRL_GET_DEINTERLACE
, &value
);
1136 return m_property_flag_ro(prop
, action
, arg
, value
);
1139 static int colormatrix_property_helper(m_option_t
*prop
, int action
,
1140 void *arg
, MPContext
*mpctx
)
1142 int r
= mp_property_generic_option(prop
, action
, arg
, mpctx
);
1143 // testing for an actual change is too much effort
1145 case M_PROPERTY_SET
:
1146 case M_PROPERTY_STEP_UP
:
1147 case M_PROPERTY_STEP_DOWN
:
1148 if (mpctx
->sh_video
)
1149 set_video_colorspace(mpctx
->sh_video
);
1155 static int mp_property_colormatrix(m_option_t
*prop
, int action
, void *arg
,
1158 struct MPOpts
*opts
= &mpctx
->opts
;
1160 case M_PROPERTY_PRINT
:
1162 return M_PROPERTY_ERROR
;
1163 struct mp_csp_details actual
= { .format
= -1 };
1164 char *req_csp
= mp_csp_names
[opts
->requested_colorspace
];
1165 char *real_csp
= NULL
;
1166 if (mpctx
->sh_video
) {
1167 struct vf_instance
*vf
= mpctx
->sh_video
->vfilter
;
1168 if (vf
->control(vf
, VFCTRL_GET_YUV_COLORSPACE
, &actual
) == true) {
1169 real_csp
= mp_csp_names
[actual
.format
];
1171 real_csp
= "Unknown";
1175 if (opts
->requested_colorspace
== MP_CSP_AUTO
&& real_csp
) {
1176 // Caveat: doesn't handle the case when the autodetected colorspace
1177 // is different from the actual colorspace as used by the
1178 // VO - the OSD will display the VO colorspace without
1179 // indication that it doesn't match the requested colorspace.
1180 res
= talloc_asprintf(NULL
, "Auto (%s)", real_csp
);
1181 } else if (opts
->requested_colorspace
== actual
.format
|| !real_csp
) {
1182 res
= talloc_strdup(NULL
, req_csp
);
1184 res
= talloc_asprintf(NULL
, mp_gtext("%s, but %s used"),
1186 *(char **)arg
= res
;
1187 return M_PROPERTY_OK
;
1189 return colormatrix_property_helper(prop
, action
, arg
, mpctx
);
1193 static int levels_property_helper(int offset
, m_option_t
*prop
, int action
,
1194 void *arg
, MPContext
*mpctx
)
1196 char *optname
= prop
->priv
;
1197 const struct m_option
*opt
= m_config_get_option(mpctx
->mconfig
,
1199 int *valptr
= (int *)m_option_get_ptr(opt
, &mpctx
->opts
);
1202 case M_PROPERTY_PRINT
:
1204 return M_PROPERTY_ERROR
;
1205 struct mp_csp_details actual
= {0};
1206 int actual_level
= -1;
1207 char *req_level
= m_option_print(opt
, valptr
);
1208 char *real_level
= NULL
;
1209 if (mpctx
->sh_video
) {
1210 struct vf_instance
*vf
= mpctx
->sh_video
->vfilter
;
1211 if (vf
->control(vf
, VFCTRL_GET_YUV_COLORSPACE
, &actual
) == true) {
1212 actual_level
= *(enum mp_csp_levels
*)(((char *)&actual
) + offset
);
1213 real_level
= m_option_print(opt
, &actual_level
);
1215 real_level
= talloc_strdup(NULL
, "Unknown");
1219 if (*valptr
== MP_CSP_LEVELS_AUTO
&& real_level
) {
1220 res
= talloc_asprintf(NULL
, "Auto (%s)", real_level
);
1221 } else if (*valptr
== actual_level
|| !real_level
) {
1222 res
= talloc_strdup(NULL
, real_level
);
1224 res
= talloc_asprintf(NULL
, mp_gtext("%s, but %s used"),
1225 req_level
, real_level
);
1226 talloc_free(req_level
);
1227 talloc_free(real_level
);
1228 *(char **)arg
= res
;
1229 return M_PROPERTY_OK
;
1231 return colormatrix_property_helper(prop
, action
, arg
, mpctx
);
1235 static int mp_property_colormatrix_input_range(m_option_t
*prop
, int action
,
1236 void *arg
, MPContext
*mpctx
)
1238 return levels_property_helper(offsetof(struct mp_csp_details
, levels_in
),
1239 prop
, action
, arg
, mpctx
);
1242 static int mp_property_colormatrix_output_range(m_option_t
*prop
, int action
,
1243 void *arg
, MPContext
*mpctx
)
1245 return levels_property_helper(offsetof(struct mp_csp_details
, levels_out
),
1246 prop
, action
, arg
, mpctx
);
1249 static int mp_property_capture(m_option_t
*prop
, int action
,
1250 void *arg
, MPContext
*mpctx
)
1252 struct MPOpts
*opts
= &mpctx
->opts
;
1255 return M_PROPERTY_UNAVAILABLE
;
1257 if (!opts
->capture_dump
) {
1258 mp_tmsg(MSGT_GLOBAL
, MSGL_ERR
,
1259 "Capturing not enabled (forgot -capture parameter?)\n");
1260 return M_PROPERTY_ERROR
;
1263 int capturing
= !!mpctx
->stream
->capture_file
;
1265 int ret
= m_property_flag(prop
, action
, arg
, &capturing
);
1266 if (ret
== M_PROPERTY_OK
&& capturing
!= !!mpctx
->stream
->capture_file
) {
1268 mpctx
->stream
->capture_file
= fopen(opts
->stream_dump_name
, "wb");
1269 if (!mpctx
->stream
->capture_file
) {
1270 mp_tmsg(MSGT_GLOBAL
, MSGL_ERR
,
1271 "Error opening capture file: %s\n", strerror(errno
));
1272 ret
= M_PROPERTY_ERROR
;
1275 fclose(mpctx
->stream
->capture_file
);
1276 mpctx
->stream
->capture_file
= NULL
;
1284 static int mp_property_panscan(m_option_t
*prop
, int action
, void *arg
,
1288 if (!mpctx
->video_out
1289 || vo_control(mpctx
->video_out
, VOCTRL_GET_PANSCAN
, NULL
) != VO_TRUE
)
1290 return M_PROPERTY_UNAVAILABLE
;
1293 case M_PROPERTY_SET
:
1295 return M_PROPERTY_ERROR
;
1296 M_PROPERTY_CLAMP(prop
, *(float *) arg
);
1297 vo_panscan
= *(float *) arg
;
1298 vo_control(mpctx
->video_out
, VOCTRL_SET_PANSCAN
, NULL
);
1299 return M_PROPERTY_OK
;
1300 case M_PROPERTY_STEP_UP
:
1301 case M_PROPERTY_STEP_DOWN
:
1302 vo_panscan
+= (arg
? *(float *) arg
: 0.1) *
1303 (action
== M_PROPERTY_STEP_DOWN
? -1 : 1);
1306 else if (vo_panscan
< 0)
1308 vo_control(mpctx
->video_out
, VOCTRL_SET_PANSCAN
, NULL
);
1309 return M_PROPERTY_OK
;
1311 return m_property_float_range(prop
, action
, arg
, &vo_panscan
);
1315 /// Helper to set vo flags.
1316 /** \ingroup PropertyImplHelper
1318 static int mp_property_vo_flag(m_option_t
*prop
, int action
, void *arg
,
1319 int vo_ctrl
, int *vo_var
, MPContext
*mpctx
)
1322 if (!mpctx
->video_out
)
1323 return M_PROPERTY_UNAVAILABLE
;
1326 case M_PROPERTY_SET
:
1328 return M_PROPERTY_ERROR
;
1329 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
1330 if (*vo_var
== !!*(int *) arg
)
1331 return M_PROPERTY_OK
;
1332 case M_PROPERTY_STEP_UP
:
1333 case M_PROPERTY_STEP_DOWN
:
1334 if (mpctx
->video_out
->config_ok
)
1335 vo_control(mpctx
->video_out
, vo_ctrl
, 0);
1336 return M_PROPERTY_OK
;
1338 return m_property_flag(prop
, action
, arg
, vo_var
);
1342 /// Window always on top (RW)
1343 static int mp_property_ontop(m_option_t
*prop
, int action
, void *arg
,
1346 return mp_property_vo_flag(prop
, action
, arg
, VOCTRL_ONTOP
,
1347 &mpctx
->opts
.vo_ontop
, mpctx
);
1350 /// Display in the root window (RW)
1351 static int mp_property_rootwin(m_option_t
*prop
, int action
, void *arg
,
1354 return mp_property_vo_flag(prop
, action
, arg
, VOCTRL_ROOTWIN
,
1355 &vo_rootwin
, mpctx
);
1358 /// Show window borders (RW)
1359 static int mp_property_border(m_option_t
*prop
, int action
, void *arg
,
1362 return mp_property_vo_flag(prop
, action
, arg
, VOCTRL_BORDER
,
1366 /// Framedropping state (RW)
1367 static int mp_property_framedropping(m_option_t
*prop
, int action
,
1368 void *arg
, MPContext
*mpctx
)
1371 if (!mpctx
->sh_video
)
1372 return M_PROPERTY_UNAVAILABLE
;
1375 case M_PROPERTY_PRINT
:
1377 return M_PROPERTY_ERROR
;
1378 *(char **) arg
= talloc_strdup(NULL
, frame_dropping
== 1 ?
1379 mp_gtext("enabled") :
1380 (frame_dropping
== 2 ? mp_gtext("hard") :
1381 mp_gtext("disabled")));
1382 return M_PROPERTY_OK
;
1384 return m_property_choice(prop
, action
, arg
, &frame_dropping
);
1388 /// Color settings, try to use vf/vo then fall back on TV. (RW)
1389 static int mp_property_gamma(m_option_t
*prop
, int action
, void *arg
,
1392 int *gamma
= (int *)((char *)&mpctx
->opts
+ prop
->offset
);
1395 if (!mpctx
->sh_video
)
1396 return M_PROPERTY_UNAVAILABLE
;
1398 if (gamma
[0] == 1000) {
1400 get_video_colors(mpctx
->sh_video
, prop
->name
, gamma
);
1404 case M_PROPERTY_SET
:
1406 return M_PROPERTY_ERROR
;
1407 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
1408 *gamma
= *(int *) arg
;
1409 r
= set_video_colors(mpctx
->sh_video
, prop
->name
, *gamma
);
1413 case M_PROPERTY_GET
:
1414 if (get_video_colors(mpctx
->sh_video
, prop
->name
, &val
) > 0) {
1416 return M_PROPERTY_ERROR
;
1418 return M_PROPERTY_OK
;
1421 case M_PROPERTY_STEP_UP
:
1422 case M_PROPERTY_STEP_DOWN
:
1423 *gamma
+= (arg
? *(int *) arg
: 1) *
1424 (action
== M_PROPERTY_STEP_DOWN
? -1 : 1);
1425 M_PROPERTY_CLAMP(prop
, *gamma
);
1426 r
= set_video_colors(mpctx
->sh_video
, prop
->name
, *gamma
);
1431 return M_PROPERTY_NOT_IMPLEMENTED
;
1435 if (mpctx
->demuxer
->type
== DEMUXER_TYPE_TV
) {
1436 int l
= strlen(prop
->name
);
1437 char tv_prop
[3 + l
+ 1];
1438 sprintf(tv_prop
, "tv_%s", prop
->name
);
1439 return mp_property_do(tv_prop
, action
, arg
, mpctx
);
1443 return M_PROPERTY_UNAVAILABLE
;
1447 static int mp_property_vsync(m_option_t
*prop
, int action
, void *arg
,
1450 return m_property_flag(prop
, action
, arg
, &vo_vsync
);
1453 /// Video codec tag (RO)
1454 static int mp_property_video_format(m_option_t
*prop
, int action
,
1455 void *arg
, MPContext
*mpctx
)
1458 if (!mpctx
->sh_video
)
1459 return M_PROPERTY_UNAVAILABLE
;
1461 case M_PROPERTY_PRINT
:
1463 return M_PROPERTY_ERROR
;
1464 switch (mpctx
->sh_video
->format
) {
1466 meta
= talloc_strdup(NULL
, "mpeg1");
1469 meta
= talloc_strdup(NULL
, "mpeg2");
1472 meta
= talloc_strdup(NULL
, "mpeg4");
1475 meta
= talloc_strdup(NULL
, "h264");
1478 if (mpctx
->sh_video
->format
>= 0x20202020) {
1479 meta
= talloc_asprintf(NULL
, "%.4s",
1480 (char *) &mpctx
->sh_video
->format
);
1482 meta
= talloc_asprintf(NULL
, "0x%08X", mpctx
->sh_video
->format
);
1484 *(char **)arg
= meta
;
1485 return M_PROPERTY_OK
;
1487 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_video
->format
);
1490 /// Video codec name (RO)
1491 static int mp_property_video_codec(m_option_t
*prop
, int action
,
1492 void *arg
, MPContext
*mpctx
)
1494 if (!mpctx
->sh_video
|| !mpctx
->sh_video
->codec
)
1495 return M_PROPERTY_UNAVAILABLE
;
1496 return m_property_string_ro(prop
, action
, arg
,
1497 mpctx
->sh_video
->codec
->name
);
1501 /// Video bitrate (RO)
1502 static int mp_property_video_bitrate(m_option_t
*prop
, int action
,
1503 void *arg
, MPContext
*mpctx
)
1505 if (!mpctx
->sh_video
)
1506 return M_PROPERTY_UNAVAILABLE
;
1507 return m_property_bitrate(prop
, action
, arg
, mpctx
->sh_video
->i_bps
);
1510 /// Video display width (RO)
1511 static int mp_property_width(m_option_t
*prop
, int action
, void *arg
,
1514 if (!mpctx
->sh_video
)
1515 return M_PROPERTY_UNAVAILABLE
;
1516 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_video
->disp_w
);
1519 /// Video display height (RO)
1520 static int mp_property_height(m_option_t
*prop
, int action
, void *arg
,
1523 if (!mpctx
->sh_video
)
1524 return M_PROPERTY_UNAVAILABLE
;
1525 return m_property_int_ro(prop
, action
, arg
, mpctx
->sh_video
->disp_h
);
1529 static int mp_property_fps(m_option_t
*prop
, int action
, void *arg
,
1532 if (!mpctx
->sh_video
)
1533 return M_PROPERTY_UNAVAILABLE
;
1534 return m_property_float_ro(prop
, action
, arg
, mpctx
->sh_video
->fps
);
1537 /// Video aspect (RO)
1538 static int mp_property_aspect(m_option_t
*prop
, int action
, void *arg
,
1541 if (!mpctx
->sh_video
)
1542 return M_PROPERTY_UNAVAILABLE
;
1543 return m_property_float_ro(prop
, action
, arg
, mpctx
->sh_video
->aspect
);
1547 /// Text subtitle position (RW)
1548 static int mp_property_sub_pos(m_option_t
*prop
, int action
, void *arg
,
1552 case M_PROPERTY_SET
:
1554 return M_PROPERTY_ERROR
;
1555 case M_PROPERTY_STEP_UP
:
1556 case M_PROPERTY_STEP_DOWN
:
1557 vo_osd_changed(OSDTYPE_SUBTITLE
);
1559 return m_property_int_range(prop
, action
, arg
, &sub_pos
);
1563 /// Selected subtitles (RW)
1564 static int mp_property_sub(m_option_t
*prop
, int action
, void *arg
,
1567 struct MPOpts
*opts
= &mpctx
->opts
;
1568 demux_stream_t
*const d_sub
= mpctx
->d_sub
;
1569 int source
= -1, reset_spu av_unused
= 0; // used under CONFIG_DVDREAD
1570 int source_pos
= -1;
1572 update_global_sub_size(mpctx
);
1573 const int global_sub_size
= mpctx
->global_sub_size
;
1575 if (global_sub_size
<= 0)
1576 return M_PROPERTY_UNAVAILABLE
;
1579 case M_PROPERTY_GET
:
1581 return M_PROPERTY_ERROR
;
1582 *(int *) arg
= mpctx
->global_sub_pos
;
1583 return M_PROPERTY_OK
;
1584 case M_PROPERTY_PRINT
:
1586 return M_PROPERTY_ERROR
;
1587 char *sub_name
= NULL
;
1589 sub_name
= mpctx
->subdata
->filename
;
1591 if (mpctx
->osd
->ass_track
)
1592 sub_name
= mpctx
->osd
->ass_track
->name
;
1594 if (!sub_name
&& mpctx
->subdata
)
1595 sub_name
= mpctx
->subdata
->filename
;
1597 const char *tmp
= mp_basename(sub_name
);
1599 *(char **) arg
= talloc_asprintf(NULL
, "(%d) %s%s",
1600 mpctx
->set_of_sub_pos
+ 1,
1601 strlen(tmp
) < 20 ? "" : "...",
1602 strlen(tmp
) < 20 ? tmp
: tmp
+ strlen(tmp
) - 19);
1603 return M_PROPERTY_OK
;
1605 #ifdef CONFIG_DVDNAV
1606 if (mpctx
->stream
->type
== STREAMTYPE_DVDNAV
) {
1607 if (vo_spudec
&& opts
->sub_id
>= 0) {
1608 unsigned char lang
[3];
1609 if (mp_dvdnav_lang_from_sid(mpctx
->stream
, opts
->sub_id
,
1611 *(char **) arg
= talloc_asprintf(NULL
, "(%d) %s",
1612 opts
->sub_id
, lang
);
1613 return M_PROPERTY_OK
;
1619 if ((d_sub
->demuxer
->type
== DEMUXER_TYPE_MATROSKA
1620 || d_sub
->demuxer
->type
== DEMUXER_TYPE_LAVF
1621 || d_sub
->demuxer
->type
== DEMUXER_TYPE_LAVF_PREFERRED
1622 || d_sub
->demuxer
->type
== DEMUXER_TYPE_OGG
)
1623 && d_sub
->sh
&& opts
->sub_id
>= 0) {
1624 struct sh_sub
*sh
= d_sub
->sh
;
1625 char *lang
= sh
->lang
? sh
->lang
: mp_gtext("unknown");
1627 *(char **)arg
= talloc_asprintf(NULL
, "(%d) %s (\"%s\")",
1628 opts
->sub_id
, lang
, sh
->title
);
1630 *(char **)arg
= talloc_asprintf(NULL
, "(%d) %s",
1631 opts
->sub_id
, lang
);
1632 return M_PROPERTY_OK
;
1635 if (vo_vobsub
&& vobsub_id
>= 0) {
1636 const char *language
= mp_gtext("unknown");
1637 language
= vobsub_get_id(vo_vobsub
, (unsigned int) vobsub_id
);
1638 *(char **) arg
= talloc_asprintf(NULL
, "(%d) %s",
1639 vobsub_id
, language
? language
: mp_gtext("unknown"));
1640 return M_PROPERTY_OK
;
1642 #ifdef CONFIG_DVDREAD
1643 if (vo_spudec
&& mpctx
->stream
->type
== STREAMTYPE_DVD
1644 && opts
->sub_id
>= 0) {
1646 int code
= dvd_lang_from_sid(mpctx
->stream
, opts
->sub_id
);
1647 lang
[0] = code
>> 8;
1650 *(char **) arg
= talloc_asprintf(NULL
, "(%d) %s",
1651 opts
->sub_id
, lang
);
1652 return M_PROPERTY_OK
;
1655 if (opts
->sub_id
>= 0) {
1656 *(char **) arg
= talloc_asprintf(NULL
, "(%d) %s", opts
->sub_id
,
1657 mp_gtext("unknown"));
1658 return M_PROPERTY_OK
;
1660 *(char **) arg
= talloc_strdup(NULL
, mp_gtext("disabled"));
1661 return M_PROPERTY_OK
;
1663 case M_PROPERTY_SET
:
1665 return M_PROPERTY_ERROR
;
1666 if (*(int *) arg
< -1)
1668 else if (*(int *) arg
>= global_sub_size
)
1669 *(int *) arg
= global_sub_size
- 1;
1670 mpctx
->global_sub_pos
= *(int *) arg
;
1672 case M_PROPERTY_STEP_UP
:
1673 mpctx
->global_sub_pos
+= 2;
1674 mpctx
->global_sub_pos
=
1675 (mpctx
->global_sub_pos
% (global_sub_size
+ 1)) - 1;
1677 case M_PROPERTY_STEP_DOWN
:
1678 mpctx
->global_sub_pos
+= global_sub_size
+ 1;
1679 mpctx
->global_sub_pos
=
1680 (mpctx
->global_sub_pos
% (global_sub_size
+ 1)) - 1;
1683 return M_PROPERTY_NOT_IMPLEMENTED
;
1686 if (mpctx
->global_sub_pos
>= 0) {
1687 source
= sub_source(mpctx
);
1688 source_pos
= sub_source_pos(mpctx
);
1691 mp_msg(MSGT_CPLAYER
, MSGL_DBG3
,
1692 "subtitles: %d subs, (v@%d s@%d d@%d), @%d, source @%d\n",
1694 mpctx
->sub_counts
[SUB_SOURCE_VOBSUB
],
1695 mpctx
->sub_counts
[SUB_SOURCE_SUBS
],
1696 mpctx
->sub_counts
[SUB_SOURCE_DEMUX
],
1697 mpctx
->global_sub_pos
, source
);
1699 mpctx
->set_of_sub_pos
= -1;
1700 mpctx
->subdata
= NULL
;
1709 mpctx
->osd
->ass_track
= NULL
;
1710 uninit_player(mpctx
, INITIALIZED_SUB
);
1712 if (source
== SUB_SOURCE_VOBSUB
)
1713 vobsub_id
= vobsub_get_id_by_index(vo_vobsub
, source_pos
);
1714 else if (source
== SUB_SOURCE_SUBS
) {
1715 mpctx
->set_of_sub_pos
= source_pos
;
1717 if (opts
->ass_enabled
1718 && mpctx
->set_of_ass_tracks
[mpctx
->set_of_sub_pos
]) {
1719 mpctx
->osd
->ass_track
=
1720 mpctx
->set_of_ass_tracks
[mpctx
->set_of_sub_pos
];
1721 mpctx
->osd
->ass_track_changed
= true;
1722 mpctx
->osd
->vsfilter_aspect
=
1723 mpctx
->track_was_native_ass
[mpctx
->set_of_sub_pos
];
1727 mpctx
->subdata
= mpctx
->set_of_subtitles
[mpctx
->set_of_sub_pos
];
1728 vo_osd_changed(OSDTYPE_SUBTITLE
);
1730 } else if (source
== SUB_SOURCE_DEMUX
) {
1731 opts
->sub_id
= source_pos
;
1732 if (d_sub
&& opts
->sub_id
< MAX_S_STREAMS
) {
1734 // default: assume 1:1 mapping of sid and stream id
1735 d_sub
->id
= opts
->sub_id
;
1736 d_sub
->sh
= mpctx
->d_sub
->demuxer
->s_streams
[d_sub
->id
];
1737 ds_free_packs(d_sub
);
1738 for (i
= 0; i
< MAX_S_STREAMS
; i
++) {
1739 sh_sub_t
*sh
= mpctx
->d_sub
->demuxer
->s_streams
[i
];
1740 if (sh
&& sh
->sid
== opts
->sub_id
) {
1746 if (d_sub
->sh
&& d_sub
->id
>= 0) {
1747 sh_sub_t
*sh
= d_sub
->sh
;
1748 if (sh
->type
== 'v')
1749 init_vo_spudec(mpctx
);
1751 sub_init(sh
, mpctx
->osd
);
1752 mpctx
->initialized_flags
|= INITIALIZED_SUB
;
1760 #ifdef CONFIG_DVDREAD
1762 && (mpctx
->stream
->type
== STREAMTYPE_DVD
1763 || mpctx
->stream
->type
== STREAMTYPE_DVDNAV
)
1764 && opts
->sub_id
< 0 && reset_spu
) {
1770 update_subtitles(mpctx
, 0, 0, true);
1772 return M_PROPERTY_OK
;
1775 /// Selected sub source (RW)
1776 static int mp_property_sub_source(m_option_t
*prop
, int action
, void *arg
,
1780 update_global_sub_size(mpctx
);
1781 if (!mpctx
->sh_video
|| mpctx
->global_sub_size
<= 0)
1782 return M_PROPERTY_UNAVAILABLE
;
1785 case M_PROPERTY_GET
:
1787 return M_PROPERTY_ERROR
;
1788 *(int *) arg
= sub_source(mpctx
);
1789 return M_PROPERTY_OK
;
1790 case M_PROPERTY_PRINT
:
1792 return M_PROPERTY_ERROR
;
1794 switch (sub_source(mpctx
)) {
1795 case SUB_SOURCE_SUBS
:
1796 sourcename
= mp_gtext("file");
1798 case SUB_SOURCE_VOBSUB
:
1799 sourcename
= mp_gtext("vobsub");
1801 case SUB_SOURCE_DEMUX
:
1802 sourcename
= mp_gtext("embedded");
1805 sourcename
= mp_gtext("disabled");
1807 *(char **)arg
= talloc_strdup(NULL
, sourcename
);
1808 return M_PROPERTY_OK
;
1809 case M_PROPERTY_SET
:
1811 return M_PROPERTY_ERROR
;
1812 M_PROPERTY_CLAMP(prop
, *(int *)arg
);
1813 if (*(int *) arg
< 0)
1814 mpctx
->global_sub_pos
= -1;
1815 else if (*(int *) arg
!= sub_source(mpctx
)) {
1816 int new_pos
= sub_pos_by_source(mpctx
, *(int *)arg
);
1818 return M_PROPERTY_UNAVAILABLE
;
1819 mpctx
->global_sub_pos
= new_pos
;
1822 case M_PROPERTY_STEP_UP
:
1823 case M_PROPERTY_STEP_DOWN
: {
1824 int step_all
= (arg
&& *(int *)arg
!= 0 ? *(int *)arg
: 1)
1825 * (action
== M_PROPERTY_STEP_UP
? 1 : -1);
1826 int step
= (step_all
> 0) ? 1 : -1;
1827 int cur_source
= sub_source(mpctx
);
1828 source
= cur_source
;
1831 if (source
>= SUB_SOURCES
)
1833 else if (source
< -1)
1834 source
= SUB_SOURCES
- 1;
1835 if (source
== cur_source
|| source
== -1 ||
1836 mpctx
->sub_counts
[source
])
1839 if (source
== cur_source
)
1840 return M_PROPERTY_OK
;
1842 mpctx
->global_sub_pos
= -1;
1844 mpctx
->global_sub_pos
= sub_pos_by_source(mpctx
, source
);
1848 return M_PROPERTY_NOT_IMPLEMENTED
;
1850 --mpctx
->global_sub_pos
;
1851 return mp_property_sub(prop
, M_PROPERTY_STEP_UP
, NULL
, mpctx
);
1854 /// Selected subtitles from specific source (RW)
1855 static int mp_property_sub_by_type(m_option_t
*prop
, int action
, void *arg
,
1858 int source
, is_cur_source
, offset
, new_pos
;
1859 update_global_sub_size(mpctx
);
1860 if (!mpctx
->sh_video
|| mpctx
->global_sub_size
<= 0)
1861 return M_PROPERTY_UNAVAILABLE
;
1863 if (!strcmp(prop
->name
, "sub_file"))
1864 source
= SUB_SOURCE_SUBS
;
1865 else if (!strcmp(prop
->name
, "sub_vob"))
1866 source
= SUB_SOURCE_VOBSUB
;
1867 else if (!strcmp(prop
->name
, "sub_demux"))
1868 source
= SUB_SOURCE_DEMUX
;
1870 return M_PROPERTY_ERROR
;
1872 offset
= sub_pos_by_source(mpctx
, source
);
1874 return M_PROPERTY_UNAVAILABLE
;
1876 is_cur_source
= sub_source(mpctx
) == source
;
1877 new_pos
= mpctx
->global_sub_pos
;
1879 case M_PROPERTY_GET
:
1881 return M_PROPERTY_ERROR
;
1882 if (is_cur_source
) {
1883 *(int *) arg
= sub_source_pos(mpctx
);
1884 if (source
== SUB_SOURCE_VOBSUB
)
1885 *(int *) arg
= vobsub_get_id_by_index(vo_vobsub
, *(int *) arg
);
1888 return M_PROPERTY_OK
;
1889 case M_PROPERTY_PRINT
:
1891 return M_PROPERTY_ERROR
;
1893 return mp_property_sub(prop
, M_PROPERTY_PRINT
, arg
, mpctx
);
1894 *(char **) arg
= talloc_strdup(NULL
, mp_gtext("disabled"));
1895 return M_PROPERTY_OK
;
1896 case M_PROPERTY_SET
:
1898 return M_PROPERTY_ERROR
;
1899 if (*(int *) arg
>= 0) {
1900 int index
= *(int *)arg
;
1901 if (source
== SUB_SOURCE_VOBSUB
)
1902 index
= vobsub_get_index_by_id(vo_vobsub
, index
);
1903 new_pos
= offset
+ index
;
1904 if (index
< 0 || index
> mpctx
->sub_counts
[source
]) {
1911 case M_PROPERTY_STEP_UP
:
1912 case M_PROPERTY_STEP_DOWN
: {
1913 int step_all
= (arg
&& *(int *)arg
!= 0 ? *(int *)arg
: 1)
1914 * (action
== M_PROPERTY_STEP_UP
? 1 : -1);
1915 int step
= (step_all
> 0) ? 1 : -1;
1916 int max_sub_pos_for_source
= -1;
1920 if (new_pos
== -1) {
1923 else if (max_sub_pos_for_source
== -1) {
1924 // Find max pos for specific source
1925 new_pos
= mpctx
->global_sub_size
- 1;
1926 while (new_pos
>= 0 && sub_source(mpctx
) != source
)
1929 new_pos
= max_sub_pos_for_source
;
1932 if (new_pos
< offset
||
1933 new_pos
>= mpctx
->global_sub_size
||
1934 sub_source(mpctx
) != source
)
1942 return M_PROPERTY_NOT_IMPLEMENTED
;
1944 return mp_property_sub(prop
, M_PROPERTY_SET
, &new_pos
, mpctx
);
1947 /// Subtitle delay (RW)
1948 static int mp_property_sub_delay(m_option_t
*prop
, int action
, void *arg
,
1951 if (!mpctx
->sh_video
)
1952 return M_PROPERTY_UNAVAILABLE
;
1953 return m_property_delay(prop
, action
, arg
, &sub_delay
);
1956 /// Alignment of text subtitles (RW)
1957 static int mp_property_sub_alignment(m_option_t
*prop
, int action
,
1958 void *arg
, MPContext
*mpctx
)
1961 _("top"), _("center"), _("bottom")
1964 if (!mpctx
->sh_video
|| mpctx
->global_sub_pos
< 0
1965 || sub_source(mpctx
) != SUB_SOURCE_SUBS
)
1966 return M_PROPERTY_UNAVAILABLE
;
1969 case M_PROPERTY_PRINT
:
1971 return M_PROPERTY_ERROR
;
1972 M_PROPERTY_CLAMP(prop
, sub_alignment
);
1973 *(char **) arg
= talloc_strdup(NULL
, mp_gtext(name
[sub_alignment
]));
1974 return M_PROPERTY_OK
;
1975 case M_PROPERTY_SET
:
1977 return M_PROPERTY_ERROR
;
1978 case M_PROPERTY_STEP_UP
:
1979 case M_PROPERTY_STEP_DOWN
:
1980 vo_osd_changed(OSDTYPE_SUBTITLE
);
1982 return m_property_choice(prop
, action
, arg
, &sub_alignment
);
1986 /// Subtitle visibility (RW)
1987 static int mp_property_sub_visibility(m_option_t
*prop
, int action
,
1988 void *arg
, MPContext
*mpctx
)
1990 if (!mpctx
->sh_video
)
1991 return M_PROPERTY_UNAVAILABLE
;
1994 case M_PROPERTY_SET
:
1996 return M_PROPERTY_ERROR
;
1997 case M_PROPERTY_STEP_UP
:
1998 case M_PROPERTY_STEP_DOWN
:
1999 vo_osd_changed(OSDTYPE_SUBTITLE
);
2001 vo_osd_changed(OSDTYPE_SPU
);
2003 return m_property_flag(prop
, action
, arg
, &sub_visibility
);
2008 /// Use margins for libass subtitles (RW)
2009 static int mp_property_ass_use_margins(m_option_t
*prop
, int action
,
2010 void *arg
, MPContext
*mpctx
)
2012 struct MPOpts
*opts
= &mpctx
->opts
;
2013 if (!mpctx
->sh_video
)
2014 return M_PROPERTY_UNAVAILABLE
;
2017 case M_PROPERTY_SET
:
2019 return M_PROPERTY_ERROR
;
2020 case M_PROPERTY_STEP_UP
:
2021 case M_PROPERTY_STEP_DOWN
:
2022 mpctx
->osd
->ass_force_reload
= true;
2024 return m_property_flag(prop
, action
, arg
, &opts
->ass_use_margins
);
2028 static int mp_property_ass_vsfilter_aspect_compat(m_option_t
*prop
, int action
,
2029 void *arg
, MPContext
*mpctx
)
2031 if (!mpctx
->sh_video
)
2032 return M_PROPERTY_UNAVAILABLE
;
2035 case M_PROPERTY_SET
:
2037 return M_PROPERTY_ERROR
;
2038 case M_PROPERTY_STEP_UP
:
2039 case M_PROPERTY_STEP_DOWN
:
2040 //has to re-render subs with new aspect ratio
2041 mpctx
->osd
->ass_force_reload
= 1;
2043 return m_property_flag(prop
, action
, arg
,
2044 &mpctx
->opts
.ass_vsfilter_aspect_compat
);
2050 /// Show only forced subtitles (RW)
2051 static int mp_property_sub_forced_only(m_option_t
*prop
, int action
,
2052 void *arg
, MPContext
*mpctx
)
2055 return M_PROPERTY_UNAVAILABLE
;
2058 case M_PROPERTY_SET
:
2060 return M_PROPERTY_ERROR
;
2061 case M_PROPERTY_STEP_UP
:
2062 case M_PROPERTY_STEP_DOWN
:
2063 m_property_flag(prop
, action
, arg
, &forced_subs_only
);
2064 spudec_set_forced_subs_only(vo_spudec
, forced_subs_only
);
2065 return M_PROPERTY_OK
;
2067 return m_property_flag(prop
, action
, arg
, &forced_subs_only
);
2072 #ifdef CONFIG_FREETYPE
2073 /// Subtitle scale (RW)
2074 static int mp_property_sub_scale(m_option_t
*prop
, int action
, void *arg
,
2077 struct MPOpts
*opts
= &mpctx
->opts
;
2080 case M_PROPERTY_SET
:
2082 return M_PROPERTY_ERROR
;
2083 M_PROPERTY_CLAMP(prop
, *(float *) arg
);
2085 if (opts
->ass_enabled
) {
2086 opts
->ass_font_scale
= *(float *) arg
;
2087 mpctx
->osd
->ass_force_reload
= true;
2090 text_font_scale_factor
= *(float *) arg
;
2091 force_load_font
= 1;
2092 vo_osd_changed(OSDTYPE_SUBTITLE
);
2093 return M_PROPERTY_OK
;
2094 case M_PROPERTY_STEP_UP
:
2095 case M_PROPERTY_STEP_DOWN
:
2097 if (opts
->ass_enabled
) {
2098 opts
->ass_font_scale
+= (arg
? *(float *) arg
: 0.1) *
2099 (action
== M_PROPERTY_STEP_UP
? 1.0 : -1.0);
2100 M_PROPERTY_CLAMP(prop
, opts
->ass_font_scale
);
2101 mpctx
->osd
->ass_force_reload
= true;
2104 text_font_scale_factor
+= (arg
? *(float *) arg
: 0.1) *
2105 (action
== M_PROPERTY_STEP_UP
? 1.0 : -1.0);
2106 M_PROPERTY_CLAMP(prop
, text_font_scale_factor
);
2107 force_load_font
= 1;
2108 vo_osd_changed(OSDTYPE_SUBTITLE
);
2109 return M_PROPERTY_OK
;
2112 if (opts
->ass_enabled
)
2113 return m_property_float_ro(prop
, action
, arg
, opts
->ass_font_scale
);
2116 return m_property_float_ro(prop
, action
, arg
, text_font_scale_factor
);
2124 /// TV color settings (RW)
2125 static int mp_property_tv_color(m_option_t
*prop
, int action
, void *arg
,
2129 tvi_handle_t
*tvh
= mpctx
->demuxer
->priv
;
2130 if (mpctx
->demuxer
->type
!= DEMUXER_TYPE_TV
|| !tvh
)
2131 return M_PROPERTY_UNAVAILABLE
;
2134 case M_PROPERTY_SET
:
2136 return M_PROPERTY_ERROR
;
2137 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
2138 return tv_set_color_options(tvh
, prop
->offset
, *(int *) arg
);
2139 case M_PROPERTY_GET
:
2140 return tv_get_color_options(tvh
, prop
->offset
, arg
);
2141 case M_PROPERTY_STEP_UP
:
2142 case M_PROPERTY_STEP_DOWN
:
2143 if ((r
= tv_get_color_options(tvh
, prop
->offset
, &val
)) >= 0) {
2145 return M_PROPERTY_ERROR
;
2146 val
+= (arg
? *(int *) arg
: 1) *
2147 (action
== M_PROPERTY_STEP_DOWN
? -1 : 1);
2148 M_PROPERTY_CLAMP(prop
, val
);
2149 return tv_set_color_options(tvh
, prop
->offset
, val
);
2151 return M_PROPERTY_ERROR
;
2153 return M_PROPERTY_NOT_IMPLEMENTED
;
2158 static int mp_property_teletext_common(m_option_t
*prop
, int action
, void *arg
,
2162 int base_ioctl
= prop
->offset
;
2164 for teletext's GET,SET,STEP ioctls this is not 0
2168 if (!mpctx
->demuxer
|| !mpctx
->demuxer
->teletext
)
2169 return M_PROPERTY_UNAVAILABLE
;
2171 return M_PROPERTY_ERROR
;
2174 case M_PROPERTY_GET
:
2176 return M_PROPERTY_ERROR
;
2177 result
= teletext_control(mpctx
->demuxer
->teletext
, base_ioctl
, arg
);
2179 case M_PROPERTY_SET
:
2181 return M_PROPERTY_ERROR
;
2182 M_PROPERTY_CLAMP(prop
, *(int *) arg
);
2183 result
= teletext_control(mpctx
->demuxer
->teletext
, base_ioctl
+ 1,
2186 case M_PROPERTY_STEP_UP
:
2187 case M_PROPERTY_STEP_DOWN
:
2188 result
= teletext_control(mpctx
->demuxer
->teletext
, base_ioctl
, &val
);
2189 val
+= (arg
? *(int *) arg
: 1) * (action
== M_PROPERTY_STEP_DOWN
?
2191 result
= teletext_control(mpctx
->demuxer
->teletext
, base_ioctl
+ 1,
2195 return M_PROPERTY_NOT_IMPLEMENTED
;
2198 return result
== VBI_CONTROL_TRUE
? M_PROPERTY_OK
: M_PROPERTY_ERROR
;
2201 static int mp_property_teletext_mode(m_option_t
*prop
, int action
, void *arg
,
2207 //with tvh==NULL will fail too
2208 result
= mp_property_teletext_common(prop
, action
, arg
, mpctx
);
2209 if (result
!= M_PROPERTY_OK
)
2212 if (teletext_control(mpctx
->demuxer
->teletext
,
2213 prop
->offset
, &val
) == VBI_CONTROL_TRUE
&& val
)
2214 mp_input_set_section(mpctx
->input
, "teletext");
2216 mp_input_set_section(mpctx
->input
, "tv");
2217 return M_PROPERTY_OK
;
2220 static int mp_property_teletext_page(m_option_t
*prop
, int action
, void *arg
,
2225 if (!mpctx
->demuxer
->teletext
)
2226 return M_PROPERTY_UNAVAILABLE
;
2228 case M_PROPERTY_STEP_UP
:
2229 case M_PROPERTY_STEP_DOWN
:
2230 //This should be handled separately
2231 val
= (arg
? *(int *) arg
: 1) * (action
== M_PROPERTY_STEP_DOWN
?
2233 result
= teletext_control(mpctx
->demuxer
->teletext
,
2234 TV_VBI_CONTROL_STEP_PAGE
, &val
);
2237 result
= mp_property_teletext_common(prop
, action
, arg
, mpctx
);
2243 /// All properties available in MPlayer.
2244 /** \ingroup Properties
2246 static const m_option_t mp_properties
[] = {
2248 { "osdlevel", mp_property_osdlevel
, CONF_TYPE_INT
,
2249 M_OPT_RANGE
, 0, 3, NULL
},
2250 { "loop", mp_property_loop
, CONF_TYPE_INT
,
2251 M_OPT_MIN
, -1, 0, NULL
},
2252 { "speed", mp_property_playback_speed
, CONF_TYPE_FLOAT
,
2253 M_OPT_RANGE
, 0.01, 100.0, NULL
},
2254 { "filename", mp_property_filename
, CONF_TYPE_STRING
,
2256 { "path", mp_property_path
, CONF_TYPE_STRING
,
2258 { "demuxer", mp_property_demuxer
, CONF_TYPE_STRING
,
2260 { "stream_pos", mp_property_stream_pos
, CONF_TYPE_POSITION
,
2261 M_OPT_MIN
, 0, 0, NULL
},
2262 { "stream_start", mp_property_stream_start
, CONF_TYPE_POSITION
,
2263 M_OPT_MIN
, 0, 0, NULL
},
2264 { "stream_end", mp_property_stream_end
, CONF_TYPE_POSITION
,
2265 M_OPT_MIN
, 0, 0, NULL
},
2266 { "stream_length", mp_property_stream_length
, CONF_TYPE_POSITION
,
2267 M_OPT_MIN
, 0, 0, NULL
},
2268 { "stream_time_pos", mp_property_stream_time_pos
, CONF_TYPE_TIME
,
2269 M_OPT_MIN
, 0, 0, NULL
},
2270 { "length", mp_property_length
, CONF_TYPE_TIME
,
2271 M_OPT_MIN
, 0, 0, NULL
},
2272 { "percent_pos", mp_property_percent_pos
, CONF_TYPE_INT
,
2273 M_OPT_RANGE
, 0, 100, NULL
},
2274 { "time_pos", mp_property_time_pos
, CONF_TYPE_TIME
,
2275 M_OPT_MIN
, 0, 0, NULL
},
2276 { "chapter", mp_property_chapter
, CONF_TYPE_INT
,
2277 M_OPT_MIN
, 0, 0, NULL
},
2278 { "chapters", mp_property_chapters
, CONF_TYPE_INT
,
2280 { "angle", mp_property_angle
, CONF_TYPE_INT
,
2281 CONF_RANGE
, -2, 10, NULL
},
2282 { "metadata", mp_property_metadata
, CONF_TYPE_STRING_LIST
,
2284 { "pause", mp_property_pause
, CONF_TYPE_FLAG
,
2285 M_OPT_RANGE
, 0, 1, NULL
},
2286 { "capturing", mp_property_capture
, CONF_TYPE_FLAG
,
2287 M_OPT_RANGE
, 0, 1, NULL
},
2288 { "pts_association_mode", mp_property_generic_option
, &m_option_type_choice
,
2289 0, 0, 0, "pts-association-mode" },
2290 { "hr_seek", mp_property_generic_option
, &m_option_type_choice
,
2291 0, 0, 0, "hr-seek" },
2294 { "volume", mp_property_volume
, CONF_TYPE_FLOAT
,
2295 M_OPT_RANGE
, 0, 100, NULL
},
2296 { "mute", mp_property_mute
, CONF_TYPE_FLAG
,
2297 M_OPT_RANGE
, 0, 1, NULL
},
2298 { "audio_delay", mp_property_audio_delay
, CONF_TYPE_FLOAT
,
2299 M_OPT_RANGE
, -100, 100, NULL
},
2300 { "audio_format", mp_property_audio_format
, CONF_TYPE_INT
,
2302 { "audio_codec", mp_property_audio_codec
, CONF_TYPE_STRING
,
2304 { "audio_bitrate", mp_property_audio_bitrate
, CONF_TYPE_INT
,
2306 { "samplerate", mp_property_samplerate
, CONF_TYPE_INT
,
2308 { "channels", mp_property_channels
, CONF_TYPE_INT
,
2310 { "switch_audio", mp_property_audio
, CONF_TYPE_INT
,
2311 CONF_RANGE
, -2, 65535, NULL
},
2312 { "balance", mp_property_balance
, CONF_TYPE_FLOAT
,
2313 M_OPT_RANGE
, -1, 1, NULL
},
2316 { "fullscreen", mp_property_fullscreen
, CONF_TYPE_FLAG
,
2317 M_OPT_RANGE
, 0, 1, NULL
},
2318 { "deinterlace", mp_property_deinterlace
, CONF_TYPE_FLAG
,
2319 M_OPT_RANGE
, 0, 1, NULL
},
2320 { "colormatrix", mp_property_colormatrix
, &m_option_type_choice
,
2321 0, 0, 0, "colormatrix" },
2322 { "colormatrix_input_range", mp_property_colormatrix_input_range
, &m_option_type_choice
,
2323 0, 0, 0, "colormatrix-input-range" },
2324 { "colormatrix_output_range", mp_property_colormatrix_output_range
, &m_option_type_choice
,
2325 0, 0, 0, "colormatrix-output-range" },
2326 { "ontop", mp_property_ontop
, CONF_TYPE_FLAG
,
2327 M_OPT_RANGE
, 0, 1, NULL
},
2328 { "rootwin", mp_property_rootwin
, CONF_TYPE_FLAG
,
2329 M_OPT_RANGE
, 0, 1, NULL
},
2330 { "border", mp_property_border
, CONF_TYPE_FLAG
,
2331 M_OPT_RANGE
, 0, 1, NULL
},
2332 { "framedropping", mp_property_framedropping
, CONF_TYPE_INT
,
2333 M_OPT_RANGE
, 0, 2, NULL
},
2334 { "gamma", mp_property_gamma
, CONF_TYPE_INT
,
2335 M_OPT_RANGE
, -100, 100, .offset
= offsetof(struct MPOpts
, vo_gamma_gamma
)},
2336 { "brightness", mp_property_gamma
, CONF_TYPE_INT
,
2337 M_OPT_RANGE
, -100, 100, .offset
= offsetof(struct MPOpts
, vo_gamma_brightness
) },
2338 { "contrast", mp_property_gamma
, CONF_TYPE_INT
,
2339 M_OPT_RANGE
, -100, 100, .offset
= offsetof(struct MPOpts
, vo_gamma_contrast
) },
2340 { "saturation", mp_property_gamma
, CONF_TYPE_INT
,
2341 M_OPT_RANGE
, -100, 100, .offset
= offsetof(struct MPOpts
, vo_gamma_saturation
) },
2342 { "hue", mp_property_gamma
, CONF_TYPE_INT
,
2343 M_OPT_RANGE
, -100, 100, .offset
= offsetof(struct MPOpts
, vo_gamma_hue
) },
2344 { "panscan", mp_property_panscan
, CONF_TYPE_FLOAT
,
2345 M_OPT_RANGE
, 0, 1, NULL
},
2346 { "vsync", mp_property_vsync
, CONF_TYPE_FLAG
,
2347 M_OPT_RANGE
, 0, 1, NULL
},
2348 { "video_format", mp_property_video_format
, CONF_TYPE_INT
,
2350 { "video_codec", mp_property_video_codec
, CONF_TYPE_STRING
,
2352 { "video_bitrate", mp_property_video_bitrate
, CONF_TYPE_INT
,
2354 { "width", mp_property_width
, CONF_TYPE_INT
,
2356 { "height", mp_property_height
, CONF_TYPE_INT
,
2358 { "fps", mp_property_fps
, CONF_TYPE_FLOAT
,
2360 { "aspect", mp_property_aspect
, CONF_TYPE_FLOAT
,
2362 { "switch_video", mp_property_video
, CONF_TYPE_INT
,
2363 CONF_RANGE
, -2, 65535, NULL
},
2364 { "switch_program", mp_property_program
, CONF_TYPE_INT
,
2365 CONF_RANGE
, -1, 65535, NULL
},
2368 { "sub", mp_property_sub
, CONF_TYPE_INT
,
2369 M_OPT_MIN
, -1, 0, NULL
},
2370 { "sub_source", mp_property_sub_source
, CONF_TYPE_INT
,
2371 M_OPT_RANGE
, -1, SUB_SOURCES
- 1, NULL
},
2372 { "sub_vob", mp_property_sub_by_type
, CONF_TYPE_INT
,
2373 M_OPT_MIN
, -1, 0, NULL
},
2374 { "sub_demux", mp_property_sub_by_type
, CONF_TYPE_INT
,
2375 M_OPT_MIN
, -1, 0, NULL
},
2376 { "sub_file", mp_property_sub_by_type
, CONF_TYPE_INT
,
2377 M_OPT_MIN
, -1, 0, NULL
},
2378 { "sub_delay", mp_property_sub_delay
, CONF_TYPE_FLOAT
,
2380 { "sub_pos", mp_property_sub_pos
, CONF_TYPE_INT
,
2381 M_OPT_RANGE
, 0, 100, NULL
},
2382 { "sub_alignment", mp_property_sub_alignment
, CONF_TYPE_INT
,
2383 M_OPT_RANGE
, 0, 2, NULL
},
2384 { "sub_visibility", mp_property_sub_visibility
, CONF_TYPE_FLAG
,
2385 M_OPT_RANGE
, 0, 1, NULL
},
2386 { "sub_forced_only", mp_property_sub_forced_only
, CONF_TYPE_FLAG
,
2387 M_OPT_RANGE
, 0, 1, NULL
},
2388 #ifdef CONFIG_FREETYPE
2389 { "sub_scale", mp_property_sub_scale
, CONF_TYPE_FLOAT
,
2390 M_OPT_RANGE
, 0, 100, NULL
},
2393 { "ass_use_margins", mp_property_ass_use_margins
, CONF_TYPE_FLAG
,
2394 M_OPT_RANGE
, 0, 1, NULL
},
2395 { "ass_vsfilter_aspect_compat", mp_property_ass_vsfilter_aspect_compat
,
2396 CONF_TYPE_FLAG
, M_OPT_RANGE
, 0, 1, NULL
},
2400 { "tv_brightness", mp_property_tv_color
, CONF_TYPE_INT
,
2401 M_OPT_RANGE
, -100, 100, .offset
= TV_COLOR_BRIGHTNESS
},
2402 { "tv_contrast", mp_property_tv_color
, CONF_TYPE_INT
,
2403 M_OPT_RANGE
, -100, 100, .offset
= TV_COLOR_CONTRAST
},
2404 { "tv_saturation", mp_property_tv_color
, CONF_TYPE_INT
,
2405 M_OPT_RANGE
, -100, 100, .offset
= TV_COLOR_SATURATION
},
2406 { "tv_hue", mp_property_tv_color
, CONF_TYPE_INT
,
2407 M_OPT_RANGE
, -100, 100, .offset
= TV_COLOR_HUE
},
2409 { "teletext_page", mp_property_teletext_page
, CONF_TYPE_INT
,
2410 M_OPT_RANGE
, 100, 899, .offset
= TV_VBI_CONTROL_GET_PAGE
},
2411 { "teletext_subpage", mp_property_teletext_common
, CONF_TYPE_INT
,
2412 M_OPT_RANGE
, 0, 64, .offset
= TV_VBI_CONTROL_GET_SUBPAGE
},
2413 { "teletext_mode", mp_property_teletext_mode
, CONF_TYPE_FLAG
,
2414 M_OPT_RANGE
, 0, 1, .offset
= TV_VBI_CONTROL_GET_MODE
},
2415 { "teletext_format", mp_property_teletext_common
, CONF_TYPE_INT
,
2416 M_OPT_RANGE
, 0, 3, .offset
= TV_VBI_CONTROL_GET_FORMAT
},
2417 { "teletext_half_page", mp_property_teletext_common
, CONF_TYPE_INT
,
2418 M_OPT_RANGE
, 0, 2, .offset
= TV_VBI_CONTROL_GET_HALF_PAGE
},
2419 { NULL
, NULL
, NULL
, 0, 0, 0, NULL
}
2423 int mp_property_do(const char *name
, int action
, void *val
, void *ctx
)
2425 return m_property_do(mp_properties
, name
, action
, val
, ctx
);
2428 char *mp_property_print(const char *name
, void *ctx
)
2431 if (mp_property_do(name
, M_PROPERTY_PRINT
, &ret
, ctx
) <= 0)
2436 char *property_expand_string(MPContext
*mpctx
, char *str
)
2438 return m_properties_expand_string(mp_properties
, str
, mpctx
);
2441 void property_print_help(void)
2443 m_properties_print_help_list(mp_properties
);
2447 /* List of default ways to show a property on OSD.
2449 * Setting osd_progbar to -1 displays seek bar, other nonzero displays
2450 * a bar showing the current position between min/max values of the
2451 * property. In this case osd_msg is only used for terminal output
2452 * if there is no video; it'll be a label shown together with percentage.
2454 * Otherwise setting osd_msg will show the string on OSD, formatted with
2455 * the text value of the property as argument.
2457 static struct property_osd_display
{
2460 /// progressbar type
2461 int osd_progbar
; // -1 is special value for seek indicators
2462 /// osd msg id if it must be shared
2464 /// osd msg template
2465 const char *osd_msg
;
2466 } property_osd_display
[] = {
2468 { "loop", 0, -1, _("Loop: %s") },
2469 { "chapter", -1, -1, NULL
},
2470 { "capturing", 0, -1, _("Capturing: %s") },
2471 { "pts_association_mode", 0, -1, "PTS association mode: %s" },
2472 { "hr_seek", 0, -1, "hr-seek: %s" },
2473 { "speed", 0, -1, _("Speed: x %6s") },
2475 { "volume", OSD_VOLUME
, -1, _("Volume") },
2476 { "mute", 0, -1, _("Mute: %s") },
2477 { "audio_delay", 0, -1, _("A-V delay: %s") },
2478 { "switch_audio", 0, -1, _("Audio: %s") },
2479 { "balance", OSD_BALANCE
, -1, _("Balance") },
2481 { "panscan", OSD_PANSCAN
, -1, _("Panscan") },
2482 { "ontop", 0, -1, _("Stay on top: %s") },
2483 { "rootwin", 0, -1, _("Rootwin: %s") },
2484 { "border", 0, -1, _("Border: %s") },
2485 { "framedropping", 0, -1, _("Framedropping: %s") },
2486 { "deinterlace", 0, -1, _("Deinterlace: %s") },
2487 { "colormatrix", 0, -1, _("YUV colormatrix: %s") },
2488 { "colormatrix_input_range", 0, -1, _("YUV input range: %s") },
2489 { "colormatrix_output_range", 0, -1, _("RGB output range: %s") },
2490 { "gamma", OSD_BRIGHTNESS
, -1, _("Gamma") },
2491 { "brightness", OSD_BRIGHTNESS
, -1, _("Brightness") },
2492 { "contrast", OSD_CONTRAST
, -1, _("Contrast") },
2493 { "saturation", OSD_SATURATION
, -1, _("Saturation") },
2494 { "hue", OSD_HUE
, -1, _("Hue") },
2495 { "vsync", 0, -1, _("VSync: %s") },
2497 { "sub", 0, -1, _("Subtitles: %s") },
2498 { "sub_source", 0, -1, _("Sub source: %s") },
2499 { "sub_vob", 0, -1, _("Subtitles: %s") },
2500 { "sub_demux", 0, -1, _("Subtitles: %s") },
2501 { "sub_file", 0, -1, _("Subtitles: %s") },
2502 { "sub_pos", 0, -1, _("Sub position: %s/100") },
2503 { "sub_alignment", 0, -1, _("Sub alignment: %s") },
2504 { "sub_delay", 0, OSD_MSG_SUB_DELAY
, _("Sub delay: %s") },
2505 { "sub_visibility", 0, -1, _("Subtitles: %s") },
2506 { "sub_forced_only", 0, -1, _("Forced sub only: %s") },
2507 #ifdef CONFIG_FREETYPE
2508 { "sub_scale", 0, -1, _("Sub Scale: %s")},
2510 { "ass_vsfilter_aspect_compat", 0, -1,
2511 _("Subtitle VSFilter aspect compat: %s")},
2513 { "tv_brightness", OSD_BRIGHTNESS
, -1, _("Brightness") },
2514 { "tv_hue", OSD_HUE
, -1, _("Hue") },
2515 { "tv_saturation", OSD_SATURATION
, -1, _("Saturation") },
2516 { "tv_contrast", OSD_CONTRAST
, -1, _("Contrast") },
2521 static int show_property_osd(MPContext
*mpctx
, const char *pname
)
2523 struct MPOpts
*opts
= &mpctx
->opts
;
2526 struct property_osd_display
*p
;
2528 // look for the command
2529 for (p
= property_osd_display
; p
->name
; p
++)
2530 if (!strcmp(p
->name
, pname
))
2536 if (mp_property_do(pname
, M_PROPERTY_GET_TYPE
, &prop
, mpctx
) <= 0 || !prop
)
2539 if (p
->osd_progbar
== -1)
2540 mpctx
->add_osd_seek_info
= true;
2541 else if (p
->osd_progbar
) {
2542 if (prop
->type
== CONF_TYPE_INT
) {
2543 if (mp_property_do(pname
, M_PROPERTY_GET
, &r
, mpctx
) > 0)
2544 set_osd_bar(mpctx
, p
->osd_progbar
, mp_gtext(p
->osd_msg
),
2545 prop
->min
, prop
->max
, r
);
2546 } else if (prop
->type
== CONF_TYPE_FLOAT
) {
2548 if (mp_property_do(pname
, M_PROPERTY_GET
, &f
, mpctx
) > 0)
2549 set_osd_bar(mpctx
, p
->osd_progbar
, mp_gtext(p
->osd_msg
),
2550 prop
->min
, prop
->max
, f
);
2552 mp_msg(MSGT_CPLAYER
, MSGL_ERR
,
2553 "Property use an unsupported type.\n");
2560 char *val
= mp_property_print(pname
, mpctx
);
2562 int index
= p
- property_osd_display
;
2563 set_osd_tmsg(p
->osd_id
>= 0 ? p
->osd_id
: OSD_MSG_PROPERTY
+ index
,
2564 1, opts
->osd_duration
, p
->osd_msg
, val
);
2573 * Command to property bridge
2575 * It is used to handle most commands that just set a property
2576 * and optionally display something on the OSD.
2577 * Two kinds of commands are handled: adjust or toggle.
2579 * Adjust commands take 1 or 2 parameters: <value> <abs>
2580 * If <abs> is non-zero the property is set to the given value
2581 * otherwise it is adjusted.
2583 * Toggle commands take 0 or 1 parameters. With no parameter
2584 * or a value less than the property minimum it just steps the
2585 * property to its next or previous value respectively.
2586 * Otherwise it sets it to the given value.
2589 /// List of the commands that can be handled by setting a property.
2595 /// set/adjust or toggle command
2597 } set_prop_cmd
[] = {
2599 { "loop", MP_CMD_LOOP
, 0},
2600 { "chapter", MP_CMD_SEEK_CHAPTER
, 0},
2601 { "angle", MP_CMD_SWITCH_ANGLE
, 0},
2602 { "pause", MP_CMD_PAUSE
, 0},
2603 { "capturing", MP_CMD_CAPTURING
, 1},
2605 { "volume", MP_CMD_VOLUME
, 0},
2606 { "mute", MP_CMD_MUTE
, 1},
2607 { "audio_delay", MP_CMD_AUDIO_DELAY
, 0},
2608 { "switch_audio", MP_CMD_SWITCH_AUDIO
, 1},
2609 { "balance", MP_CMD_BALANCE
, 0},
2611 { "fullscreen", MP_CMD_VO_FULLSCREEN
, 1},
2612 { "panscan", MP_CMD_PANSCAN
, 0},
2613 { "ontop", MP_CMD_VO_ONTOP
, 1},
2614 { "rootwin", MP_CMD_VO_ROOTWIN
, 1},
2615 { "border", MP_CMD_VO_BORDER
, 1},
2616 { "framedropping", MP_CMD_FRAMEDROPPING
, 1},
2617 { "gamma", MP_CMD_GAMMA
, 0},
2618 { "brightness", MP_CMD_BRIGHTNESS
, 0},
2619 { "contrast", MP_CMD_CONTRAST
, 0},
2620 { "saturation", MP_CMD_SATURATION
, 0},
2621 { "hue", MP_CMD_HUE
, 0},
2622 { "vsync", MP_CMD_SWITCH_VSYNC
, 1},
2624 { "sub", MP_CMD_SUB_SELECT
, 1},
2625 { "sub_source", MP_CMD_SUB_SOURCE
, 1},
2626 { "sub_vob", MP_CMD_SUB_VOB
, 1},
2627 { "sub_demux", MP_CMD_SUB_DEMUX
, 1},
2628 { "sub_file", MP_CMD_SUB_FILE
, 1},
2629 { "sub_pos", MP_CMD_SUB_POS
, 0},
2630 { "sub_alignment", MP_CMD_SUB_ALIGNMENT
, 1},
2631 { "sub_delay", MP_CMD_SUB_DELAY
, 0},
2632 { "sub_visibility", MP_CMD_SUB_VISIBILITY
, 1},
2633 { "sub_forced_only", MP_CMD_SUB_FORCED_ONLY
, 1},
2634 #ifdef CONFIG_FREETYPE
2635 { "sub_scale", MP_CMD_SUB_SCALE
, 0},
2638 { "ass_use_margins", MP_CMD_ASS_USE_MARGINS
, 1},
2641 { "tv_brightness", MP_CMD_TV_SET_BRIGHTNESS
, 0},
2642 { "tv_hue", MP_CMD_TV_SET_HUE
, 0},
2643 { "tv_saturation", MP_CMD_TV_SET_SATURATION
, 0},
2644 { "tv_contrast", MP_CMD_TV_SET_CONTRAST
, 0},
2649 /// Handle commands that set a property.
2650 static bool set_property_command(MPContext
*mpctx
, mp_cmd_t
*cmd
)
2656 // look for the command
2657 for (i
= 0; set_prop_cmd
[i
].name
; i
++)
2658 if (set_prop_cmd
[i
].cmd
== cmd
->id
)
2660 if (!(pname
= set_prop_cmd
[i
].name
))
2663 if (mp_property_do(pname
, M_PROPERTY_GET_TYPE
, &prop
, mpctx
) <= 0 || !prop
)
2667 if (set_prop_cmd
[i
].toggle
) {
2669 if (cmd
->nargs
> 0 && cmd
->args
[0].v
.i
>= prop
->min
)
2670 r
= mp_property_do(pname
, M_PROPERTY_SET
, &cmd
->args
[0].v
.i
, mpctx
);
2671 else if (cmd
->nargs
> 0)
2672 r
= mp_property_do(pname
, M_PROPERTY_STEP_DOWN
, NULL
, mpctx
);
2674 r
= mp_property_do(pname
, M_PROPERTY_STEP_UP
, NULL
, mpctx
);
2675 } else if (cmd
->args
[1].v
.i
) //set
2676 r
= mp_property_do(pname
, M_PROPERTY_SET
, &cmd
->args
[0].v
, mpctx
);
2678 r
= mp_property_do(pname
, M_PROPERTY_STEP_UP
, &cmd
->args
[0].v
, mpctx
);
2683 show_property_osd(mpctx
, pname
);
2688 #ifdef CONFIG_DVDNAV
2689 static const struct {
2691 const enum mp_command_type cmd
;
2692 } mp_dvdnav_bindings
[] = {
2693 { "up", MP_CMD_DVDNAV_UP
},
2694 { "down", MP_CMD_DVDNAV_DOWN
},
2695 { "left", MP_CMD_DVDNAV_LEFT
},
2696 { "right", MP_CMD_DVDNAV_RIGHT
},
2697 { "menu", MP_CMD_DVDNAV_MENU
},
2698 { "select", MP_CMD_DVDNAV_SELECT
},
2699 { "prev", MP_CMD_DVDNAV_PREVMENU
},
2700 { "mouse", MP_CMD_DVDNAV_MOUSECLICK
},
2703 * keep old dvdnav sub-command options for a while in order not to
2704 * break slave-mode API too suddenly.
2706 { "1", MP_CMD_DVDNAV_UP
},
2707 { "2", MP_CMD_DVDNAV_DOWN
},
2708 { "3", MP_CMD_DVDNAV_LEFT
},
2709 { "4", MP_CMD_DVDNAV_RIGHT
},
2710 { "5", MP_CMD_DVDNAV_MENU
},
2711 { "6", MP_CMD_DVDNAV_SELECT
},
2712 { "7", MP_CMD_DVDNAV_PREVMENU
},
2713 { "8", MP_CMD_DVDNAV_MOUSECLICK
},
2718 static const char *property_error_string(int error_value
)
2720 switch (error_value
) {
2721 case M_PROPERTY_ERROR
:
2723 case M_PROPERTY_UNAVAILABLE
:
2724 return "PROPERTY_UNAVAILABLE";
2725 case M_PROPERTY_NOT_IMPLEMENTED
:
2726 return "NOT_IMPLEMENTED";
2727 case M_PROPERTY_UNKNOWN
:
2728 return "PROPERTY_UNKNOWN";
2729 case M_PROPERTY_DISABLED
:
2735 static void remove_subtitle_range(MPContext
*mpctx
, int start
, int count
)
2738 int end
= start
+ count
;
2739 int after
= mpctx
->set_of_sub_size
- end
;
2740 sub_data
**subs
= mpctx
->set_of_subtitles
;
2742 struct ass_track
**ass_tracks
= mpctx
->set_of_ass_tracks
;
2744 if (count
< 0 || count
> mpctx
->set_of_sub_size
||
2745 start
< 0 || start
> mpctx
->set_of_sub_size
- count
) {
2746 mp_msg(MSGT_CPLAYER
, MSGL_ERR
,
2747 "Cannot remove invalid subtitle range %i +%i\n", start
, count
);
2750 for (idx
= start
; idx
< end
; idx
++) {
2751 sub_data
*subd
= subs
[idx
];
2752 char *filename
= "";
2754 filename
= subd
->filename
;
2757 filename
= ass_tracks
[idx
]->name
;
2759 mp_msg(MSGT_CPLAYER
, MSGL_STATUS
,
2760 "SUB: Removed subtitle file (%d): %s\n", idx
+ 1,
2761 filename_recode(filename
));
2765 if (ass_tracks
[idx
])
2766 ass_free_track(ass_tracks
[idx
]);
2767 ass_tracks
[idx
] = NULL
;
2771 mpctx
->global_sub_size
-= count
;
2772 mpctx
->set_of_sub_size
-= count
;
2773 if (mpctx
->set_of_sub_size
<= 0)
2774 mpctx
->sub_counts
[SUB_SOURCE_SUBS
] = 0;
2776 memmove(subs
+ start
, subs
+ end
, after
* sizeof(*subs
));
2777 memset(subs
+ start
+ after
, 0, count
* sizeof(*subs
));
2779 memmove(ass_tracks
+ start
, ass_tracks
+ end
, after
* sizeof(*ass_tracks
));
2780 memset(ass_tracks
+ start
+ after
, 0, count
* sizeof(*ass_tracks
));
2783 if (mpctx
->set_of_sub_pos
>= start
&& mpctx
->set_of_sub_pos
< end
) {
2784 mpctx
->global_sub_pos
= -2;
2785 mpctx
->subdata
= NULL
;
2786 mpctx
->osd
->ass_track
= NULL
;
2787 mp_input_queue_cmd(mpctx
->input
, mp_input_parse_cmd("sub_select"));
2788 } else if (mpctx
->set_of_sub_pos
>= end
) {
2789 mpctx
->set_of_sub_pos
-= count
;
2790 mpctx
->global_sub_pos
-= count
;
2794 void run_command(MPContext
*mpctx
, mp_cmd_t
*cmd
)
2796 struct MPOpts
*opts
= &mpctx
->opts
;
2797 sh_audio_t
*const sh_audio
= mpctx
->sh_audio
;
2798 sh_video_t
*const sh_video
= mpctx
->sh_video
;
2799 int osd_duration
= opts
->osd_duration
;
2800 int case_fallthrough_hack
= 0;
2801 if (set_property_command(mpctx
, cmd
))
2802 goto old_pause_hack
; // was handled already
2805 mpctx
->add_osd_seek_info
= true;
2806 float v
= cmd
->args
[0].v
.f
;
2807 int abs
= (cmd
->nargs
> 1) ? cmd
->args
[1].v
.i
: 0;
2808 int exact
= (cmd
->nargs
> 2) ? cmd
->args
[2].v
.i
: 0;
2809 if (abs
== 2) { // Absolute seek to a timestamp in seconds
2810 queue_seek(mpctx
, MPSEEK_ABSOLUTE
, v
, exact
);
2811 mpctx
->osd_function
= v
> get_current_time(mpctx
) ?
2813 } else if (abs
) { /* Absolute seek by percentage */
2814 queue_seek(mpctx
, MPSEEK_FACTOR
, v
/ 100.0, exact
);
2815 mpctx
->osd_function
= OSD_FFW
; // Direction isn't set correctly
2817 queue_seek(mpctx
, MPSEEK_RELATIVE
, v
, exact
);
2818 mpctx
->osd_function
= (v
> 0) ? OSD_FFW
: OSD_REW
;
2823 case MP_CMD_SET_PROPERTY_OSD
:
2824 case_fallthrough_hack
= 1;
2826 case MP_CMD_SET_PROPERTY
: {
2827 int r
= mp_property_do(cmd
->args
[0].v
.s
, M_PROPERTY_PARSE
,
2828 cmd
->args
[1].v
.s
, mpctx
);
2829 if (r
== M_PROPERTY_UNKNOWN
)
2830 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2831 "Unknown property: '%s'\n", cmd
->args
[0].v
.s
);
2833 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2834 "Failed to set property '%s' to '%s'.\n",
2835 cmd
->args
[0].v
.s
, cmd
->args
[1].v
.s
);
2836 else if (case_fallthrough_hack
)
2837 show_property_osd(mpctx
, cmd
->args
[0].v
.s
);
2839 mp_msg(MSGT_GLOBAL
, MSGL_INFO
,
2840 "ANS_ERROR=%s\n", property_error_string(r
));
2844 case MP_CMD_STEP_PROPERTY_OSD
:
2845 case_fallthrough_hack
= 1;
2847 case MP_CMD_STEP_PROPERTY
: {
2852 if (cmd
->args
[1].v
.f
) {
2854 if ((r
= mp_property_do(cmd
->args
[0].v
.s
,
2855 M_PROPERTY_GET_TYPE
,
2856 &prop
, mpctx
)) <= 0)
2858 if (prop
->type
== CONF_TYPE_INT
||
2859 prop
->type
== CONF_TYPE_FLAG
)
2860 i
= cmd
->args
[1].v
.f
, arg
= &i
;
2861 else if (prop
->type
== CONF_TYPE_FLOAT
)
2862 arg
= &cmd
->args
[1].v
.f
;
2863 else if (prop
->type
== CONF_TYPE_DOUBLE
||
2864 prop
->type
== CONF_TYPE_TIME
)
2865 d
= cmd
->args
[1].v
.f
, arg
= &d
;
2866 else if (prop
->type
== CONF_TYPE_POSITION
)
2867 o
= cmd
->args
[1].v
.f
, arg
= &o
;
2869 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2870 "Ignoring step size stepping property '%s'.\n",
2873 r
= mp_property_do(cmd
->args
[0].v
.s
,
2874 cmd
->args
[2].v
.i
< 0 ?
2875 M_PROPERTY_STEP_DOWN
: M_PROPERTY_STEP_UP
,
2878 if (r
== M_PROPERTY_UNKNOWN
)
2879 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2880 "Unknown property: '%s'\n", cmd
->args
[0].v
.s
);
2882 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2883 "Failed to increment property '%s' by %f.\n",
2884 cmd
->args
[0].v
.s
, cmd
->args
[1].v
.f
);
2885 else if (case_fallthrough_hack
)
2886 show_property_osd(mpctx
, cmd
->args
[0].v
.s
);
2888 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_ERROR=%s\n",
2889 property_error_string(r
));
2893 case MP_CMD_GET_PROPERTY
: {
2895 int r
= mp_property_do(cmd
->args
[0].v
.s
, M_PROPERTY_TO_STRING
,
2898 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
2899 "Failed to get value of property '%s'.\n",
2901 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_ERROR=%s\n",
2902 property_error_string(r
));
2905 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_%s=%s\n",
2906 cmd
->args
[0].v
.s
, tmp
);
2911 case MP_CMD_EDL_MARK
:
2913 float v
= get_current_time(mpctx
);
2914 if (mpctx
->begin_skip
== MP_NOPTS_VALUE
) {
2915 mpctx
->begin_skip
= v
;
2916 mp_tmsg(MSGT_CPLAYER
, MSGL_INFO
,
2917 "EDL skip start, press 'i' again to end block.\n");
2919 if (mpctx
->begin_skip
> v
)
2920 mp_tmsg(MSGT_CPLAYER
, MSGL_WARN
,
2921 "EDL skip canceled, last start > stop\n");
2923 fprintf(edl_fd
, "%f %f %d\n", mpctx
->begin_skip
, v
, 0);
2924 mp_tmsg(MSGT_CPLAYER
, MSGL_INFO
,
2925 "EDL skip end, line written.\n");
2927 mpctx
->begin_skip
= MP_NOPTS_VALUE
;
2932 case MP_CMD_SWITCH_RATIO
:
2935 if (cmd
->nargs
== 0 || cmd
->args
[0].v
.f
== -1)
2936 opts
->movie_aspect
= (float) sh_video
->disp_w
/ sh_video
->disp_h
;
2938 opts
->movie_aspect
= cmd
->args
[0].v
.f
;
2939 video_reset_aspect(sh_video
);
2942 case MP_CMD_SPEED_INCR
: {
2943 float v
= cmd
->args
[0].v
.f
;
2944 mp_property_do("speed", M_PROPERTY_STEP_UP
, &v
, mpctx
);
2945 show_property_osd(mpctx
, "speed");
2949 case MP_CMD_SPEED_MULT
:
2950 case_fallthrough_hack
= true;
2952 case MP_CMD_SPEED_SET
: {
2953 float v
= cmd
->args
[0].v
.f
;
2954 if (case_fallthrough_hack
)
2955 v
*= mpctx
->opts
.playback_speed
;
2956 mp_property_do("speed", M_PROPERTY_SET
, &v
, mpctx
);
2957 show_property_osd(mpctx
, "speed");
2961 case MP_CMD_FRAME_STEP
:
2962 add_step_frame(mpctx
);
2966 exit_player_with_rc(mpctx
, EXIT_QUIT
,
2967 (cmd
->nargs
> 0) ? cmd
->args
[0].v
.i
: 0);
2969 case MP_CMD_PLAY_TREE_STEP
: {
2970 int n
= cmd
->args
[0].v
.i
== 0 ? 1 : cmd
->args
[0].v
.i
;
2971 int force
= cmd
->args
[1].v
.i
;
2974 if (!force
&& mpctx
->playtree_iter
) {
2975 play_tree_iter_t
*i
=
2976 play_tree_iter_new_copy(mpctx
->playtree_iter
);
2977 if (play_tree_iter_step(i
, n
, 0) ==
2978 PLAY_TREE_ITER_ENTRY
)
2980 (n
> 0) ? PT_NEXT_ENTRY
: PT_PREV_ENTRY
;
2981 play_tree_iter_free(i
);
2983 mpctx
->stop_play
= (n
> 0) ? PT_NEXT_ENTRY
: PT_PREV_ENTRY
;
2984 if (mpctx
->stop_play
)
2985 mpctx
->play_tree_step
= n
;
2990 case MP_CMD_PLAY_TREE_UP_STEP
: {
2991 int n
= cmd
->args
[0].v
.i
> 0 ? 1 : -1;
2992 int force
= cmd
->args
[1].v
.i
;
2994 if (!force
&& mpctx
->playtree_iter
) {
2995 play_tree_iter_t
*i
=
2996 play_tree_iter_new_copy(mpctx
->playtree_iter
);
2997 if (play_tree_iter_up_step(i
, n
, 0) == PLAY_TREE_ITER_ENTRY
)
2998 mpctx
->stop_play
= (n
> 0) ? PT_UP_NEXT
: PT_UP_PREV
;
2999 play_tree_iter_free(i
);
3001 mpctx
->stop_play
= (n
> 0) ? PT_UP_NEXT
: PT_UP_PREV
;
3005 case MP_CMD_PLAY_ALT_SRC_STEP
:
3006 if (mpctx
->playtree_iter
&& mpctx
->playtree_iter
->num_files
> 1) {
3007 int v
= cmd
->args
[0].v
.i
;
3009 && mpctx
->playtree_iter
->file
<
3010 mpctx
->playtree_iter
->num_files
)
3011 mpctx
->stop_play
= PT_NEXT_SRC
;
3012 else if (v
< 0 && mpctx
->playtree_iter
->file
> 1)
3013 mpctx
->stop_play
= PT_PREV_SRC
;
3017 case MP_CMD_SUB_STEP
:
3019 int movement
= cmd
->args
[0].v
.i
;
3020 step_sub(mpctx
->subdata
, mpctx
->video_pts
, movement
);
3022 if (mpctx
->osd
->ass_track
)
3024 ass_step_sub(mpctx
->osd
->ass_track
,
3026 sub_delay
) * 1000 + .5, movement
) / 1000.;
3028 set_osd_tmsg(OSD_MSG_SUB_DELAY
, 1, osd_duration
,
3029 "Sub delay: %d ms", ROUND(sub_delay
* 1000));
3033 case MP_CMD_SUB_LOG
:
3038 int v
= cmd
->args
[0].v
.i
;
3039 int max
= (opts
->term_osd
3040 && !sh_video
) ? MAX_TERM_OSD_LEVEL
: MAX_OSD_LEVEL
;
3041 if (opts
->osd_level
> max
)
3042 opts
->osd_level
= max
;
3044 opts
->osd_level
= (opts
->osd_level
+ 1) % (max
+ 1);
3046 opts
->osd_level
= v
> max
? max
: v
;
3047 /* Show OSD state when disabled, but not when an explicit
3048 argument is given to the OSD command, i.e. in slave mode. */
3049 if (v
== -1 && opts
->osd_level
<= 1)
3050 set_osd_tmsg(OSD_MSG_OSD_STATUS
, 0, osd_duration
,
3052 opts
->osd_level
? mp_gtext("enabled") :
3053 mp_gtext("disabled"));
3055 rm_osd_msg(OSD_MSG_OSD_STATUS
);
3059 case MP_CMD_OSD_SHOW_TEXT
:
3060 set_osd_msg(OSD_MSG_TEXT
, cmd
->args
[2].v
.i
,
3062 0 ? osd_duration
: cmd
->args
[1].v
.i
),
3063 "%s", cmd
->args
[0].v
.s
);
3066 case MP_CMD_OSD_SHOW_PROPERTY_TEXT
: {
3067 char *txt
= m_properties_expand_string(mp_properties
,
3070 // if no argument supplied use default osd_duration, else <arg> ms.
3072 set_osd_msg(OSD_MSG_TEXT
, cmd
->args
[2].v
.i
,
3074 0 ? osd_duration
: cmd
->args
[1].v
.i
),
3081 case MP_CMD_LOADFILE
: {
3082 play_tree_t
*e
= play_tree_new();
3083 play_tree_add_file(e
, cmd
->args
[0].v
.s
);
3085 if (cmd
->args
[1].v
.i
) // append
3086 play_tree_append_entry(mpctx
->playtree
->child
, e
);
3088 // Go back to the starting point.
3089 while (play_tree_iter_up_step(mpctx
->playtree_iter
, 0, 1)
3090 != PLAY_TREE_ITER_END
)
3092 play_tree_free_list(mpctx
->playtree
->child
, 1);
3093 play_tree_set_child(mpctx
->playtree
, e
);
3094 pt_iter_goto_head(mpctx
->playtree_iter
);
3095 mpctx
->stop_play
= PT_NEXT_SRC
;
3100 case MP_CMD_LOADLIST
: {
3101 play_tree_t
*e
= parse_playlist_file(mpctx
->mconfig
,
3102 bstr(cmd
->args
[0].v
.s
));
3104 mp_tmsg(MSGT_CPLAYER
, MSGL_ERR
,
3105 "\nUnable to load playlist %s.\n", cmd
->args
[0].v
.s
);
3107 if (cmd
->args
[1].v
.i
) // append
3108 play_tree_append_entry(mpctx
->playtree
->child
, e
);
3110 // Go back to the starting point.
3111 while (play_tree_iter_up_step(mpctx
->playtree_iter
, 0, 1)
3112 != PLAY_TREE_ITER_END
)
3114 play_tree_free_list(mpctx
->playtree
->child
, 1);
3115 play_tree_set_child(mpctx
->playtree
, e
);
3116 pt_iter_goto_head(mpctx
->playtree_iter
);
3117 mpctx
->stop_play
= PT_NEXT_SRC
;
3124 // Go back to the starting point.
3125 while (play_tree_iter_up_step(mpctx
->playtree_iter
, 0, 1) !=
3128 mpctx
->stop_play
= PT_STOP
;
3131 case MP_CMD_OSD_SHOW_PROGRESSION
: {
3132 int len
= get_time_length(mpctx
);
3133 int pts
= get_current_time(mpctx
);
3134 set_osd_bar(mpctx
, 0, "Position", 0, 100, get_percent_pos(mpctx
));
3135 set_osd_msg(OSD_MSG_TEXT
, 1, osd_duration
,
3136 "%c %02d:%02d:%02d / %02d:%02d:%02d",
3137 mpctx
->osd_function
, pts
/ 3600, (pts
/ 60) % 60, pts
% 60,
3138 len
/ 3600, (len
/ 60) % 60, len
% 60);
3143 case MP_CMD_RADIO_STEP_CHANNEL
:
3144 if (mpctx
->demuxer
->stream
->type
== STREAMTYPE_RADIO
) {
3145 int v
= cmd
->args
[0].v
.i
;
3147 radio_step_channel(mpctx
->demuxer
->stream
,
3148 RADIO_CHANNEL_HIGHER
);
3150 radio_step_channel(mpctx
->demuxer
->stream
,
3151 RADIO_CHANNEL_LOWER
);
3152 if (radio_get_channel_name(mpctx
->demuxer
->stream
)) {
3153 set_osd_tmsg(OSD_MSG_RADIO_CHANNEL
, 1, osd_duration
,
3155 radio_get_channel_name(mpctx
->demuxer
->stream
));
3160 case MP_CMD_RADIO_SET_CHANNEL
:
3161 if (mpctx
->demuxer
->stream
->type
== STREAMTYPE_RADIO
) {
3162 radio_set_channel(mpctx
->demuxer
->stream
, cmd
->args
[0].v
.s
);
3163 if (radio_get_channel_name(mpctx
->demuxer
->stream
)) {
3164 set_osd_tmsg(OSD_MSG_RADIO_CHANNEL
, 1, osd_duration
,
3166 radio_get_channel_name(mpctx
->demuxer
->stream
));
3171 case MP_CMD_RADIO_SET_FREQ
:
3172 if (mpctx
->demuxer
->stream
->type
== STREAMTYPE_RADIO
)
3173 radio_set_freq(mpctx
->demuxer
->stream
, cmd
->args
[0].v
.f
);
3176 case MP_CMD_RADIO_STEP_FREQ
:
3177 if (mpctx
->demuxer
->stream
->type
== STREAMTYPE_RADIO
)
3178 radio_step_freq(mpctx
->demuxer
->stream
, cmd
->args
[0].v
.f
);
3183 case MP_CMD_TV_START_SCAN
:
3184 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3185 tv_start_scan((tvi_handle_t
*) (mpctx
->demuxer
->priv
), 1);
3187 case MP_CMD_TV_SET_FREQ
:
3188 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3189 tv_set_freq((tvi_handle_t
*) (mpctx
->demuxer
->priv
),
3190 cmd
->args
[0].v
.f
* 16.0);
3192 else if (mpctx
->stream
&& mpctx
->stream
->type
== STREAMTYPE_PVR
) {
3193 pvr_set_freq(mpctx
->stream
, ROUND(cmd
->args
[0].v
.f
));
3194 set_osd_msg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
, "%s: %s",
3195 pvr_get_current_channelname(mpctx
->stream
),
3196 pvr_get_current_stationname(mpctx
->stream
));
3198 #endif /* CONFIG_PVR */
3201 case MP_CMD_TV_STEP_FREQ
:
3202 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3203 tv_step_freq((tvi_handle_t
*) (mpctx
->demuxer
->priv
),
3204 cmd
->args
[0].v
.f
* 16.0);
3206 else if (mpctx
->stream
&& mpctx
->stream
->type
== STREAMTYPE_PVR
) {
3207 pvr_force_freq_step(mpctx
->stream
, ROUND(cmd
->args
[0].v
.f
));
3208 set_osd_msg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
, "%s: f %d",
3209 pvr_get_current_channelname(mpctx
->stream
),
3210 pvr_get_current_frequency(mpctx
->stream
));
3212 #endif /* CONFIG_PVR */
3215 case MP_CMD_TV_SET_NORM
:
3216 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3217 tv_set_norm((tvi_handle_t
*) (mpctx
->demuxer
->priv
),
3221 case MP_CMD_TV_STEP_CHANNEL
:
3222 if (mpctx
->file_format
== DEMUXER_TYPE_TV
) {
3223 int v
= cmd
->args
[0].v
.i
;
3225 tv_step_channel((tvi_handle_t
*) (mpctx
->
3229 tv_step_channel((tvi_handle_t
*) (mpctx
->
3233 if (tv_channel_list
) {
3234 set_osd_tmsg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
,
3235 "Channel: %s", tv_channel_current
->name
);
3236 //vo_osd_changed(OSDTYPE_SUBTITLE);
3240 else if (mpctx
->stream
&&
3241 mpctx
->stream
->type
== STREAMTYPE_PVR
) {
3242 pvr_set_channel_step(mpctx
->stream
, cmd
->args
[0].v
.i
);
3243 set_osd_msg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
, "%s: %s",
3244 pvr_get_current_channelname(mpctx
->stream
),
3245 pvr_get_current_stationname(mpctx
->stream
));
3247 #endif /* CONFIG_PVR */
3249 if (mpctx
->stream
->type
== STREAMTYPE_DVB
) {
3251 int v
= cmd
->args
[0].v
.i
;
3253 mpctx
->last_dvb_step
= v
;
3255 dir
= DVB_CHANNEL_HIGHER
;
3257 dir
= DVB_CHANNEL_LOWER
;
3260 if (dvb_step_channel(mpctx
->stream
, dir
)) {
3261 mpctx
->stop_play
= PT_NEXT_ENTRY
;
3262 mpctx
->dvbin_reopen
= 1;
3265 #endif /* CONFIG_DVBIN */
3268 case MP_CMD_TV_SET_CHANNEL
:
3269 if (mpctx
->file_format
== DEMUXER_TYPE_TV
) {
3270 tv_set_channel((tvi_handle_t
*) (mpctx
->demuxer
->priv
),
3272 if (tv_channel_list
) {
3273 set_osd_tmsg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
,
3274 "Channel: %s", tv_channel_current
->name
);
3275 //vo_osd_changed(OSDTYPE_SUBTITLE);
3279 else if (mpctx
->stream
&& mpctx
->stream
->type
== STREAMTYPE_PVR
) {
3280 pvr_set_channel(mpctx
->stream
, cmd
->args
[0].v
.s
);
3281 set_osd_msg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
, "%s: %s",
3282 pvr_get_current_channelname(mpctx
->stream
),
3283 pvr_get_current_stationname(mpctx
->stream
));
3285 #endif /* CONFIG_PVR */
3289 case MP_CMD_DVB_SET_CHANNEL
:
3290 if (mpctx
->stream
->type
== STREAMTYPE_DVB
) {
3291 mpctx
->last_dvb_step
= 1;
3293 if (dvb_set_channel(mpctx
->stream
, cmd
->args
[1].v
.i
,
3294 cmd
->args
[0].v
.i
)) {
3295 mpctx
->stop_play
= PT_NEXT_ENTRY
;
3296 mpctx
->dvbin_reopen
= 1;
3300 #endif /* CONFIG_DVBIN */
3302 case MP_CMD_TV_LAST_CHANNEL
:
3303 if (mpctx
->file_format
== DEMUXER_TYPE_TV
) {
3304 tv_last_channel((tvi_handle_t
*) (mpctx
->demuxer
->priv
));
3305 if (tv_channel_list
) {
3306 set_osd_tmsg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
,
3307 "Channel: %s", tv_channel_current
->name
);
3308 //vo_osd_changed(OSDTYPE_SUBTITLE);
3312 else if (mpctx
->stream
&& mpctx
->stream
->type
== STREAMTYPE_PVR
) {
3313 pvr_set_lastchannel(mpctx
->stream
);
3314 set_osd_msg(OSD_MSG_TV_CHANNEL
, 1, osd_duration
, "%s: %s",
3315 pvr_get_current_channelname(mpctx
->stream
),
3316 pvr_get_current_stationname(mpctx
->stream
));
3318 #endif /* CONFIG_PVR */
3321 case MP_CMD_TV_STEP_NORM
:
3322 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3323 tv_step_norm((tvi_handle_t
*) (mpctx
->demuxer
->priv
));
3326 case MP_CMD_TV_STEP_CHANNEL_LIST
:
3327 if (mpctx
->file_format
== DEMUXER_TYPE_TV
)
3328 tv_step_chanlist((tvi_handle_t
*) (mpctx
->demuxer
->priv
));
3330 #endif /* CONFIG_TV */
3331 case MP_CMD_TV_TELETEXT_ADD_DEC
:
3332 if (mpctx
->demuxer
->teletext
)
3333 teletext_control(mpctx
->demuxer
->teletext
, TV_VBI_CONTROL_ADD_DEC
,
3334 &(cmd
->args
[0].v
.s
));
3336 case MP_CMD_TV_TELETEXT_GO_LINK
:
3337 if (mpctx
->demuxer
->teletext
)
3338 teletext_control(mpctx
->demuxer
->teletext
, TV_VBI_CONTROL_GO_LINK
,
3339 &(cmd
->args
[0].v
.i
));
3342 case MP_CMD_SUB_LOAD
:
3344 int n
= mpctx
->set_of_sub_size
;
3345 add_subtitles(mpctx
, cmd
->args
[0].v
.s
, sh_video
->fps
, 0);
3346 if (n
!= mpctx
->set_of_sub_size
) {
3347 mpctx
->sub_counts
[SUB_SOURCE_SUBS
]++;
3348 ++mpctx
->global_sub_size
;
3353 case MP_CMD_SUB_REMOVE
:
3355 int v
= cmd
->args
[0].v
.i
;
3357 remove_subtitle_range(mpctx
, 0, mpctx
->set_of_sub_size
);
3358 else if (v
< mpctx
->set_of_sub_size
)
3359 remove_subtitle_range(mpctx
, v
, 1);
3363 case MP_CMD_GET_SUB_VISIBILITY
:
3365 mp_msg(MSGT_GLOBAL
, MSGL_INFO
,
3366 "ANS_SUB_VISIBILITY=%d\n", sub_visibility
);
3370 case MP_CMD_SCREENSHOT
:
3371 screenshot_request(mpctx
, cmd
->args
[0].v
.i
, cmd
->args
[1].v
.i
);
3374 case MP_CMD_VF_CHANGE_RECTANGLE
:
3377 set_rectangle(sh_video
, cmd
->args
[0].v
.i
, cmd
->args
[1].v
.i
);
3380 case MP_CMD_GET_TIME_LENGTH
:
3381 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_LENGTH=%.2f\n",
3382 get_time_length(mpctx
));
3385 case MP_CMD_GET_FILENAME
: {
3386 char *inf
= get_metadata(mpctx
, META_NAME
);
3387 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_FILENAME='%s'\n", inf
);
3392 case MP_CMD_GET_VIDEO_CODEC
: {
3393 char *inf
= get_metadata(mpctx
, META_VIDEO_CODEC
);
3394 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_VIDEO_CODEC='%s'\n", inf
);
3399 case MP_CMD_GET_VIDEO_BITRATE
: {
3400 char *inf
= get_metadata(mpctx
, META_VIDEO_BITRATE
);
3401 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_VIDEO_BITRATE='%s'\n", inf
);
3406 case MP_CMD_GET_VIDEO_RESOLUTION
: {
3407 char *inf
= get_metadata(mpctx
, META_VIDEO_RESOLUTION
);
3408 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_VIDEO_RESOLUTION='%s'\n", inf
);
3413 case MP_CMD_GET_AUDIO_CODEC
: {
3414 char *inf
= get_metadata(mpctx
, META_AUDIO_CODEC
);
3415 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_AUDIO_CODEC='%s'\n", inf
);
3420 case MP_CMD_GET_AUDIO_BITRATE
: {
3421 char *inf
= get_metadata(mpctx
, META_AUDIO_BITRATE
);
3422 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_AUDIO_BITRATE='%s'\n", inf
);
3427 case MP_CMD_GET_AUDIO_SAMPLES
: {
3428 char *inf
= get_metadata(mpctx
, META_AUDIO_SAMPLES
);
3429 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_AUDIO_SAMPLES='%s'\n", inf
);
3434 case MP_CMD_GET_META_TITLE
: {
3435 char *inf
= get_metadata(mpctx
, META_INFO_TITLE
);
3436 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_TITLE='%s'\n", inf
);
3441 case MP_CMD_GET_META_ARTIST
: {
3442 char *inf
= get_metadata(mpctx
, META_INFO_ARTIST
);
3443 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_ARTIST='%s'\n", inf
);
3448 case MP_CMD_GET_META_ALBUM
: {
3449 char *inf
= get_metadata(mpctx
, META_INFO_ALBUM
);
3450 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_ALBUM='%s'\n", inf
);
3455 case MP_CMD_GET_META_YEAR
: {
3456 char *inf
= get_metadata(mpctx
, META_INFO_YEAR
);
3457 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_YEAR='%s'\n", inf
);
3462 case MP_CMD_GET_META_COMMENT
: {
3463 char *inf
= get_metadata(mpctx
, META_INFO_COMMENT
);
3464 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_COMMENT='%s'\n", inf
);
3469 case MP_CMD_GET_META_TRACK
: {
3470 char *inf
= get_metadata(mpctx
, META_INFO_TRACK
);
3471 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_TRACK='%s'\n", inf
);
3476 case MP_CMD_GET_META_GENRE
: {
3477 char *inf
= get_metadata(mpctx
, META_INFO_GENRE
);
3478 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_META_GENRE='%s'\n", inf
);
3483 case MP_CMD_GET_VO_FULLSCREEN
:
3484 if (mpctx
->video_out
&& mpctx
->video_out
->config_ok
)
3485 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_VO_FULLSCREEN=%d\n", vo_fs
);
3488 case MP_CMD_GET_PERCENT_POS
:
3489 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_PERCENT_POSITION=%d\n",
3490 get_percent_pos(mpctx
));
3493 case MP_CMD_GET_TIME_POS
: {
3494 float pos
= get_current_time(mpctx
);
3495 mp_msg(MSGT_GLOBAL
, MSGL_INFO
, "ANS_TIME_POSITION=%.1f\n", pos
);
3502 execl("/bin/sh", "sh", "-c", cmd
->args
[0].v
.s
, NULL
);
3508 case MP_CMD_KEYDOWN_EVENTS
:
3509 mplayer_put_key(mpctx
->key_fifo
, cmd
->args
[0].v
.i
);
3512 case MP_CMD_SET_MOUSE_POS
: {
3513 int pointer_x
, pointer_y
;
3515 pointer_x
= cmd
->args
[0].v
.i
;
3516 pointer_y
= cmd
->args
[1].v
.i
;
3517 rescale_input_coordinates(mpctx
, pointer_x
, pointer_y
, &dx
, &dy
);
3518 #ifdef CONFIG_DVDNAV
3519 if (mpctx
->stream
->type
== STREAMTYPE_DVDNAV
3520 && dx
> 0.0 && dy
> 0.0) {
3522 pointer_x
= (int) (dx
* (double) sh_video
->disp_w
);
3523 pointer_y
= (int) (dy
* (double) sh_video
->disp_h
);
3524 mp_dvdnav_update_mouse_pos(mpctx
->stream
,
3525 pointer_x
, pointer_y
, &button
);
3526 if (opts
->osd_level
> 1 && button
> 0)
3527 set_osd_msg(OSD_MSG_TEXT
, 1, osd_duration
,
3528 "Selected button number %d", button
);
3534 #ifdef CONFIG_DVDNAV
3535 case MP_CMD_DVDNAV
: {
3538 enum mp_command_type command
= 0;
3539 if (mpctx
->stream
->type
!= STREAMTYPE_DVDNAV
)
3542 for (i
= 0; mp_dvdnav_bindings
[i
].name
; i
++)
3543 if (cmd
->args
[0].v
.s
&&
3544 !strcasecmp(cmd
->args
[0].v
.s
,
3545 mp_dvdnav_bindings
[i
].name
))
3546 command
= mp_dvdnav_bindings
[i
].cmd
;
3548 mp_dvdnav_handle_input(mpctx
->stream
, command
, &button
);
3549 if (opts
->osd_level
> 1 && button
> 0)
3550 set_osd_msg(OSD_MSG_TEXT
, 1, osd_duration
,
3551 "Selected button number %d", button
);
3555 case MP_CMD_SWITCH_TITLE
:
3556 if (mpctx
->stream
->type
== STREAMTYPE_DVDNAV
)
3557 mp_dvdnav_switch_title(mpctx
->stream
, cmd
->args
[0].v
.i
);
3562 case MP_CMD_AF_SWITCH
:
3564 af_uninit(mpctx
->mixer
.afilter
);
3565 af_init(mpctx
->mixer
.afilter
);
3568 case MP_CMD_AF_DEL
: {
3571 char *af_args
= strdup(cmd
->args
[0].v
.s
);
3572 char *af_commands
= af_args
;
3575 while ((af_command
= strsep(&af_commands
, ",")) != NULL
) {
3576 if (cmd
->id
== MP_CMD_AF_DEL
) {
3577 af
= af_get(mpctx
->mixer
.afilter
, af_command
);
3579 af_remove(mpctx
->mixer
.afilter
, af
);
3581 af_add(mpctx
->mixer
.afilter
, af_command
);
3583 reinit_audio_chain(mpctx
);
3590 af_uninit(mpctx
->mixer
.afilter
);
3591 af_init(mpctx
->mixer
.afilter
);
3592 reinit_audio_chain(mpctx
);
3594 case MP_CMD_AF_CMDLINE
:
3596 af_instance_t
*af
= af_get(sh_audio
->afilter
, cmd
->args
[0].v
.s
);
3598 mp_msg(MSGT_CPLAYER
, MSGL_WARN
,
3599 "Filter '%s' not found in chain.\n", cmd
->args
[0].v
.s
);
3602 af
->control(af
, AF_CONTROL_COMMAND_LINE
, cmd
->args
[1].v
.s
);
3603 af_reinit(sh_audio
->afilter
, af
);
3608 mp_msg(MSGT_CPLAYER
, MSGL_V
,
3609 "Received unknown cmd %s\n", cmd
->name
);
3613 switch (cmd
->pausing
) {
3614 case 1: // "pausing"
3615 pause_player(mpctx
);
3617 case 3: // "pausing_toggle"
3619 unpause_player(mpctx
);
3621 pause_player(mpctx
);