vo_gl: Request GL_LUMINANCE16 for 16-bit YUV input
[mplayer.git] / command.c
blobc5feb62e26d049c40877418c1b280215353504f7
1 /*
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.
19 #include <stdlib.h>
20 #include <inttypes.h>
21 #include <unistd.h>
22 #include <string.h>
23 #include <stdbool.h>
25 #include "config.h"
26 #include "talloc.h"
27 #include "command.h"
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"
33 #include "mplayer.h"
34 #include "sub/sub.h"
35 #include "sub/dec_sub.h"
36 #include "m_option.h"
37 #include "m_property.h"
38 #include "m_config.h"
39 #include "metadata.h"
40 #include "libmpcodecs/vf.h"
41 #include "libmpcodecs/vd.h"
42 #include "mp_osd.h"
43 #include "libvo/video_out.h"
44 #include "sub/font_load.h"
45 #include "playtree.h"
46 #include "libao2/audio_out.h"
47 #include "mpcommon.h"
48 #include "mixer.h"
49 #include "libmpcodecs/dec_video.h"
50 #include "libmpcodecs/dec_audio.h"
51 #include "libmpcodecs/dec_teletext.h"
52 #include "osdep/strsep.h"
53 #include "sub/vobsub.h"
54 #include "sub/spudec.h"
55 #include "path.h"
56 #include "sub/ass_mp.h"
57 #include "stream/tv.h"
58 #include "stream/stream_radio.h"
59 #include "stream/pvr.h"
60 #ifdef CONFIG_DVBIN
61 #include "stream/dvbin.h"
62 #endif
63 #ifdef CONFIG_DVDREAD
64 #include "stream/stream_dvd.h"
65 #endif
66 #include "stream/stream_dvdnav.h"
67 #include "m_struct.h"
68 #include "libmenu/menu.h"
70 #include "mp_core.h"
71 #include "mp_fifo.h"
72 #include "libavutil/avstring.h"
74 extern int use_menu;
76 static void rescale_input_coordinates(struct MPContext *mpctx, int ix, int iy,
77 double *dx, double *dy)
79 struct MPOpts *opts = &mpctx->opts;
80 struct vo *vo = mpctx->video_out;
81 //remove the borders, if any, and rescale to the range [0,1],[0,1]
82 if (vo_fs) { //we are in full-screen mode
83 if (opts->vo_screenwidth > vo->dwidth) //there are borders along the x axis
84 ix -= (opts->vo_screenwidth - vo->dwidth) / 2;
85 if (opts->vo_screenheight > vo->dheight) //there are borders along the y axis (usual way)
86 iy -= (opts->vo_screenheight - vo->dheight) / 2;
88 if (ix < 0 || ix > vo->dwidth) {
89 *dx = *dy = -1.0;
90 return;
91 } //we are on one of the borders
92 if (iy < 0 || iy > vo->dheight) {
93 *dx = *dy = -1.0;
94 return;
95 } //we are on one of the borders
98 *dx = (double) ix / (double) vo->dwidth;
99 *dy = (double) iy / (double) vo->dheight;
101 mp_msg(MSGT_CPLAYER, MSGL_V,
102 "\r\nrescaled coordinates: %.3f, %.3f, screen (%d x %d), vodisplay: (%d, %d), fullscreen: %d\r\n",
103 *dx, *dy, opts->vo_screenwidth, opts->vo_screenheight, vo->dwidth,
104 vo->dheight, vo_fs);
107 static int sub_pos_by_source(MPContext *mpctx, int src)
109 int i, cnt = 0;
110 if (src >= SUB_SOURCES || mpctx->sub_counts[src] == 0)
111 return -1;
112 for (i = 0; i < src; i++)
113 cnt += mpctx->sub_counts[i];
114 return cnt;
117 static int sub_source_and_index_by_pos(MPContext *mpctx, int *pos)
119 int start = 0;
120 int i;
121 for (i = 0; i < SUB_SOURCES; i++) {
122 int cnt = mpctx->sub_counts[i];
123 if (*pos >= start && *pos < start + cnt) {
124 *pos -= start;
125 return i;
127 start += cnt;
129 *pos = -1;
130 return -1;
133 static int sub_source_by_pos(MPContext *mpctx, int pos)
135 return sub_source_and_index_by_pos(mpctx, &pos);
138 static int sub_source_pos(MPContext *mpctx)
140 int pos = mpctx->global_sub_pos;
141 sub_source_and_index_by_pos(mpctx, &pos);
142 return pos;
145 static int sub_source(MPContext *mpctx)
147 return sub_source_by_pos(mpctx, mpctx->global_sub_pos);
150 static void update_global_sub_size(MPContext *mpctx)
152 struct MPOpts *opts = &mpctx->opts;
153 int i;
154 int cnt = 0;
156 // update number of demuxer sub streams
157 for (i = 0; i < MAX_S_STREAMS; i++)
158 if (mpctx->d_sub->demuxer->s_streams[i])
159 cnt++;
160 if (cnt > mpctx->sub_counts[SUB_SOURCE_DEMUX])
161 mpctx->sub_counts[SUB_SOURCE_DEMUX] = cnt;
163 // update global size
164 mpctx->global_sub_size = 0;
165 for (i = 0; i < SUB_SOURCES; i++)
166 mpctx->global_sub_size += mpctx->sub_counts[i];
168 // update global_sub_pos if we auto-detected a demuxer sub
169 if (mpctx->global_sub_pos == -1) {
170 int sub_id = -1;
171 if (mpctx->demuxer->sub)
172 sub_id = mpctx->demuxer->sub->id;
173 if (sub_id < 0)
174 sub_id = opts->sub_id;
175 if (sub_id >= 0 && sub_id < mpctx->sub_counts[SUB_SOURCE_DEMUX])
176 mpctx->global_sub_pos = sub_pos_by_source(mpctx, SUB_SOURCE_DEMUX) +
177 sub_id;
182 * \brief Log the currently displayed subtitle to a file
184 * Logs the current or last displayed subtitle together with filename
185 * and time information to ~/.mplayer/subtitle_log
187 * Intended purpose is to allow convenient marking of bogus subtitles
188 * which need to be fixed while watching the movie.
191 static void log_sub(struct MPContext *mpctx)
193 char *fname;
194 FILE *f;
195 int i;
196 struct subtitle *vo_sub_last = mpctx->vo_sub_last;
198 if (mpctx->subdata == NULL || vo_sub_last == NULL)
199 return;
200 fname = get_path("subtitle_log");
201 f = fopen(fname, "a");
202 if (!f)
203 return;
204 fprintf(f, "----------------------------------------------------------\n");
205 if (mpctx->subdata->sub_uses_time) {
206 fprintf(f,
207 "N: %s S: %02ld:%02ld:%02ld.%02ld E: %02ld:%02ld:%02ld.%02ld\n",
208 mpctx->filename, vo_sub_last->start / 360000,
209 (vo_sub_last->start / 6000) % 60,
210 (vo_sub_last->start / 100) % 60, vo_sub_last->start % 100,
211 vo_sub_last->end / 360000, (vo_sub_last->end / 6000) % 60,
212 (vo_sub_last->end / 100) % 60, vo_sub_last->end % 100);
213 } else {
214 fprintf(f, "N: %s S: %ld E: %ld\n", mpctx->filename,
215 vo_sub_last->start, vo_sub_last->end);
217 for (i = 0; i < vo_sub_last->lines; i++) {
218 fprintf(f, "%s\n", vo_sub_last->text[i]);
220 fclose(f);
224 /// \defgroup Properties
225 ///@{
227 /// \defgroup GeneralProperties General properties
228 /// \ingroup Properties
229 ///@{
231 static int mp_property_generic_option(struct m_option *prop, int action,
232 void *arg, MPContext *mpctx)
234 char *optname = prop->priv;
235 const struct m_option *opt = m_config_get_option(mpctx->mconfig, optname);
236 void *valptr = m_option_get_ptr(opt, &mpctx->opts);
238 switch (action) {
239 case M_PROPERTY_GET_TYPE:
240 *(const struct m_option **)arg = opt;
241 return M_PROPERTY_OK;
242 case M_PROPERTY_GET:
243 m_option_copy(opt, arg, valptr);
244 return M_PROPERTY_OK;
245 case M_PROPERTY_SET:
246 m_option_copy(opt, valptr, arg);
247 return M_PROPERTY_OK;
248 case M_PROPERTY_STEP_UP:
249 if (opt->type == &m_option_type_choice) {
250 int v = *(int *) valptr;
251 int best = v;
252 struct m_opt_choice_alternatives *alt;
253 for (alt = opt->priv; alt->name; alt++)
254 if ((unsigned) alt->value - v - 1 < (unsigned) best - v - 1)
255 best = alt->value;
256 *(int *) valptr = best;
257 return M_PROPERTY_OK;
259 break;
261 return M_PROPERTY_NOT_IMPLEMENTED;
264 /// OSD level (RW)
265 static int mp_property_osdlevel(m_option_t *prop, int action, void *arg,
266 MPContext *mpctx)
268 return m_property_choice(prop, action, arg, &mpctx->opts.osd_level);
271 /// Loop (RW)
272 static int mp_property_loop(m_option_t *prop, int action, void *arg,
273 MPContext *mpctx)
275 struct MPOpts *opts = &mpctx->opts;
276 switch (action) {
277 case M_PROPERTY_PRINT:
278 if (!arg) return M_PROPERTY_ERROR;
279 if (opts->loop_times < 0)
280 *(char**)arg = strdup("off");
281 else if (opts->loop_times == 0)
282 *(char**)arg = strdup("inf");
283 else
284 break;
285 return M_PROPERTY_OK;
287 return m_property_int_range(prop, action, arg, &opts->loop_times);
290 /// Playback speed (RW)
291 static int mp_property_playback_speed(m_option_t *prop, int action,
292 void *arg, MPContext *mpctx)
294 struct MPOpts *opts = &mpctx->opts;
295 switch (action) {
296 case M_PROPERTY_SET:
297 if (!arg)
298 return M_PROPERTY_ERROR;
299 M_PROPERTY_CLAMP(prop, *(float *) arg);
300 opts->playback_speed = *(float *) arg;
301 reinit_audio_chain(mpctx);
302 return M_PROPERTY_OK;
303 case M_PROPERTY_STEP_UP:
304 case M_PROPERTY_STEP_DOWN:
305 opts->playback_speed += (arg ? *(float *) arg : 0.1) *
306 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
307 M_PROPERTY_CLAMP(prop, opts->playback_speed);
308 reinit_audio_chain(mpctx);
309 return M_PROPERTY_OK;
311 return m_property_float_range(prop, action, arg, &opts->playback_speed);
314 /// filename with path (RO)
315 static int mp_property_path(m_option_t *prop, int action, void *arg,
316 MPContext *mpctx)
318 return m_property_string_ro(prop, action, arg, mpctx->filename);
321 /// filename without path (RO)
322 static int mp_property_filename(m_option_t *prop, int action, void *arg,
323 MPContext *mpctx)
325 char *f;
326 if (!mpctx->filename)
327 return M_PROPERTY_UNAVAILABLE;
328 f = (char *)mp_basename(mpctx->filename);
329 if (!*f)
330 f = mpctx->filename;
331 return m_property_string_ro(prop, action, arg, f);
334 /// Demuxer name (RO)
335 static int mp_property_demuxer(m_option_t *prop, int action, void *arg,
336 MPContext *mpctx)
338 if (!mpctx->demuxer)
339 return M_PROPERTY_UNAVAILABLE;
340 return m_property_string_ro(prop, action, arg,
341 (char *) mpctx->demuxer->desc->name);
344 /// Position in the stream (RW)
345 static int mp_property_stream_pos(m_option_t *prop, int action, void *arg,
346 MPContext *mpctx)
348 if (!mpctx->demuxer || !mpctx->demuxer->stream)
349 return M_PROPERTY_UNAVAILABLE;
350 if (!arg)
351 return M_PROPERTY_ERROR;
352 switch (action) {
353 case M_PROPERTY_GET:
354 *(off_t *) arg = stream_tell(mpctx->demuxer->stream);
355 return M_PROPERTY_OK;
356 case M_PROPERTY_SET:
357 M_PROPERTY_CLAMP(prop, *(off_t *) arg);
358 stream_seek(mpctx->demuxer->stream, *(off_t *) arg);
359 return M_PROPERTY_OK;
361 return M_PROPERTY_NOT_IMPLEMENTED;
364 /// Stream start offset (RO)
365 static int mp_property_stream_start(m_option_t *prop, int action,
366 void *arg, MPContext *mpctx)
368 if (!mpctx->demuxer || !mpctx->demuxer->stream)
369 return M_PROPERTY_UNAVAILABLE;
370 switch (action) {
371 case M_PROPERTY_GET:
372 *(off_t *) arg = mpctx->demuxer->stream->start_pos;
373 return M_PROPERTY_OK;
375 return M_PROPERTY_NOT_IMPLEMENTED;
378 /// Stream end offset (RO)
379 static int mp_property_stream_end(m_option_t *prop, int action, void *arg,
380 MPContext *mpctx)
382 if (!mpctx->demuxer || !mpctx->demuxer->stream)
383 return M_PROPERTY_UNAVAILABLE;
384 switch (action) {
385 case M_PROPERTY_GET:
386 *(off_t *) arg = mpctx->demuxer->stream->end_pos;
387 return M_PROPERTY_OK;
389 return M_PROPERTY_NOT_IMPLEMENTED;
392 /// Stream length (RO)
393 static int mp_property_stream_length(m_option_t *prop, int action,
394 void *arg, MPContext *mpctx)
396 if (!mpctx->demuxer || !mpctx->demuxer->stream)
397 return M_PROPERTY_UNAVAILABLE;
398 switch (action) {
399 case M_PROPERTY_GET:
400 *(off_t *) arg =
401 mpctx->demuxer->stream->end_pos - mpctx->demuxer->stream->start_pos;
402 return M_PROPERTY_OK;
404 return M_PROPERTY_NOT_IMPLEMENTED;
407 /// Current stream position in seconds (RO)
408 static int mp_property_stream_time_pos(m_option_t *prop, int action,
409 void *arg, MPContext *mpctx)
411 if (!mpctx->demuxer || mpctx->demuxer->stream_pts == MP_NOPTS_VALUE)
412 return M_PROPERTY_UNAVAILABLE;
414 return m_property_time_ro(prop, action, arg, mpctx->demuxer->stream_pts);
418 /// Media length in seconds (RO)
419 static int mp_property_length(m_option_t *prop, int action, void *arg,
420 MPContext *mpctx)
422 double len;
424 if (!mpctx->demuxer ||
425 !(int) (len = get_time_length(mpctx)))
426 return M_PROPERTY_UNAVAILABLE;
428 return m_property_time_ro(prop, action, arg, len);
431 /// Current position in percent (RW)
432 static int mp_property_percent_pos(m_option_t *prop, int action,
433 void *arg, MPContext *mpctx) {
434 int pos;
436 if (!mpctx->demuxer)
437 return M_PROPERTY_UNAVAILABLE;
439 switch(action) {
440 case M_PROPERTY_SET:
441 if(!arg) return M_PROPERTY_ERROR;
442 M_PROPERTY_CLAMP(prop, *(int*)arg);
443 pos = *(int*)arg;
444 break;
445 case M_PROPERTY_STEP_UP:
446 case M_PROPERTY_STEP_DOWN:
447 pos = get_percent_pos(mpctx);
448 pos += (arg ? *(int*)arg : 10) *
449 (action == M_PROPERTY_STEP_UP ? 1 : -1);
450 M_PROPERTY_CLAMP(prop, pos);
451 break;
452 default:
453 return m_property_int_ro(prop, action, arg, get_percent_pos(mpctx));
456 queue_seek(mpctx, MPSEEK_FACTOR, pos / 100.0, 0);
457 return M_PROPERTY_OK;
460 /// Current position in seconds (RW)
461 static int mp_property_time_pos(m_option_t *prop, int action,
462 void *arg, MPContext *mpctx) {
463 if (!(mpctx->sh_video || mpctx->sh_audio))
464 return M_PROPERTY_UNAVAILABLE;
466 switch(action) {
467 case M_PROPERTY_SET:
468 if(!arg) return M_PROPERTY_ERROR;
469 M_PROPERTY_CLAMP(prop, *(double*)arg);
470 queue_seek(mpctx, MPSEEK_ABSOLUTE, *(double*)arg, 0);
471 return M_PROPERTY_OK;
472 case M_PROPERTY_STEP_UP:
473 case M_PROPERTY_STEP_DOWN:
474 queue_seek(mpctx, MPSEEK_RELATIVE, (arg ? *(double*)arg : 10.0) *
475 (action == M_PROPERTY_STEP_UP ? 1.0 : -1.0), 0);
476 return M_PROPERTY_OK;
478 return m_property_time_ro(prop, action, arg, get_current_time(mpctx));
481 /// Current chapter (RW)
482 static int mp_property_chapter(m_option_t *prop, int action, void *arg,
483 MPContext *mpctx)
485 struct MPOpts *opts = &mpctx->opts;
486 int chapter = -1;
487 int step_all;
488 char *chapter_name = NULL;
490 if (mpctx->demuxer)
491 chapter = get_current_chapter(mpctx);
492 if (chapter < -1)
493 return M_PROPERTY_UNAVAILABLE;
495 switch (action) {
496 case M_PROPERTY_GET:
497 if (!arg)
498 return M_PROPERTY_ERROR;
499 *(int *) arg = chapter;
500 return M_PROPERTY_OK;
501 case M_PROPERTY_PRINT: {
502 if (!arg)
503 return M_PROPERTY_ERROR;
504 chapter_name = chapter_display_name(mpctx, chapter);
505 if (!chapter_name)
506 return M_PROPERTY_UNAVAILABLE;
507 *(char **) arg = chapter_name;
508 return M_PROPERTY_OK;
510 case M_PROPERTY_SET:
511 if (!arg)
512 return M_PROPERTY_ERROR;
513 M_PROPERTY_CLAMP(prop, *(int*)arg);
514 step_all = *(int *)arg - chapter;
515 chapter += step_all;
516 break;
517 case M_PROPERTY_STEP_UP:
518 case M_PROPERTY_STEP_DOWN: {
519 step_all = (arg && *(int*)arg != 0 ? *(int*)arg : 1)
520 * (action == M_PROPERTY_STEP_UP ? 1 : -1);
521 chapter += step_all;
522 if (chapter < 0)
523 chapter = 0;
524 break;
526 default:
527 return M_PROPERTY_NOT_IMPLEMENTED;
530 double next_pts = 0;
531 queue_seek(mpctx, MPSEEK_NONE, 0, 0);
532 chapter = seek_chapter(mpctx, chapter, &next_pts, &chapter_name);
533 if (chapter >= 0) {
534 if (next_pts > -1.0)
535 queue_seek(mpctx, MPSEEK_ABSOLUTE, next_pts, 0);
536 if (chapter_name)
537 set_osd_tmsg(OSD_MSG_TEXT, 1, opts->osd_duration,
538 "Chapter: (%d) %s", chapter + 1, chapter_name);
539 } else if (step_all > 0)
540 queue_seek(mpctx, MPSEEK_RELATIVE, 1000000000, 0);
541 else
542 set_osd_tmsg(OSD_MSG_TEXT, 1, opts->osd_duration,
543 "Chapter: (%d) %s", 0, mp_gtext("unknown"));
544 talloc_free(chapter_name);
545 return M_PROPERTY_OK;
548 /// Number of chapters in file
549 static int mp_property_chapters(m_option_t *prop, int action, void *arg,
550 MPContext *mpctx)
552 if (!mpctx->demuxer)
553 return M_PROPERTY_UNAVAILABLE;
554 if (mpctx->demuxer->num_chapters == 0)
555 stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_NUM_CHAPTERS, &mpctx->demuxer->num_chapters);
556 return m_property_int_ro(prop, action, arg, mpctx->demuxer->num_chapters);
559 /// Current dvd angle (RW)
560 static int mp_property_angle(m_option_t *prop, int action, void *arg,
561 MPContext *mpctx)
563 struct MPOpts *opts = &mpctx->opts;
564 int angle = -1;
565 int angles;
566 char *angle_name = NULL;
568 if (mpctx->demuxer)
569 angle = demuxer_get_current_angle(mpctx->demuxer);
570 if (angle < 0)
571 return M_PROPERTY_UNAVAILABLE;
572 angles = demuxer_angles_count(mpctx->demuxer);
573 if (angles <= 1)
574 return M_PROPERTY_UNAVAILABLE;
576 switch (action) {
577 case M_PROPERTY_GET:
578 if (!arg)
579 return M_PROPERTY_ERROR;
580 *(int *) arg = angle;
581 return M_PROPERTY_OK;
582 case M_PROPERTY_PRINT: {
583 if (!arg)
584 return M_PROPERTY_ERROR;
585 angle_name = calloc(1, 64);
586 if (!angle_name)
587 return M_PROPERTY_UNAVAILABLE;
588 snprintf(angle_name, 64, "%d/%d", angle, angles);
589 *(char **) arg = angle_name;
590 return M_PROPERTY_OK;
592 case M_PROPERTY_SET:
593 if (!arg)
594 return M_PROPERTY_ERROR;
595 angle = *(int *)arg;
596 M_PROPERTY_CLAMP(prop, angle);
597 break;
598 case M_PROPERTY_STEP_UP:
599 case M_PROPERTY_STEP_DOWN: {
600 int step = 0;
601 if(arg)
602 step = *(int*)arg;
603 if(!step)
604 step = 1;
605 step *= (action == M_PROPERTY_STEP_UP ? 1 : -1);
606 angle += step;
607 if (angle < 1) //cycle
608 angle = angles;
609 else if (angle > angles)
610 angle = 1;
611 break;
613 default:
614 return M_PROPERTY_NOT_IMPLEMENTED;
616 angle = demuxer_set_angle(mpctx->demuxer, angle);
617 if (angle >= 0) {
618 struct sh_video *sh_video = mpctx->demuxer->video->sh;
619 if (sh_video)
620 resync_video_stream(sh_video);
622 struct sh_audio *sh_audio = mpctx->demuxer->audio->sh;
623 if (sh_audio)
624 resync_audio_stream(sh_audio);
627 set_osd_tmsg(OSD_MSG_TEXT, 1, opts->osd_duration,
628 "Angle: %d/%d", angle, angles);
629 free(angle_name);
630 return M_PROPERTY_OK;
633 /// Demuxer meta data
634 static int mp_property_metadata(m_option_t *prop, int action, void *arg,
635 MPContext *mpctx) {
636 m_property_action_t* ka;
637 char* meta;
638 static const m_option_t key_type =
639 { "metadata", NULL, CONF_TYPE_STRING, 0, 0, 0, NULL };
640 if (!mpctx->demuxer)
641 return M_PROPERTY_UNAVAILABLE;
643 switch(action) {
644 case M_PROPERTY_GET:
645 if(!arg) return M_PROPERTY_ERROR;
646 *(char***)arg = mpctx->demuxer->info;
647 return M_PROPERTY_OK;
648 case M_PROPERTY_KEY_ACTION:
649 if(!arg) return M_PROPERTY_ERROR;
650 ka = arg;
651 if(!(meta = demux_info_get(mpctx->demuxer,ka->key)))
652 return M_PROPERTY_UNKNOWN;
653 switch(ka->action) {
654 case M_PROPERTY_GET:
655 if(!ka->arg) return M_PROPERTY_ERROR;
656 *(char**)ka->arg = meta;
657 return M_PROPERTY_OK;
658 case M_PROPERTY_GET_TYPE:
659 if(!ka->arg) return M_PROPERTY_ERROR;
660 *(const m_option_t**)ka->arg = &key_type;
661 return M_PROPERTY_OK;
664 return M_PROPERTY_NOT_IMPLEMENTED;
667 static int mp_property_pause(m_option_t *prop, int action, void *arg,
668 void *ctx)
670 MPContext *mpctx = ctx;
672 switch (action) {
673 case M_PROPERTY_SET:
674 if (!arg)
675 return M_PROPERTY_ERROR;
676 if (mpctx->paused == (bool)*(int *) arg)
677 return M_PROPERTY_OK;
678 case M_PROPERTY_STEP_UP:
679 case M_PROPERTY_STEP_DOWN:
680 if (mpctx->paused) {
681 unpause_player(mpctx);
682 mpctx->osd_function = OSD_PLAY;
684 else {
685 pause_player(mpctx);
686 mpctx->osd_function = OSD_PAUSE;
688 return M_PROPERTY_OK;
689 default:
690 return m_property_flag(prop, action, arg, &mpctx->paused);
695 ///@}
697 /// \defgroup AudioProperties Audio properties
698 /// \ingroup Properties
699 ///@{
701 /// Volume (RW)
702 static int mp_property_volume(m_option_t *prop, int action, void *arg,
703 MPContext *mpctx)
706 if (!mpctx->sh_audio)
707 return M_PROPERTY_UNAVAILABLE;
709 switch (action) {
710 case M_PROPERTY_GET:
711 if (!arg)
712 return M_PROPERTY_ERROR;
713 mixer_getbothvolume(&mpctx->mixer, arg);
714 return M_PROPERTY_OK;
715 case M_PROPERTY_PRINT:{
716 float vol;
717 if (!arg)
718 return M_PROPERTY_ERROR;
719 mixer_getbothvolume(&mpctx->mixer, &vol);
720 return m_property_float_range(prop, action, arg, &vol);
722 case M_PROPERTY_STEP_UP:
723 case M_PROPERTY_STEP_DOWN:
724 case M_PROPERTY_SET:
725 break;
726 default:
727 return M_PROPERTY_NOT_IMPLEMENTED;
730 if (mpctx->edl_muted)
731 return M_PROPERTY_DISABLED;
732 mpctx->user_muted = 0;
734 switch (action) {
735 case M_PROPERTY_SET:
736 if (!arg)
737 return M_PROPERTY_ERROR;
738 M_PROPERTY_CLAMP(prop, *(float *) arg);
739 mixer_setvolume(&mpctx->mixer, *(float *) arg, *(float *) arg);
740 return M_PROPERTY_OK;
741 case M_PROPERTY_STEP_UP:
742 if (arg && *(float *) arg <= 0)
743 mixer_decvolume(&mpctx->mixer);
744 else
745 mixer_incvolume(&mpctx->mixer);
746 return M_PROPERTY_OK;
747 case M_PROPERTY_STEP_DOWN:
748 if (arg && *(float *) arg <= 0)
749 mixer_incvolume(&mpctx->mixer);
750 else
751 mixer_decvolume(&mpctx->mixer);
752 return M_PROPERTY_OK;
754 return M_PROPERTY_NOT_IMPLEMENTED;
757 /// Mute (RW)
758 static int mp_property_mute(m_option_t *prop, int action, void *arg,
759 MPContext *mpctx)
762 if (!mpctx->sh_audio)
763 return M_PROPERTY_UNAVAILABLE;
765 switch (action) {
766 case M_PROPERTY_SET:
767 if (mpctx->edl_muted)
768 return M_PROPERTY_DISABLED;
769 if (!arg)
770 return M_PROPERTY_ERROR;
771 if ((!!*(int *) arg) != mpctx->mixer.muted)
772 mixer_mute(&mpctx->mixer);
773 mpctx->user_muted = mpctx->mixer.muted;
774 return M_PROPERTY_OK;
775 case M_PROPERTY_STEP_UP:
776 case M_PROPERTY_STEP_DOWN:
777 if (mpctx->edl_muted)
778 return M_PROPERTY_DISABLED;
779 mixer_mute(&mpctx->mixer);
780 mpctx->user_muted = mpctx->mixer.muted;
781 return M_PROPERTY_OK;
782 case M_PROPERTY_PRINT:
783 if (!arg)
784 return M_PROPERTY_ERROR;
785 if (mpctx->edl_muted) {
786 *(char **) arg = strdup(mp_gtext("enabled (EDL)"));
787 return M_PROPERTY_OK;
789 default:
790 return m_property_flag(prop, action, arg, &mpctx->mixer.muted);
795 /// Audio delay (RW)
796 static int mp_property_audio_delay(m_option_t *prop, int action,
797 void *arg, MPContext *mpctx)
799 if (!(mpctx->sh_audio && mpctx->sh_video))
800 return M_PROPERTY_UNAVAILABLE;
801 switch (action) {
802 case M_PROPERTY_SET:
803 case M_PROPERTY_STEP_UP:
804 case M_PROPERTY_STEP_DOWN: {
805 int ret;
806 float delay = audio_delay;
807 ret = m_property_delay(prop, action, arg, &audio_delay);
808 if (ret != M_PROPERTY_OK)
809 return ret;
810 if (mpctx->sh_audio)
811 mpctx->delay -= audio_delay - delay;
813 return M_PROPERTY_OK;
814 default:
815 return m_property_delay(prop, action, arg, &audio_delay);
819 /// Audio codec tag (RO)
820 static int mp_property_audio_format(m_option_t *prop, int action,
821 void *arg, MPContext *mpctx)
823 if (!mpctx->sh_audio)
824 return M_PROPERTY_UNAVAILABLE;
825 return m_property_int_ro(prop, action, arg, mpctx->sh_audio->format);
828 /// Audio codec name (RO)
829 static int mp_property_audio_codec(m_option_t *prop, int action,
830 void *arg, MPContext *mpctx)
832 if (!mpctx->sh_audio || !mpctx->sh_audio->codec)
833 return M_PROPERTY_UNAVAILABLE;
834 return m_property_string_ro(prop, action, arg, mpctx->sh_audio->codec->name);
837 /// Audio bitrate (RO)
838 static int mp_property_audio_bitrate(m_option_t *prop, int action,
839 void *arg, MPContext *mpctx)
841 if (!mpctx->sh_audio)
842 return M_PROPERTY_UNAVAILABLE;
843 return m_property_bitrate(prop, action, arg, mpctx->sh_audio->i_bps);
846 /// Samplerate (RO)
847 static int mp_property_samplerate(m_option_t *prop, int action, void *arg,
848 MPContext *mpctx)
850 if (!mpctx->sh_audio)
851 return M_PROPERTY_UNAVAILABLE;
852 switch(action) {
853 case M_PROPERTY_PRINT:
854 if(!arg) return M_PROPERTY_ERROR;
855 *(char**)arg = malloc(16);
856 sprintf(*(char**)arg,"%d kHz",mpctx->sh_audio->samplerate/1000);
857 return M_PROPERTY_OK;
859 return m_property_int_ro(prop, action, arg, mpctx->sh_audio->samplerate);
862 /// Number of channels (RO)
863 static int mp_property_channels(m_option_t *prop, int action, void *arg,
864 MPContext *mpctx)
866 if (!mpctx->sh_audio)
867 return M_PROPERTY_UNAVAILABLE;
868 switch (action) {
869 case M_PROPERTY_PRINT:
870 if (!arg)
871 return M_PROPERTY_ERROR;
872 switch (mpctx->sh_audio->channels) {
873 case 1:
874 *(char **) arg = strdup("mono");
875 break;
876 case 2:
877 *(char **) arg = strdup("stereo");
878 break;
879 default:
880 *(char **) arg = malloc(32);
881 sprintf(*(char **) arg, "%d channels", mpctx->sh_audio->channels);
883 return M_PROPERTY_OK;
885 return m_property_int_ro(prop, action, arg, mpctx->sh_audio->channels);
888 /// Balance (RW)
889 static int mp_property_balance(m_option_t *prop, int action, void *arg,
890 MPContext *mpctx)
892 float bal;
894 if (!mpctx->sh_audio || mpctx->sh_audio->channels < 2)
895 return M_PROPERTY_UNAVAILABLE;
897 switch (action) {
898 case M_PROPERTY_GET:
899 if (!arg)
900 return M_PROPERTY_ERROR;
901 mixer_getbalance(&mpctx->mixer, arg);
902 return M_PROPERTY_OK;
903 case M_PROPERTY_PRINT: {
904 char** str = arg;
905 if (!arg)
906 return M_PROPERTY_ERROR;
907 mixer_getbalance(&mpctx->mixer, &bal);
908 if (bal == 0.f)
909 *str = strdup("center");
910 else if (bal == -1.f)
911 *str = strdup("left only");
912 else if (bal == 1.f)
913 *str = strdup("right only");
914 else {
915 unsigned right = (bal + 1.f) / 2.f * 100.f;
916 *str = malloc(sizeof("left xxx%, right xxx%"));
917 sprintf(*str, "left %d%%, right %d%%", 100 - right, right);
919 return M_PROPERTY_OK;
921 case M_PROPERTY_STEP_UP:
922 case M_PROPERTY_STEP_DOWN:
923 mixer_getbalance(&mpctx->mixer, &bal);
924 bal += (arg ? *(float*)arg : .1f) *
925 (action == M_PROPERTY_STEP_UP ? 1.f : -1.f);
926 M_PROPERTY_CLAMP(prop, bal);
927 mixer_setbalance(&mpctx->mixer, bal);
928 return M_PROPERTY_OK;
929 case M_PROPERTY_SET:
930 if (!arg)
931 return M_PROPERTY_ERROR;
932 M_PROPERTY_CLAMP(prop, *(float*)arg);
933 mixer_setbalance(&mpctx->mixer, *(float*)arg);
934 return M_PROPERTY_OK;
936 return M_PROPERTY_NOT_IMPLEMENTED;
939 /// Selected audio id (RW)
940 static int mp_property_audio(m_option_t *prop, int action, void *arg,
941 MPContext *mpctx)
943 int current_id, tmp;
944 if (!mpctx->demuxer || !mpctx->d_audio)
945 return M_PROPERTY_UNAVAILABLE;
946 current_id = mpctx->sh_audio ? mpctx->sh_audio->aid : -2;
948 switch (action) {
949 case M_PROPERTY_GET:
950 if (!arg)
951 return M_PROPERTY_ERROR;
952 *(int *) arg = current_id;
953 return M_PROPERTY_OK;
954 case M_PROPERTY_PRINT:
955 if (!arg)
956 return M_PROPERTY_ERROR;
958 if (current_id < 0)
959 *(char **) arg = strdup(mp_gtext("disabled"));
960 else {
961 char lang[40];
962 strncpy(lang, mp_gtext("unknown"), sizeof(lang));
963 sh_audio_t* sh = mpctx->sh_audio;
964 if (sh && sh->lang)
965 av_strlcpy(lang, sh->lang, 40);
966 #ifdef CONFIG_DVDREAD
967 else if (mpctx->stream->type == STREAMTYPE_DVD) {
968 int code = dvd_lang_from_aid(mpctx->stream, current_id);
969 if (code) {
970 lang[0] = code >> 8;
971 lang[1] = code;
972 lang[2] = 0;
975 #endif
977 #ifdef CONFIG_DVDNAV
978 else if (mpctx->stream->type == STREAMTYPE_DVDNAV)
979 mp_dvdnav_lang_from_aid(mpctx->stream, current_id, lang);
980 #endif
981 *(char **) arg = malloc(64);
982 snprintf(*(char **) arg, 64, "(%d) %s", current_id, lang);
984 return M_PROPERTY_OK;
986 case M_PROPERTY_STEP_UP:
987 case M_PROPERTY_SET:
988 if (action == M_PROPERTY_SET && arg)
989 tmp = *((int *) arg);
990 else
991 tmp = -1;
992 int new_id = demuxer_switch_audio(mpctx->d_audio->demuxer, tmp);
993 if (new_id != current_id)
994 uninit_player(mpctx, INITIALIZED_AO | INITIALIZED_ACODEC);
995 if (new_id != current_id && new_id >= 0) {
996 sh_audio_t *sh2;
997 sh2 = mpctx->d_audio->demuxer->a_streams[mpctx->d_audio->id];
998 sh2->ds = mpctx->d_audio;
999 mpctx->sh_audio = sh2;
1000 reinit_audio_chain(mpctx);
1002 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_TRACK=%d\n", new_id);
1003 return M_PROPERTY_OK;
1004 default:
1005 return M_PROPERTY_NOT_IMPLEMENTED;
1010 /// Selected video id (RW)
1011 static int mp_property_video(m_option_t *prop, int action, void *arg,
1012 MPContext *mpctx)
1014 struct MPOpts *opts = &mpctx->opts;
1015 int current_id, tmp;
1016 if (!mpctx->demuxer || !mpctx->d_video)
1017 return M_PROPERTY_UNAVAILABLE;
1018 current_id = mpctx->sh_video ? mpctx->sh_video->vid : -2;
1020 switch (action) {
1021 case M_PROPERTY_GET:
1022 if (!arg)
1023 return M_PROPERTY_ERROR;
1024 *(int *) arg = current_id;
1025 return M_PROPERTY_OK;
1026 case M_PROPERTY_PRINT:
1027 if (!arg)
1028 return M_PROPERTY_ERROR;
1030 if (current_id < 0)
1031 *(char **) arg = strdup(mp_gtext("disabled"));
1032 else {
1033 char lang[40];
1034 strncpy(lang, mp_gtext("unknown"), sizeof(lang));
1035 *(char **) arg = malloc(64);
1036 snprintf(*(char **) arg, 64, "(%d) %s", current_id, lang);
1038 return M_PROPERTY_OK;
1040 case M_PROPERTY_STEP_UP:
1041 case M_PROPERTY_SET:
1042 if (action == M_PROPERTY_SET && arg)
1043 tmp = *((int *) arg);
1044 else
1045 tmp = -1;
1046 int new_id = demuxer_switch_video(mpctx->d_video->demuxer, tmp);
1047 if (new_id != current_id)
1048 uninit_player(mpctx, INITIALIZED_VCODEC |
1049 (opts->fixed_vo && new_id >= 0 ? 0 : INITIALIZED_VO));
1050 if (new_id != current_id && new_id >= 0) {
1051 sh_video_t *sh2;
1052 sh2 = mpctx->d_video->demuxer->v_streams[mpctx->d_video->id];
1053 sh2->ds = mpctx->d_video;
1054 mpctx->sh_video = sh2;
1055 reinit_video_chain(mpctx);
1057 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_TRACK=%d\n", new_id);
1058 return M_PROPERTY_OK;
1060 default:
1061 return M_PROPERTY_NOT_IMPLEMENTED;
1065 static int mp_property_program(m_option_t *prop, int action, void *arg,
1066 MPContext *mpctx)
1068 demux_program_t prog;
1070 switch (action) {
1071 case M_PROPERTY_STEP_UP:
1072 case M_PROPERTY_SET:
1073 if (action == M_PROPERTY_SET && arg)
1074 prog.progid = *((int *) arg);
1075 else
1076 prog.progid = -1;
1077 if (demux_control
1078 (mpctx->demuxer, DEMUXER_CTRL_IDENTIFY_PROGRAM,
1079 &prog) == DEMUXER_CTRL_NOTIMPL)
1080 return M_PROPERTY_ERROR;
1082 if (prog.aid < 0 && prog.vid < 0) {
1083 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Selected program contains no audio or video streams!\n");
1084 return M_PROPERTY_ERROR;
1086 mp_property_do("switch_audio", M_PROPERTY_SET, &prog.aid, mpctx);
1087 mp_property_do("switch_video", M_PROPERTY_SET, &prog.vid, mpctx);
1088 return M_PROPERTY_OK;
1090 default:
1091 return M_PROPERTY_NOT_IMPLEMENTED;
1095 ///@}
1097 /// \defgroup VideoProperties Video properties
1098 /// \ingroup Properties
1099 ///@{
1101 /// Fullscreen state (RW)
1102 static int mp_property_fullscreen(m_option_t *prop, int action, void *arg,
1103 MPContext *mpctx)
1106 if (!mpctx->video_out)
1107 return M_PROPERTY_UNAVAILABLE;
1109 switch (action) {
1110 case M_PROPERTY_SET:
1111 if (!arg)
1112 return M_PROPERTY_ERROR;
1113 M_PROPERTY_CLAMP(prop, *(int *) arg);
1114 if (vo_fs == !!*(int *) arg)
1115 return M_PROPERTY_OK;
1116 case M_PROPERTY_STEP_UP:
1117 case M_PROPERTY_STEP_DOWN:
1118 if (mpctx->video_out->config_ok)
1119 vo_control(mpctx->video_out, VOCTRL_FULLSCREEN, 0);
1120 mpctx->opts.fullscreen = vo_fs;
1121 return M_PROPERTY_OK;
1122 default:
1123 return m_property_flag(prop, action, arg, &vo_fs);
1127 static int mp_property_deinterlace(m_option_t *prop, int action,
1128 void *arg, MPContext *mpctx)
1130 int deinterlace;
1131 vf_instance_t *vf;
1132 if (!mpctx->sh_video || !mpctx->sh_video->vfilter)
1133 return M_PROPERTY_UNAVAILABLE;
1134 vf = mpctx->sh_video->vfilter;
1135 switch (action) {
1136 case M_PROPERTY_GET:
1137 if (!arg)
1138 return M_PROPERTY_ERROR;
1139 vf->control(vf, VFCTRL_GET_DEINTERLACE, arg);
1140 return M_PROPERTY_OK;
1141 case M_PROPERTY_SET:
1142 if (!arg)
1143 return M_PROPERTY_ERROR;
1144 M_PROPERTY_CLAMP(prop, *(int *) arg);
1145 vf->control(vf, VFCTRL_SET_DEINTERLACE, arg);
1146 return M_PROPERTY_OK;
1147 case M_PROPERTY_STEP_UP:
1148 case M_PROPERTY_STEP_DOWN:
1149 vf->control(vf, VFCTRL_GET_DEINTERLACE, &deinterlace);
1150 deinterlace = !deinterlace;
1151 vf->control(vf, VFCTRL_SET_DEINTERLACE, &deinterlace);
1152 return M_PROPERTY_OK;
1154 int value = 0;
1155 vf->control(vf, VFCTRL_GET_DEINTERLACE, &value);
1156 return m_property_flag_ro(prop, action, arg, value);
1159 static int mp_property_yuv_colorspace(m_option_t *prop, int action,
1160 void *arg, MPContext *mpctx)
1162 if (!mpctx->sh_video || !mpctx->sh_video->vfilter)
1163 return M_PROPERTY_UNAVAILABLE;
1165 struct vf_instance *vf = mpctx->sh_video->vfilter;
1166 int colorspace;
1167 switch (action) {
1168 case M_PROPERTY_GET:
1169 if (!arg)
1170 return M_PROPERTY_ERROR;
1171 if (vf->control(vf, VFCTRL_GET_YUV_COLORSPACE, arg) != true)
1172 return M_PROPERTY_UNAVAILABLE;
1173 return M_PROPERTY_OK;
1174 case M_PROPERTY_PRINT:
1175 if (!arg)
1176 return M_PROPERTY_ERROR;
1177 if (vf->control(vf, VFCTRL_GET_YUV_COLORSPACE, &colorspace) != true)
1178 return M_PROPERTY_UNAVAILABLE;
1179 char * const names[] = {"BT.601 (SD)", "BT.709 (HD)", "SMPTE-240M"};
1180 if (colorspace < 0 || colorspace >= sizeof(names) / sizeof(names[0]))
1181 *(char **)arg = strdup("Unknown");
1182 else
1183 *(char**)arg = strdup(names[colorspace]);
1184 return M_PROPERTY_OK;
1185 case M_PROPERTY_SET:
1186 if (!arg)
1187 return M_PROPERTY_ERROR;
1188 M_PROPERTY_CLAMP(prop, *(int *) arg);
1189 vf->control(vf, VFCTRL_SET_YUV_COLORSPACE, arg);
1190 return M_PROPERTY_OK;
1191 case M_PROPERTY_STEP_UP:;
1192 if (vf->control(vf, VFCTRL_GET_YUV_COLORSPACE, &colorspace) != true)
1193 return M_PROPERTY_UNAVAILABLE;
1194 colorspace += 1;
1195 vf->control(vf, VFCTRL_SET_YUV_COLORSPACE, &colorspace);
1196 return M_PROPERTY_OK;
1198 return M_PROPERTY_NOT_IMPLEMENTED;
1201 static int mp_property_capture(m_option_t *prop, int action,
1202 void *arg, MPContext *mpctx)
1204 struct MPOpts *opts = &mpctx->opts;
1206 if (!mpctx->stream)
1207 return M_PROPERTY_UNAVAILABLE;
1209 if (!opts->capture_dump) {
1210 mp_tmsg(MSGT_GLOBAL, MSGL_ERR,
1211 "Capturing not enabled (forgot -capture parameter?)\n");
1212 return M_PROPERTY_ERROR;
1215 int capturing = !!mpctx->stream->capture_file;
1217 int ret = m_property_flag(prop, action, arg, &capturing);
1218 if (ret == M_PROPERTY_OK && capturing != !!mpctx->stream->capture_file) {
1219 if (capturing) {
1220 mpctx->stream->capture_file = fopen(opts->stream_dump_name, "wb");
1221 if (!mpctx->stream->capture_file) {
1222 mp_tmsg(MSGT_GLOBAL, MSGL_ERR,
1223 "Error opening capture file: %s\n", strerror(errno));
1224 ret = M_PROPERTY_ERROR;
1226 } else {
1227 fclose(mpctx->stream->capture_file);
1228 mpctx->stream->capture_file = NULL;
1232 return ret;
1235 /// Panscan (RW)
1236 static int mp_property_panscan(m_option_t *prop, int action, void *arg,
1237 MPContext *mpctx)
1240 if (!mpctx->video_out
1241 || vo_control(mpctx->video_out, VOCTRL_GET_PANSCAN, NULL) != VO_TRUE)
1242 return M_PROPERTY_UNAVAILABLE;
1244 switch (action) {
1245 case M_PROPERTY_SET:
1246 if (!arg)
1247 return M_PROPERTY_ERROR;
1248 M_PROPERTY_CLAMP(prop, *(float *) arg);
1249 vo_panscan = *(float *) arg;
1250 vo_control(mpctx->video_out, VOCTRL_SET_PANSCAN, NULL);
1251 return M_PROPERTY_OK;
1252 case M_PROPERTY_STEP_UP:
1253 case M_PROPERTY_STEP_DOWN:
1254 vo_panscan += (arg ? *(float *) arg : 0.1) *
1255 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
1256 if (vo_panscan > 1)
1257 vo_panscan = 1;
1258 else if (vo_panscan < 0)
1259 vo_panscan = 0;
1260 vo_control(mpctx->video_out, VOCTRL_SET_PANSCAN, NULL);
1261 return M_PROPERTY_OK;
1262 default:
1263 return m_property_float_range(prop, action, arg, &vo_panscan);
1267 /// Helper to set vo flags.
1268 /** \ingroup PropertyImplHelper
1270 static int mp_property_vo_flag(m_option_t *prop, int action, void *arg,
1271 int vo_ctrl, int *vo_var, MPContext *mpctx)
1274 if (!mpctx->video_out)
1275 return M_PROPERTY_UNAVAILABLE;
1277 switch (action) {
1278 case M_PROPERTY_SET:
1279 if (!arg)
1280 return M_PROPERTY_ERROR;
1281 M_PROPERTY_CLAMP(prop, *(int *) arg);
1282 if (*vo_var == !!*(int *) arg)
1283 return M_PROPERTY_OK;
1284 case M_PROPERTY_STEP_UP:
1285 case M_PROPERTY_STEP_DOWN:
1286 if (mpctx->video_out->config_ok)
1287 vo_control(mpctx->video_out, vo_ctrl, 0);
1288 return M_PROPERTY_OK;
1289 default:
1290 return m_property_flag(prop, action, arg, vo_var);
1294 /// Window always on top (RW)
1295 static int mp_property_ontop(m_option_t *prop, int action, void *arg,
1296 MPContext *mpctx)
1298 return mp_property_vo_flag(prop, action, arg, VOCTRL_ONTOP,
1299 &mpctx->opts.vo_ontop, mpctx);
1302 /// Display in the root window (RW)
1303 static int mp_property_rootwin(m_option_t *prop, int action, void *arg,
1304 MPContext *mpctx)
1306 return mp_property_vo_flag(prop, action, arg, VOCTRL_ROOTWIN,
1307 &vo_rootwin, mpctx);
1310 /// Show window borders (RW)
1311 static int mp_property_border(m_option_t *prop, int action, void *arg,
1312 MPContext *mpctx)
1314 return mp_property_vo_flag(prop, action, arg, VOCTRL_BORDER,
1315 &vo_border, mpctx);
1318 /// Framedropping state (RW)
1319 static int mp_property_framedropping(m_option_t *prop, int action,
1320 void *arg, MPContext *mpctx)
1323 if (!mpctx->sh_video)
1324 return M_PROPERTY_UNAVAILABLE;
1326 switch (action) {
1327 case M_PROPERTY_PRINT:
1328 if (!arg)
1329 return M_PROPERTY_ERROR;
1330 *(char **) arg = strdup(frame_dropping == 1 ? mp_gtext("enabled") :
1331 (frame_dropping == 2 ? mp_gtext("hard") :
1332 mp_gtext("disabled")));
1333 return M_PROPERTY_OK;
1334 default:
1335 return m_property_choice(prop, action, arg, &frame_dropping);
1339 /// Color settings, try to use vf/vo then fall back on TV. (RW)
1340 static int mp_property_gamma(m_option_t *prop, int action, void *arg,
1341 MPContext *mpctx)
1343 int *gamma = (int *)((char *)&mpctx->opts + prop->offset);
1344 int r, val;
1346 if (!mpctx->sh_video)
1347 return M_PROPERTY_UNAVAILABLE;
1349 if (gamma[0] == 1000) {
1350 gamma[0] = 0;
1351 get_video_colors(mpctx->sh_video, prop->name, gamma);
1354 switch (action) {
1355 case M_PROPERTY_SET:
1356 if (!arg)
1357 return M_PROPERTY_ERROR;
1358 M_PROPERTY_CLAMP(prop, *(int *) arg);
1359 *gamma = *(int *) arg;
1360 r = set_video_colors(mpctx->sh_video, prop->name, *gamma);
1361 if (r <= 0)
1362 break;
1363 return r;
1364 case M_PROPERTY_GET:
1365 if (get_video_colors(mpctx->sh_video, prop->name, &val) > 0) {
1366 if (!arg)
1367 return M_PROPERTY_ERROR;
1368 *(int *)arg = val;
1369 return M_PROPERTY_OK;
1371 break;
1372 case M_PROPERTY_STEP_UP:
1373 case M_PROPERTY_STEP_DOWN:
1374 *gamma += (arg ? *(int *) arg : 1) *
1375 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
1376 M_PROPERTY_CLAMP(prop, *gamma);
1377 r = set_video_colors(mpctx->sh_video, prop->name, *gamma);
1378 if (r <= 0)
1379 break;
1380 return r;
1381 default:
1382 return M_PROPERTY_NOT_IMPLEMENTED;
1385 #ifdef CONFIG_TV
1386 if (mpctx->demuxer->type == DEMUXER_TYPE_TV) {
1387 int l = strlen(prop->name);
1388 char tv_prop[3 + l + 1];
1389 sprintf(tv_prop, "tv_%s", prop->name);
1390 return mp_property_do(tv_prop, action, arg, mpctx);
1392 #endif
1394 return M_PROPERTY_UNAVAILABLE;
1397 /// VSync (RW)
1398 static int mp_property_vsync(m_option_t *prop, int action, void *arg,
1399 MPContext *mpctx)
1401 return m_property_flag(prop, action, arg, &vo_vsync);
1404 /// Video codec tag (RO)
1405 static int mp_property_video_format(m_option_t *prop, int action,
1406 void *arg, MPContext *mpctx)
1408 char* meta;
1409 if (!mpctx->sh_video)
1410 return M_PROPERTY_UNAVAILABLE;
1411 switch(action) {
1412 case M_PROPERTY_PRINT:
1413 if (!arg)
1414 return M_PROPERTY_ERROR;
1415 switch(mpctx->sh_video->format) {
1416 case 0x10000001:
1417 meta = strdup ("mpeg1"); break;
1418 case 0x10000002:
1419 meta = strdup ("mpeg2"); break;
1420 case 0x10000004:
1421 meta = strdup ("mpeg4"); break;
1422 case 0x10000005:
1423 meta = strdup ("h264"); break;
1424 default:
1425 if(mpctx->sh_video->format >= 0x20202020) {
1426 meta = malloc(5);
1427 sprintf (meta, "%.4s", (char *) &mpctx->sh_video->format);
1428 } else {
1429 meta = malloc(20);
1430 sprintf (meta, "0x%08X", mpctx->sh_video->format);
1433 *(char**)arg = meta;
1434 return M_PROPERTY_OK;
1436 return m_property_int_ro(prop, action, arg, mpctx->sh_video->format);
1439 /// Video codec name (RO)
1440 static int mp_property_video_codec(m_option_t *prop, int action,
1441 void *arg, MPContext *mpctx)
1443 if (!mpctx->sh_video || !mpctx->sh_video->codec)
1444 return M_PROPERTY_UNAVAILABLE;
1445 return m_property_string_ro(prop, action, arg, mpctx->sh_video->codec->name);
1449 /// Video bitrate (RO)
1450 static int mp_property_video_bitrate(m_option_t *prop, int action,
1451 void *arg, MPContext *mpctx)
1453 if (!mpctx->sh_video)
1454 return M_PROPERTY_UNAVAILABLE;
1455 return m_property_bitrate(prop, action, arg, mpctx->sh_video->i_bps);
1458 /// Video display width (RO)
1459 static int mp_property_width(m_option_t *prop, int action, void *arg,
1460 MPContext *mpctx)
1462 if (!mpctx->sh_video)
1463 return M_PROPERTY_UNAVAILABLE;
1464 return m_property_int_ro(prop, action, arg, mpctx->sh_video->disp_w);
1467 /// Video display height (RO)
1468 static int mp_property_height(m_option_t *prop, int action, void *arg,
1469 MPContext *mpctx)
1471 if (!mpctx->sh_video)
1472 return M_PROPERTY_UNAVAILABLE;
1473 return m_property_int_ro(prop, action, arg, mpctx->sh_video->disp_h);
1476 /// Video fps (RO)
1477 static int mp_property_fps(m_option_t *prop, int action, void *arg,
1478 MPContext *mpctx)
1480 if (!mpctx->sh_video)
1481 return M_PROPERTY_UNAVAILABLE;
1482 return m_property_float_ro(prop, action, arg, mpctx->sh_video->fps);
1485 /// Video aspect (RO)
1486 static int mp_property_aspect(m_option_t *prop, int action, void *arg,
1487 MPContext *mpctx)
1489 if (!mpctx->sh_video)
1490 return M_PROPERTY_UNAVAILABLE;
1491 return m_property_float_ro(prop, action, arg, mpctx->sh_video->aspect);
1494 ///@}
1496 /// \defgroup SubProprties Subtitles properties
1497 /// \ingroup Properties
1498 ///@{
1500 /// Text subtitle position (RW)
1501 static int mp_property_sub_pos(m_option_t *prop, int action, void *arg,
1502 MPContext *mpctx)
1504 switch (action) {
1505 case M_PROPERTY_SET:
1506 if (!arg)
1507 return M_PROPERTY_ERROR;
1508 case M_PROPERTY_STEP_UP:
1509 case M_PROPERTY_STEP_DOWN:
1510 vo_osd_changed(OSDTYPE_SUBTITLE);
1511 default:
1512 return m_property_int_range(prop, action, arg, &sub_pos);
1516 /// Selected subtitles (RW)
1517 static int mp_property_sub(m_option_t *prop, int action, void *arg,
1518 MPContext *mpctx)
1520 struct MPOpts *opts = &mpctx->opts;
1521 demux_stream_t *const d_sub = mpctx->d_sub;
1522 int source = -1, reset_spu = 0;
1523 int source_pos = -1;
1525 update_global_sub_size(mpctx);
1526 const int global_sub_size = mpctx->global_sub_size;
1528 if (global_sub_size <= 0)
1529 return M_PROPERTY_UNAVAILABLE;
1531 switch (action) {
1532 case M_PROPERTY_GET:
1533 if (!arg)
1534 return M_PROPERTY_ERROR;
1535 *(int *) arg = mpctx->global_sub_pos;
1536 return M_PROPERTY_OK;
1537 case M_PROPERTY_PRINT:
1538 if (!arg)
1539 return M_PROPERTY_ERROR;
1540 *(char **) arg = malloc(64);
1541 (*(char **) arg)[63] = 0;
1542 char *sub_name = NULL;
1543 if (mpctx->subdata)
1544 sub_name = mpctx->subdata->filename;
1545 #ifdef CONFIG_ASS
1546 if (mpctx->osd->ass_track)
1547 sub_name = mpctx->osd->ass_track->name;
1548 #endif
1549 if (!sub_name && mpctx->subdata)
1550 sub_name = mpctx->subdata->filename;
1551 if (sub_name) {
1552 const char *tmp = mp_basename(sub_name);
1554 snprintf(*(char **) arg, 63, "(%d) %s%s",
1555 mpctx->set_of_sub_pos + 1,
1556 strlen(tmp) < 20 ? "" : "...",
1557 strlen(tmp) < 20 ? tmp : tmp + strlen(tmp) - 19);
1558 return M_PROPERTY_OK;
1560 #ifdef CONFIG_DVDNAV
1561 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
1562 if (vo_spudec && opts->sub_id >= 0) {
1563 unsigned char lang[3];
1564 if (mp_dvdnav_lang_from_sid(mpctx->stream, opts->sub_id, lang)) {
1565 snprintf(*(char **) arg, 63, "(%d) %s", opts->sub_id, lang);
1566 return M_PROPERTY_OK;
1570 #endif
1572 if ((d_sub->demuxer->type == DEMUXER_TYPE_MATROSKA
1573 || d_sub->demuxer->type == DEMUXER_TYPE_LAVF
1574 || d_sub->demuxer->type == DEMUXER_TYPE_LAVF_PREFERRED
1575 || d_sub->demuxer->type == DEMUXER_TYPE_OGG)
1576 && d_sub->sh && opts->sub_id >= 0) {
1577 const char* lang = ((sh_sub_t*)d_sub->sh)->lang;
1578 if (!lang) lang = mp_gtext("unknown");
1579 snprintf(*(char **) arg, 63, "(%d) %s", opts->sub_id, lang);
1580 return M_PROPERTY_OK;
1583 if (vo_vobsub && vobsub_id >= 0) {
1584 const char *language = mp_gtext("unknown");
1585 language = vobsub_get_id(vo_vobsub, (unsigned int) vobsub_id);
1586 snprintf(*(char **) arg, 63, "(%d) %s",
1587 vobsub_id, language ? language : mp_gtext("unknown"));
1588 return M_PROPERTY_OK;
1590 #ifdef CONFIG_DVDREAD
1591 if (vo_spudec && mpctx->stream->type == STREAMTYPE_DVD
1592 && opts->sub_id >= 0) {
1593 char lang[3];
1594 int code = dvd_lang_from_sid(mpctx->stream, opts->sub_id);
1595 lang[0] = code >> 8;
1596 lang[1] = code;
1597 lang[2] = 0;
1598 snprintf(*(char **) arg, 63, "(%d) %s", opts->sub_id, lang);
1599 return M_PROPERTY_OK;
1601 #endif
1602 if (opts->sub_id >= 0) {
1603 snprintf(*(char **) arg, 63, "(%d) %s", opts->sub_id,
1604 mp_gtext("unknown"));
1605 return M_PROPERTY_OK;
1607 snprintf(*(char **) arg, 63, mp_gtext("disabled"));
1608 return M_PROPERTY_OK;
1610 case M_PROPERTY_SET:
1611 if (!arg)
1612 return M_PROPERTY_ERROR;
1613 if (*(int *) arg < -1)
1614 *(int *) arg = -1;
1615 else if (*(int *) arg >= global_sub_size)
1616 *(int *) arg = global_sub_size - 1;
1617 mpctx->global_sub_pos = *(int *) arg;
1618 break;
1619 case M_PROPERTY_STEP_UP:
1620 mpctx->global_sub_pos += 2;
1621 mpctx->global_sub_pos =
1622 (mpctx->global_sub_pos % (global_sub_size + 1)) - 1;
1623 break;
1624 case M_PROPERTY_STEP_DOWN:
1625 mpctx->global_sub_pos += global_sub_size + 1;
1626 mpctx->global_sub_pos =
1627 (mpctx->global_sub_pos % (global_sub_size + 1)) - 1;
1628 break;
1629 default:
1630 return M_PROPERTY_NOT_IMPLEMENTED;
1633 if (mpctx->global_sub_pos >= 0) {
1634 source = sub_source(mpctx);
1635 source_pos = sub_source_pos(mpctx);
1638 mp_msg(MSGT_CPLAYER, MSGL_DBG3,
1639 "subtitles: %d subs, (v@%d s@%d d@%d), @%d, source @%d\n",
1640 global_sub_size,
1641 mpctx->sub_counts[SUB_SOURCE_VOBSUB],
1642 mpctx->sub_counts[SUB_SOURCE_SUBS],
1643 mpctx->sub_counts[SUB_SOURCE_DEMUX],
1644 mpctx->global_sub_pos, source);
1646 mpctx->set_of_sub_pos = -1;
1647 mpctx->subdata = NULL;
1649 vobsub_id = -1;
1650 opts->sub_id = -1;
1651 if (d_sub) {
1652 if (d_sub->id > -2)
1653 reset_spu = 1;
1654 d_sub->id = -2;
1656 mpctx->osd->ass_track = NULL;
1657 uninit_player(mpctx, INITIALIZED_SUB);
1659 if (source == SUB_SOURCE_VOBSUB) {
1660 vobsub_id = vobsub_get_id_by_index(vo_vobsub, source_pos);
1661 } else if (source == SUB_SOURCE_SUBS) {
1662 mpctx->set_of_sub_pos = source_pos;
1663 #ifdef CONFIG_ASS
1664 if (opts->ass_enabled
1665 && mpctx->set_of_ass_tracks[mpctx->set_of_sub_pos]) {
1666 mpctx->osd->ass_track =
1667 mpctx->set_of_ass_tracks[mpctx->set_of_sub_pos];
1668 mpctx->osd->ass_track_changed = true;
1669 mpctx->osd->vsfilter_aspect =
1670 mpctx->track_was_native_ass[mpctx->set_of_sub_pos];
1671 } else
1672 #endif
1674 mpctx->subdata = mpctx->set_of_subtitles[mpctx->set_of_sub_pos];
1675 vo_osd_changed(OSDTYPE_SUBTITLE);
1677 } else if (source == SUB_SOURCE_DEMUX) {
1678 opts->sub_id = source_pos;
1679 if (d_sub && opts->sub_id < MAX_S_STREAMS) {
1680 int i = 0;
1681 // default: assume 1:1 mapping of sid and stream id
1682 d_sub->id = opts->sub_id;
1683 d_sub->sh = mpctx->d_sub->demuxer->s_streams[d_sub->id];
1684 ds_free_packs(d_sub);
1685 for (i = 0; i < MAX_S_STREAMS; i++) {
1686 sh_sub_t *sh = mpctx->d_sub->demuxer->s_streams[i];
1687 if (sh && sh->sid == opts->sub_id) {
1688 d_sub->id = i;
1689 d_sub->sh = sh;
1690 break;
1693 if (d_sub->sh && d_sub->id >= 0) {
1694 sh_sub_t *sh = d_sub->sh;
1695 if (sh->type == 'v')
1696 init_vo_spudec(mpctx);
1697 else {
1698 sub_init(sh, mpctx->osd);
1699 mpctx->initialized_flags |= INITIALIZED_SUB;
1701 } else {
1702 d_sub->id = -2;
1703 d_sub->sh = NULL;
1707 #ifdef CONFIG_DVDREAD
1708 if (vo_spudec
1709 && (mpctx->stream->type == STREAMTYPE_DVD
1710 || mpctx->stream->type == STREAMTYPE_DVDNAV)
1711 && opts->sub_id < 0 && reset_spu) {
1712 d_sub->id = -2;
1713 d_sub->sh = NULL;
1715 #endif
1717 update_subtitles(mpctx, 0, 0, true);
1719 return M_PROPERTY_OK;
1722 /// Selected sub source (RW)
1723 static int mp_property_sub_source(m_option_t *prop, int action, void *arg,
1724 MPContext *mpctx)
1726 int source;
1727 update_global_sub_size(mpctx);
1728 if (!mpctx->sh_video || mpctx->global_sub_size <= 0)
1729 return M_PROPERTY_UNAVAILABLE;
1731 switch (action) {
1732 case M_PROPERTY_GET:
1733 if (!arg)
1734 return M_PROPERTY_ERROR;
1735 *(int *) arg = sub_source(mpctx);
1736 return M_PROPERTY_OK;
1737 case M_PROPERTY_PRINT:
1738 if (!arg)
1739 return M_PROPERTY_ERROR;
1740 *(char **) arg = malloc(64);
1741 (*(char **) arg)[63] = 0;
1742 switch (sub_source(mpctx))
1744 case SUB_SOURCE_SUBS:
1745 snprintf(*(char **) arg, 63, mp_gtext("file"));
1746 break;
1747 case SUB_SOURCE_VOBSUB:
1748 snprintf(*(char **) arg, 63, mp_gtext("vobsub"));
1749 break;
1750 case SUB_SOURCE_DEMUX:
1751 snprintf(*(char **) arg, 63, mp_gtext("embedded"));
1752 break;
1753 default:
1754 snprintf(*(char **) arg, 63, mp_gtext("disabled"));
1756 return M_PROPERTY_OK;
1757 case M_PROPERTY_SET:
1758 if (!arg)
1759 return M_PROPERTY_ERROR;
1760 M_PROPERTY_CLAMP(prop, *(int*)arg);
1761 if (*(int *) arg < 0)
1762 mpctx->global_sub_pos = -1;
1763 else if (*(int *) arg != sub_source(mpctx)) {
1764 int new_pos = sub_pos_by_source(mpctx, *(int *)arg);
1765 if (new_pos == -1)
1766 return M_PROPERTY_UNAVAILABLE;
1767 mpctx->global_sub_pos = new_pos;
1769 break;
1770 case M_PROPERTY_STEP_UP:
1771 case M_PROPERTY_STEP_DOWN: {
1772 int step_all = (arg && *(int*)arg != 0 ? *(int*)arg : 1)
1773 * (action == M_PROPERTY_STEP_UP ? 1 : -1);
1774 int step = (step_all > 0) ? 1 : -1;
1775 int cur_source = sub_source(mpctx);
1776 source = cur_source;
1777 while (step_all) {
1778 source += step;
1779 if (source >= SUB_SOURCES)
1780 source = -1;
1781 else if (source < -1)
1782 source = SUB_SOURCES - 1;
1783 if (source == cur_source || source == -1 ||
1784 mpctx->sub_counts[source])
1785 step_all -= step;
1787 if (source == cur_source)
1788 return M_PROPERTY_OK;
1789 if (source == -1)
1790 mpctx->global_sub_pos = -1;
1791 else
1792 mpctx->global_sub_pos = sub_pos_by_source(mpctx, source);
1793 break;
1795 default:
1796 return M_PROPERTY_NOT_IMPLEMENTED;
1798 --mpctx->global_sub_pos;
1799 return mp_property_sub(prop, M_PROPERTY_STEP_UP, NULL, mpctx);
1802 /// Selected subtitles from specific source (RW)
1803 static int mp_property_sub_by_type(m_option_t *prop, int action, void *arg,
1804 MPContext *mpctx)
1806 int source, is_cur_source, offset, new_pos;
1807 update_global_sub_size(mpctx);
1808 if (!mpctx->sh_video || mpctx->global_sub_size <= 0)
1809 return M_PROPERTY_UNAVAILABLE;
1811 if (!strcmp(prop->name, "sub_file"))
1812 source = SUB_SOURCE_SUBS;
1813 else if (!strcmp(prop->name, "sub_vob"))
1814 source = SUB_SOURCE_VOBSUB;
1815 else if (!strcmp(prop->name, "sub_demux"))
1816 source = SUB_SOURCE_DEMUX;
1817 else
1818 return M_PROPERTY_ERROR;
1820 offset = sub_pos_by_source(mpctx, source);
1821 if (offset < 0)
1822 return M_PROPERTY_UNAVAILABLE;
1824 is_cur_source = sub_source(mpctx) == source;
1825 new_pos = mpctx->global_sub_pos;
1826 switch (action) {
1827 case M_PROPERTY_GET:
1828 if (!arg)
1829 return M_PROPERTY_ERROR;
1830 if (is_cur_source) {
1831 *(int *) arg = sub_source_pos(mpctx);
1832 if (source == SUB_SOURCE_VOBSUB)
1833 *(int *) arg = vobsub_get_id_by_index(vo_vobsub, *(int *) arg);
1835 else
1836 *(int *) arg = -1;
1837 return M_PROPERTY_OK;
1838 case M_PROPERTY_PRINT:
1839 if (!arg)
1840 return M_PROPERTY_ERROR;
1841 if (is_cur_source)
1842 return mp_property_sub(prop, M_PROPERTY_PRINT, arg, mpctx);
1843 *(char **) arg = malloc(64);
1844 (*(char **) arg)[63] = 0;
1845 snprintf(*(char **) arg, 63, mp_gtext("disabled"));
1846 return M_PROPERTY_OK;
1847 case M_PROPERTY_SET:
1848 if (!arg)
1849 return M_PROPERTY_ERROR;
1850 if (*(int *) arg >= 0) {
1851 int index = *(int *)arg;
1852 if (source == SUB_SOURCE_VOBSUB)
1853 index = vobsub_get_index_by_id(vo_vobsub, index);
1854 new_pos = offset + index;
1855 if (index < 0 || index > mpctx->sub_counts[source]) {
1856 new_pos = -1;
1857 *(int *) arg = -1;
1860 else
1861 new_pos = -1;
1862 break;
1863 case M_PROPERTY_STEP_UP:
1864 case M_PROPERTY_STEP_DOWN: {
1865 int step_all = (arg && *(int*)arg != 0 ? *(int*)arg : 1)
1866 * (action == M_PROPERTY_STEP_UP ? 1 : -1);
1867 int step = (step_all > 0) ? 1 : -1;
1868 int max_sub_pos_for_source = -1;
1869 if (!is_cur_source)
1870 new_pos = -1;
1871 while (step_all) {
1872 if (new_pos == -1) {
1873 if (step > 0)
1874 new_pos = offset;
1875 else if (max_sub_pos_for_source == -1) {
1876 // Find max pos for specific source
1877 new_pos = mpctx->global_sub_size - 1;
1878 while (new_pos >= 0
1879 && sub_source(mpctx) != source)
1880 new_pos--;
1882 else
1883 new_pos = max_sub_pos_for_source;
1885 else {
1886 new_pos += step;
1887 if (new_pos < offset ||
1888 new_pos >= mpctx->global_sub_size ||
1889 sub_source(mpctx) != source)
1890 new_pos = -1;
1892 step_all -= step;
1894 break;
1896 default:
1897 return M_PROPERTY_NOT_IMPLEMENTED;
1899 return mp_property_sub(prop, M_PROPERTY_SET, &new_pos, mpctx);
1902 /// Subtitle delay (RW)
1903 static int mp_property_sub_delay(m_option_t *prop, int action, void *arg,
1904 MPContext *mpctx)
1906 if (!mpctx->sh_video)
1907 return M_PROPERTY_UNAVAILABLE;
1908 return m_property_delay(prop, action, arg, &sub_delay);
1911 /// Alignment of text subtitles (RW)
1912 static int mp_property_sub_alignment(m_option_t *prop, int action,
1913 void *arg, MPContext *mpctx)
1915 char *name[] = { _("top"), _("center"), _("bottom") };
1917 if (!mpctx->sh_video || mpctx->global_sub_pos < 0
1918 || sub_source(mpctx) != SUB_SOURCE_SUBS)
1919 return M_PROPERTY_UNAVAILABLE;
1921 switch (action) {
1922 case M_PROPERTY_PRINT:
1923 if (!arg)
1924 return M_PROPERTY_ERROR;
1925 M_PROPERTY_CLAMP(prop, sub_alignment);
1926 *(char **) arg = strdup(mp_gtext(name[sub_alignment]));
1927 return M_PROPERTY_OK;
1928 case M_PROPERTY_SET:
1929 if (!arg)
1930 return M_PROPERTY_ERROR;
1931 case M_PROPERTY_STEP_UP:
1932 case M_PROPERTY_STEP_DOWN:
1933 vo_osd_changed(OSDTYPE_SUBTITLE);
1934 default:
1935 return m_property_choice(prop, action, arg, &sub_alignment);
1939 /// Subtitle visibility (RW)
1940 static int mp_property_sub_visibility(m_option_t *prop, int action,
1941 void *arg, MPContext *mpctx)
1943 if (!mpctx->sh_video)
1944 return M_PROPERTY_UNAVAILABLE;
1946 switch (action) {
1947 case M_PROPERTY_SET:
1948 if (!arg)
1949 return M_PROPERTY_ERROR;
1950 case M_PROPERTY_STEP_UP:
1951 case M_PROPERTY_STEP_DOWN:
1952 vo_osd_changed(OSDTYPE_SUBTITLE);
1953 if (vo_spudec)
1954 vo_osd_changed(OSDTYPE_SPU);
1955 default:
1956 return m_property_flag(prop, action, arg, &sub_visibility);
1960 #ifdef CONFIG_ASS
1961 /// Use margins for libass subtitles (RW)
1962 static int mp_property_ass_use_margins(m_option_t *prop, int action,
1963 void *arg, MPContext *mpctx)
1965 if (!mpctx->sh_video)
1966 return M_PROPERTY_UNAVAILABLE;
1968 switch (action) {
1969 case M_PROPERTY_SET:
1970 if (!arg)
1971 return M_PROPERTY_ERROR;
1972 case M_PROPERTY_STEP_UP:
1973 case M_PROPERTY_STEP_DOWN:
1974 ass_force_reload = 1;
1975 default:
1976 return m_property_flag(prop, action, arg, &ass_use_margins);
1979 #endif
1981 /// Show only forced subtitles (RW)
1982 static int mp_property_sub_forced_only(m_option_t *prop, int action,
1983 void *arg, MPContext *mpctx)
1985 if (!vo_spudec)
1986 return M_PROPERTY_UNAVAILABLE;
1988 switch (action) {
1989 case M_PROPERTY_SET:
1990 if (!arg)
1991 return M_PROPERTY_ERROR;
1992 case M_PROPERTY_STEP_UP:
1993 case M_PROPERTY_STEP_DOWN:
1994 m_property_flag(prop, action, arg, &forced_subs_only);
1995 spudec_set_forced_subs_only(vo_spudec, forced_subs_only);
1996 return M_PROPERTY_OK;
1997 default:
1998 return m_property_flag(prop, action, arg, &forced_subs_only);
2003 #ifdef CONFIG_FREETYPE
2004 /// Subtitle scale (RW)
2005 static int mp_property_sub_scale(m_option_t *prop, int action, void *arg,
2006 MPContext *mpctx)
2008 struct MPOpts *opts = &mpctx->opts;
2010 switch (action) {
2011 case M_PROPERTY_SET:
2012 if (!arg)
2013 return M_PROPERTY_ERROR;
2014 M_PROPERTY_CLAMP(prop, *(float *) arg);
2015 #ifdef CONFIG_ASS
2016 if (opts->ass_enabled) {
2017 ass_font_scale = *(float *) arg;
2018 ass_force_reload = 1;
2020 #endif
2021 text_font_scale_factor = *(float *) arg;
2022 force_load_font = 1;
2023 return M_PROPERTY_OK;
2024 case M_PROPERTY_STEP_UP:
2025 case M_PROPERTY_STEP_DOWN:
2026 #ifdef CONFIG_ASS
2027 if (opts->ass_enabled) {
2028 ass_font_scale += (arg ? *(float *) arg : 0.1)*
2029 (action == M_PROPERTY_STEP_UP ? 1.0 : -1.0);
2030 M_PROPERTY_CLAMP(prop, ass_font_scale);
2031 ass_force_reload = 1;
2033 #endif
2034 text_font_scale_factor += (arg ? *(float *) arg : 0.1)*
2035 (action == M_PROPERTY_STEP_UP ? 1.0 : -1.0);
2036 M_PROPERTY_CLAMP(prop, text_font_scale_factor);
2037 force_load_font = 1;
2038 return M_PROPERTY_OK;
2039 default:
2040 #ifdef CONFIG_ASS
2041 if (opts->ass_enabled)
2042 return m_property_float_ro(prop, action, arg, ass_font_scale);
2043 else
2044 #endif
2045 return m_property_float_ro(prop, action, arg, text_font_scale_factor);
2048 #endif
2050 ///@}
2052 /// \defgroup TVProperties TV properties
2053 /// \ingroup Properties
2054 ///@{
2056 #ifdef CONFIG_TV
2058 /// TV color settings (RW)
2059 static int mp_property_tv_color(m_option_t *prop, int action, void *arg,
2060 MPContext *mpctx)
2062 int r, val;
2063 tvi_handle_t *tvh = mpctx->demuxer->priv;
2064 if (mpctx->demuxer->type != DEMUXER_TYPE_TV || !tvh)
2065 return M_PROPERTY_UNAVAILABLE;
2067 switch (action) {
2068 case M_PROPERTY_SET:
2069 if (!arg)
2070 return M_PROPERTY_ERROR;
2071 M_PROPERTY_CLAMP(prop, *(int *) arg);
2072 return tv_set_color_options(tvh, prop->offset, *(int *) arg);
2073 case M_PROPERTY_GET:
2074 return tv_get_color_options(tvh, prop->offset, arg);
2075 case M_PROPERTY_STEP_UP:
2076 case M_PROPERTY_STEP_DOWN:
2077 if ((r = tv_get_color_options(tvh, prop->offset, &val)) >= 0) {
2078 if (!r)
2079 return M_PROPERTY_ERROR;
2080 val += (arg ? *(int *) arg : 1) *
2081 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
2082 M_PROPERTY_CLAMP(prop, val);
2083 return tv_set_color_options(tvh, prop->offset, val);
2085 return M_PROPERTY_ERROR;
2087 return M_PROPERTY_NOT_IMPLEMENTED;
2090 #endif
2092 static int mp_property_teletext_common(m_option_t *prop, int action, void *arg,
2093 MPContext *mpctx)
2095 int val,result;
2096 int base_ioctl = prop->offset;
2098 for teletext's GET,SET,STEP ioctls this is not 0
2099 SET is GET+1
2100 STEP is GET+2
2102 if (!mpctx->demuxer || !mpctx->demuxer->teletext)
2103 return M_PROPERTY_UNAVAILABLE;
2104 if(!base_ioctl)
2105 return M_PROPERTY_ERROR;
2107 switch (action) {
2108 case M_PROPERTY_GET:
2109 if (!arg)
2110 return M_PROPERTY_ERROR;
2111 result=teletext_control(mpctx->demuxer->teletext, base_ioctl, arg);
2112 break;
2113 case M_PROPERTY_SET:
2114 if (!arg)
2115 return M_PROPERTY_ERROR;
2116 M_PROPERTY_CLAMP(prop, *(int *) arg);
2117 result=teletext_control(mpctx->demuxer->teletext, base_ioctl+1, arg);
2118 break;
2119 case M_PROPERTY_STEP_UP:
2120 case M_PROPERTY_STEP_DOWN:
2121 result=teletext_control(mpctx->demuxer->teletext, base_ioctl, &val);
2122 val += (arg ? *(int *) arg : 1) * (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
2123 result=teletext_control(mpctx->demuxer->teletext, base_ioctl+1, &val);
2124 break;
2125 default:
2126 return M_PROPERTY_NOT_IMPLEMENTED;
2129 return result == VBI_CONTROL_TRUE ? M_PROPERTY_OK : M_PROPERTY_ERROR;
2132 static int mp_property_teletext_mode(m_option_t *prop, int action, void *arg,
2133 MPContext *mpctx)
2135 int result;
2136 int val;
2138 //with tvh==NULL will fail too
2139 result=mp_property_teletext_common(prop,action,arg,mpctx);
2140 if(result!=M_PROPERTY_OK)
2141 return result;
2143 if(teletext_control(mpctx->demuxer->teletext,
2144 prop->offset, &val)==VBI_CONTROL_TRUE && val)
2145 mp_input_set_section(mpctx->input, "teletext");
2146 else
2147 mp_input_set_section(mpctx->input, "tv");
2148 return M_PROPERTY_OK;
2151 static int mp_property_teletext_page(m_option_t *prop, int action, void *arg,
2152 MPContext *mpctx)
2154 int result;
2155 int val;
2156 if (!mpctx->demuxer->teletext)
2157 return M_PROPERTY_UNAVAILABLE;
2158 switch(action){
2159 case M_PROPERTY_STEP_UP:
2160 case M_PROPERTY_STEP_DOWN:
2161 //This should be handled separately
2162 val = (arg ? *(int *) arg : 1) * (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
2163 result=teletext_control(mpctx->demuxer->teletext,
2164 TV_VBI_CONTROL_STEP_PAGE, &val);
2165 break;
2166 default:
2167 result=mp_property_teletext_common(prop,action,arg,mpctx);
2169 return result;
2172 ///@}
2174 /// All properties available in MPlayer.
2175 /** \ingroup Properties
2177 static const m_option_t mp_properties[] = {
2178 // General
2179 { "osdlevel", mp_property_osdlevel, CONF_TYPE_INT,
2180 M_OPT_RANGE, 0, 3, NULL },
2181 { "loop", mp_property_loop, CONF_TYPE_INT,
2182 M_OPT_MIN, -1, 0, NULL },
2183 { "speed", mp_property_playback_speed, CONF_TYPE_FLOAT,
2184 M_OPT_RANGE, 0.01, 100.0, NULL },
2185 { "filename", mp_property_filename, CONF_TYPE_STRING,
2186 0, 0, 0, NULL },
2187 { "path", mp_property_path, CONF_TYPE_STRING,
2188 0, 0, 0, NULL },
2189 { "demuxer", mp_property_demuxer, CONF_TYPE_STRING,
2190 0, 0, 0, NULL },
2191 { "stream_pos", mp_property_stream_pos, CONF_TYPE_POSITION,
2192 M_OPT_MIN, 0, 0, NULL },
2193 { "stream_start", mp_property_stream_start, CONF_TYPE_POSITION,
2194 M_OPT_MIN, 0, 0, NULL },
2195 { "stream_end", mp_property_stream_end, CONF_TYPE_POSITION,
2196 M_OPT_MIN, 0, 0, NULL },
2197 { "stream_length", mp_property_stream_length, CONF_TYPE_POSITION,
2198 M_OPT_MIN, 0, 0, NULL },
2199 { "stream_time_pos", mp_property_stream_time_pos, CONF_TYPE_TIME,
2200 M_OPT_MIN, 0, 0, NULL },
2201 { "length", mp_property_length, CONF_TYPE_TIME,
2202 M_OPT_MIN, 0, 0, NULL },
2203 { "percent_pos", mp_property_percent_pos, CONF_TYPE_INT,
2204 M_OPT_RANGE, 0, 100, NULL },
2205 { "time_pos", mp_property_time_pos, CONF_TYPE_TIME,
2206 M_OPT_MIN, 0, 0, NULL },
2207 { "chapter", mp_property_chapter, CONF_TYPE_INT,
2208 M_OPT_MIN, 0, 0, NULL },
2209 { "chapters", mp_property_chapters, CONF_TYPE_INT,
2210 0, 0, 0, NULL },
2211 { "angle", mp_property_angle, CONF_TYPE_INT,
2212 CONF_RANGE, -2, 10, NULL },
2213 { "metadata", mp_property_metadata, CONF_TYPE_STRING_LIST,
2214 0, 0, 0, NULL },
2215 { "pause", mp_property_pause, CONF_TYPE_FLAG,
2216 M_OPT_RANGE, 0, 1, NULL },
2217 { "capturing", mp_property_capture, CONF_TYPE_FLAG,
2218 M_OPT_RANGE, 0, 1, NULL },
2219 { "pts_association_mode", mp_property_generic_option, &m_option_type_choice,
2220 0, 0, 0, "pts-association-mode" },
2221 { "hr_seek", mp_property_generic_option, &m_option_type_choice,
2222 0, 0, 0, "hr-seek" },
2224 // Audio
2225 { "volume", mp_property_volume, CONF_TYPE_FLOAT,
2226 M_OPT_RANGE, 0, 100, NULL },
2227 { "mute", mp_property_mute, CONF_TYPE_FLAG,
2228 M_OPT_RANGE, 0, 1, NULL },
2229 { "audio_delay", mp_property_audio_delay, CONF_TYPE_FLOAT,
2230 M_OPT_RANGE, -100, 100, NULL },
2231 { "audio_format", mp_property_audio_format, CONF_TYPE_INT,
2232 0, 0, 0, NULL },
2233 { "audio_codec", mp_property_audio_codec, CONF_TYPE_STRING,
2234 0, 0, 0, NULL },
2235 { "audio_bitrate", mp_property_audio_bitrate, CONF_TYPE_INT,
2236 0, 0, 0, NULL },
2237 { "samplerate", mp_property_samplerate, CONF_TYPE_INT,
2238 0, 0, 0, NULL },
2239 { "channels", mp_property_channels, CONF_TYPE_INT,
2240 0, 0, 0, NULL },
2241 { "switch_audio", mp_property_audio, CONF_TYPE_INT,
2242 CONF_RANGE, -2, 65535, NULL },
2243 { "balance", mp_property_balance, CONF_TYPE_FLOAT,
2244 M_OPT_RANGE, -1, 1, NULL },
2246 // Video
2247 { "fullscreen", mp_property_fullscreen, CONF_TYPE_FLAG,
2248 M_OPT_RANGE, 0, 1, NULL },
2249 { "deinterlace", mp_property_deinterlace, CONF_TYPE_FLAG,
2250 M_OPT_RANGE, 0, 1, NULL },
2251 { "yuv_colorspace", mp_property_yuv_colorspace, CONF_TYPE_INT,
2252 M_OPT_RANGE, 0, 2, NULL },
2253 { "ontop", mp_property_ontop, CONF_TYPE_FLAG,
2254 M_OPT_RANGE, 0, 1, NULL },
2255 { "rootwin", mp_property_rootwin, CONF_TYPE_FLAG,
2256 M_OPT_RANGE, 0, 1, NULL },
2257 { "border", mp_property_border, CONF_TYPE_FLAG,
2258 M_OPT_RANGE, 0, 1, NULL },
2259 { "framedropping", mp_property_framedropping, CONF_TYPE_INT,
2260 M_OPT_RANGE, 0, 2, NULL },
2261 { "gamma", mp_property_gamma, CONF_TYPE_INT,
2262 M_OPT_RANGE, -100, 100, .offset=offsetof(struct MPOpts, vo_gamma_gamma)},
2263 { "brightness", mp_property_gamma, CONF_TYPE_INT,
2264 M_OPT_RANGE, -100, 100, .offset=offsetof(struct MPOpts, vo_gamma_brightness) },
2265 { "contrast", mp_property_gamma, CONF_TYPE_INT,
2266 M_OPT_RANGE, -100, 100, .offset=offsetof(struct MPOpts, vo_gamma_contrast) },
2267 { "saturation", mp_property_gamma, CONF_TYPE_INT,
2268 M_OPT_RANGE, -100, 100, .offset=offsetof(struct MPOpts, vo_gamma_saturation) },
2269 { "hue", mp_property_gamma, CONF_TYPE_INT,
2270 M_OPT_RANGE, -100, 100, .offset=offsetof(struct MPOpts, vo_gamma_hue) },
2271 { "panscan", mp_property_panscan, CONF_TYPE_FLOAT,
2272 M_OPT_RANGE, 0, 1, NULL },
2273 { "vsync", mp_property_vsync, CONF_TYPE_FLAG,
2274 M_OPT_RANGE, 0, 1, NULL },
2275 { "video_format", mp_property_video_format, CONF_TYPE_INT,
2276 0, 0, 0, NULL },
2277 { "video_codec", mp_property_video_codec, CONF_TYPE_STRING,
2278 0, 0, 0, NULL },
2279 { "video_bitrate", mp_property_video_bitrate, CONF_TYPE_INT,
2280 0, 0, 0, NULL },
2281 { "width", mp_property_width, CONF_TYPE_INT,
2282 0, 0, 0, NULL },
2283 { "height", mp_property_height, CONF_TYPE_INT,
2284 0, 0, 0, NULL },
2285 { "fps", mp_property_fps, CONF_TYPE_FLOAT,
2286 0, 0, 0, NULL },
2287 { "aspect", mp_property_aspect, CONF_TYPE_FLOAT,
2288 0, 0, 0, NULL },
2289 { "switch_video", mp_property_video, CONF_TYPE_INT,
2290 CONF_RANGE, -2, 65535, NULL },
2291 { "switch_program", mp_property_program, CONF_TYPE_INT,
2292 CONF_RANGE, -1, 65535, NULL },
2294 // Subs
2295 { "sub", mp_property_sub, CONF_TYPE_INT,
2296 M_OPT_MIN, -1, 0, NULL },
2297 { "sub_source", mp_property_sub_source, CONF_TYPE_INT,
2298 M_OPT_RANGE, -1, SUB_SOURCES - 1, NULL },
2299 { "sub_vob", mp_property_sub_by_type, CONF_TYPE_INT,
2300 M_OPT_MIN, -1, 0, NULL },
2301 { "sub_demux", mp_property_sub_by_type, CONF_TYPE_INT,
2302 M_OPT_MIN, -1, 0, NULL },
2303 { "sub_file", mp_property_sub_by_type, CONF_TYPE_INT,
2304 M_OPT_MIN, -1, 0, NULL },
2305 { "sub_delay", mp_property_sub_delay, CONF_TYPE_FLOAT,
2306 0, 0, 0, NULL },
2307 { "sub_pos", mp_property_sub_pos, CONF_TYPE_INT,
2308 M_OPT_RANGE, 0, 100, NULL },
2309 { "sub_alignment", mp_property_sub_alignment, CONF_TYPE_INT,
2310 M_OPT_RANGE, 0, 2, NULL },
2311 { "sub_visibility", mp_property_sub_visibility, CONF_TYPE_FLAG,
2312 M_OPT_RANGE, 0, 1, NULL },
2313 { "sub_forced_only", mp_property_sub_forced_only, CONF_TYPE_FLAG,
2314 M_OPT_RANGE, 0, 1, NULL },
2315 #ifdef CONFIG_FREETYPE
2316 { "sub_scale", mp_property_sub_scale, CONF_TYPE_FLOAT,
2317 M_OPT_RANGE, 0, 100, NULL },
2318 #endif
2319 #ifdef CONFIG_ASS
2320 { "ass_use_margins", mp_property_ass_use_margins, CONF_TYPE_FLAG,
2321 M_OPT_RANGE, 0, 1, NULL },
2322 #endif
2324 #ifdef CONFIG_TV
2325 { "tv_brightness", mp_property_tv_color, CONF_TYPE_INT,
2326 M_OPT_RANGE, -100, 100, .offset=TV_COLOR_BRIGHTNESS },
2327 { "tv_contrast", mp_property_tv_color, CONF_TYPE_INT,
2328 M_OPT_RANGE, -100, 100, .offset=TV_COLOR_CONTRAST },
2329 { "tv_saturation", mp_property_tv_color, CONF_TYPE_INT,
2330 M_OPT_RANGE, -100, 100, .offset=TV_COLOR_SATURATION },
2331 { "tv_hue", mp_property_tv_color, CONF_TYPE_INT,
2332 M_OPT_RANGE, -100, 100, .offset=TV_COLOR_HUE },
2333 #endif
2334 { "teletext_page", mp_property_teletext_page, CONF_TYPE_INT,
2335 M_OPT_RANGE, 100, 899, .offset=TV_VBI_CONTROL_GET_PAGE },
2336 { "teletext_subpage", mp_property_teletext_common, CONF_TYPE_INT,
2337 M_OPT_RANGE, 0, 64, .offset=TV_VBI_CONTROL_GET_SUBPAGE },
2338 { "teletext_mode", mp_property_teletext_mode, CONF_TYPE_FLAG,
2339 M_OPT_RANGE, 0, 1, .offset=TV_VBI_CONTROL_GET_MODE },
2340 { "teletext_format", mp_property_teletext_common, CONF_TYPE_INT,
2341 M_OPT_RANGE, 0, 3, .offset=TV_VBI_CONTROL_GET_FORMAT },
2342 { "teletext_half_page", mp_property_teletext_common, CONF_TYPE_INT,
2343 M_OPT_RANGE, 0, 2, .offset=TV_VBI_CONTROL_GET_HALF_PAGE },
2344 { NULL, NULL, NULL, 0, 0, 0, NULL }
2348 int mp_property_do(const char *name, int action, void *val, void *ctx)
2350 return m_property_do(mp_properties, name, action, val, ctx);
2353 char* mp_property_print(const char *name, void* ctx)
2355 char* ret = NULL;
2356 if(mp_property_do(name,M_PROPERTY_PRINT,&ret,ctx) <= 0)
2357 return NULL;
2358 return ret;
2361 char *property_expand_string(MPContext *mpctx, char *str)
2363 return m_properties_expand_string(mp_properties, str, mpctx);
2366 void property_print_help(void)
2368 m_properties_print_help_list(mp_properties);
2372 /* List of default ways to show a property on OSD.
2374 * Setting osd_progbar to -1 displays seek bar, other nonzero displays
2375 * a bar showing the current position between min/max values of the
2376 * property. In this case osd_msg is only used for terminal output
2377 * if there is no video; it'll be a label shown together with percentage.
2379 * Otherwise setting osd_msg will show the string on OSD, formatted with
2380 * the text value of the property as argument.
2382 static struct property_osd_display {
2383 /// property name
2384 const char *name;
2385 /// progressbar type
2386 int osd_progbar; // -1 is special value for seek indicators
2387 /// osd msg id if it must be shared
2388 int osd_id;
2389 /// osd msg template
2390 const char *osd_msg;
2391 } property_osd_display[] = {
2392 // general
2393 { "loop", 0, -1, _("Loop: %s") },
2394 { "chapter", -1, -1, NULL },
2395 { "capturing", 0, -1, _("Capturing: %s") },
2396 { "pts_association_mode", 0, -1, "PTS association mode: %s" },
2397 { "hr_seek", 0, -1, "hr-seek: %s" },
2398 { "speed", 0, -1, _("Speed: x %6s") },
2399 // audio
2400 { "volume", OSD_VOLUME, -1, _("Volume") },
2401 { "mute", 0, -1, _("Mute: %s") },
2402 { "audio_delay", 0, -1, _("A-V delay: %s") },
2403 { "switch_audio", 0, -1, _("Audio: %s") },
2404 { "balance", OSD_BALANCE, -1, _("Balance") },
2405 // video
2406 { "panscan", OSD_PANSCAN, -1, _("Panscan") },
2407 { "ontop", 0, -1, _("Stay on top: %s") },
2408 { "rootwin", 0, -1, _("Rootwin: %s") },
2409 { "border", 0, -1, _("Border: %s") },
2410 { "framedropping", 0, -1, _("Framedropping: %s") },
2411 { "deinterlace", 0, -1, _("Deinterlace: %s") },
2412 { "yuv_colorspace", 0, -1, _("YUV colorspace: %s") },
2413 { "gamma", OSD_BRIGHTNESS, -1, _("Gamma") },
2414 { "brightness", OSD_BRIGHTNESS, -1, _("Brightness") },
2415 { "contrast", OSD_CONTRAST, -1, _("Contrast") },
2416 { "saturation", OSD_SATURATION, -1, _("Saturation") },
2417 { "hue", OSD_HUE, -1, _("Hue") },
2418 { "vsync", 0, -1, _("VSync: %s") },
2419 // subs
2420 { "sub", 0, -1, _("Subtitles: %s") },
2421 { "sub_source", 0, -1, _("Sub source: %s") },
2422 { "sub_vob", 0, -1, _("Subtitles: %s") },
2423 { "sub_demux", 0, -1, _("Subtitles: %s") },
2424 { "sub_file", 0, -1, _("Subtitles: %s") },
2425 { "sub_pos", 0, -1, _("Sub position: %s/100") },
2426 { "sub_alignment", 0, -1, _("Sub alignment: %s") },
2427 { "sub_delay", 0, OSD_MSG_SUB_DELAY, _("Sub delay: %s") },
2428 { "sub_visibility", 0, -1, _("Subtitles: %s") },
2429 { "sub_forced_only", 0, -1, _("Forced sub only: %s") },
2430 #ifdef CONFIG_FREETYPE
2431 { "sub_scale", 0, -1, _("Sub Scale: %s")},
2432 #endif
2433 #ifdef CONFIG_TV
2434 { "tv_brightness", OSD_BRIGHTNESS, -1, _("Brightness") },
2435 { "tv_hue", OSD_HUE, -1, _("Hue") },
2436 { "tv_saturation", OSD_SATURATION, -1, _("Saturation") },
2437 { "tv_contrast", OSD_CONTRAST, -1, _("Contrast") },
2438 #endif
2442 static int show_property_osd(MPContext *mpctx, const char *pname)
2444 struct MPOpts *opts = &mpctx->opts;
2445 int r;
2446 m_option_t* prop;
2447 struct property_osd_display *p;
2449 // look for the command
2450 for (p = property_osd_display; p->name; p++)
2451 if (!strcmp(p->name, pname))
2452 break;
2453 if (!p->name)
2454 return -1;
2456 if (mp_property_do(pname, M_PROPERTY_GET_TYPE, &prop, mpctx) <= 0 || !prop)
2457 return -1;
2459 if (p->osd_progbar == -1)
2460 mpctx->add_osd_seek_info = true;
2461 else if (p->osd_progbar) {
2462 if (prop->type == CONF_TYPE_INT) {
2463 if (mp_property_do(pname, M_PROPERTY_GET, &r, mpctx) > 0)
2464 set_osd_bar(mpctx, p->osd_progbar, mp_gtext(p->osd_msg),
2465 prop->min, prop->max, r);
2466 } else if (prop->type == CONF_TYPE_FLOAT) {
2467 float f;
2468 if (mp_property_do(pname, M_PROPERTY_GET, &f, mpctx) > 0)
2469 set_osd_bar(mpctx, p->osd_progbar, mp_gtext(p->osd_msg),
2470 prop->min, prop->max, f);
2471 } else {
2472 mp_msg(MSGT_CPLAYER, MSGL_ERR,
2473 "Property use an unsupported type.\n");
2474 return -1;
2476 return 0;
2479 if (p->osd_msg) {
2480 char *val = mp_property_print(pname, mpctx);
2481 if (val) {
2482 int index = p - property_osd_display;
2483 set_osd_tmsg(p->osd_id >= 0 ? p->osd_id : OSD_MSG_PROPERTY + index,
2484 1, opts->osd_duration, p->osd_msg, val);
2485 free(val);
2488 return 0;
2493 * \defgroup Command2Property Command to property bridge
2495 * It is used to handle most commands that just set a property
2496 * and optionally display something on the OSD.
2497 * Two kinds of commands are handled: adjust or toggle.
2499 * Adjust commands take 1 or 2 parameters: <value> <abs>
2500 * If <abs> is non-zero the property is set to the given value
2501 * otherwise it is adjusted.
2503 * Toggle commands take 0 or 1 parameters. With no parameter
2504 * or a value less than the property minimum it just steps the
2505 * property to its next or previous value respectively.
2506 * Otherwise it sets it to the given value.
2511 /// List of the commands that can be handled by setting a property.
2512 static struct {
2513 /// property name
2514 const char *name;
2515 /// cmd id
2516 int cmd;
2517 /// set/adjust or toggle command
2518 int toggle;
2519 } set_prop_cmd[] = {
2520 // general
2521 { "loop", MP_CMD_LOOP, 0},
2522 { "chapter", MP_CMD_SEEK_CHAPTER, 0},
2523 { "angle", MP_CMD_SWITCH_ANGLE, 0},
2524 { "pause", MP_CMD_PAUSE, 0},
2525 { "capturing", MP_CMD_CAPTURING, 1},
2526 // audio
2527 { "volume", MP_CMD_VOLUME, 0},
2528 { "mute", MP_CMD_MUTE, 1},
2529 { "audio_delay", MP_CMD_AUDIO_DELAY, 0},
2530 { "switch_audio", MP_CMD_SWITCH_AUDIO, 1},
2531 { "balance", MP_CMD_BALANCE, 0},
2532 // video
2533 { "fullscreen", MP_CMD_VO_FULLSCREEN, 1},
2534 { "panscan", MP_CMD_PANSCAN, 0},
2535 { "ontop", MP_CMD_VO_ONTOP, 1},
2536 { "rootwin", MP_CMD_VO_ROOTWIN, 1},
2537 { "border", MP_CMD_VO_BORDER, 1},
2538 { "framedropping", MP_CMD_FRAMEDROPPING, 1},
2539 { "gamma", MP_CMD_GAMMA, 0},
2540 { "brightness", MP_CMD_BRIGHTNESS, 0},
2541 { "contrast", MP_CMD_CONTRAST, 0},
2542 { "saturation", MP_CMD_SATURATION, 0},
2543 { "hue", MP_CMD_HUE, 0},
2544 { "vsync", MP_CMD_SWITCH_VSYNC, 1},
2545 // subs
2546 { "sub", MP_CMD_SUB_SELECT, 1},
2547 { "sub_source", MP_CMD_SUB_SOURCE, 1},
2548 { "sub_vob", MP_CMD_SUB_VOB, 1},
2549 { "sub_demux", MP_CMD_SUB_DEMUX, 1},
2550 { "sub_file", MP_CMD_SUB_FILE, 1},
2551 { "sub_pos", MP_CMD_SUB_POS, 0},
2552 { "sub_alignment", MP_CMD_SUB_ALIGNMENT, 1},
2553 { "sub_delay", MP_CMD_SUB_DELAY, 0},
2554 { "sub_visibility", MP_CMD_SUB_VISIBILITY, 1},
2555 { "sub_forced_only", MP_CMD_SUB_FORCED_ONLY, 1},
2556 #ifdef CONFIG_FREETYPE
2557 { "sub_scale", MP_CMD_SUB_SCALE, 0},
2558 #endif
2559 #ifdef CONFIG_ASS
2560 { "ass_use_margins", MP_CMD_ASS_USE_MARGINS, 1},
2561 #endif
2562 #ifdef CONFIG_TV
2563 { "tv_brightness", MP_CMD_TV_SET_BRIGHTNESS, 0},
2564 { "tv_hue", MP_CMD_TV_SET_HUE, 0},
2565 { "tv_saturation", MP_CMD_TV_SET_SATURATION, 0},
2566 { "tv_contrast", MP_CMD_TV_SET_CONTRAST, 0},
2567 #endif
2571 /// Handle commands that set a property.
2572 static int set_property_command(MPContext *mpctx, mp_cmd_t *cmd)
2574 int i, r;
2575 m_option_t *prop;
2576 const char *pname;
2578 // look for the command
2579 for (i = 0; set_prop_cmd[i].name; i++)
2580 if (set_prop_cmd[i].cmd == cmd->id)
2581 break;
2582 if (!(pname = set_prop_cmd[i].name))
2583 return 0;
2585 if (mp_property_do(pname,M_PROPERTY_GET_TYPE,&prop,mpctx) <= 0 || !prop)
2586 return 0;
2588 // toggle command
2589 if (set_prop_cmd[i].toggle) {
2590 // set to value
2591 if (cmd->nargs > 0 && cmd->args[0].v.i >= prop->min)
2592 r = mp_property_do(pname, M_PROPERTY_SET, &cmd->args[0].v.i, mpctx);
2593 else if (cmd->nargs > 0)
2594 r = mp_property_do(pname, M_PROPERTY_STEP_DOWN, NULL, mpctx);
2595 else
2596 r = mp_property_do(pname, M_PROPERTY_STEP_UP, NULL, mpctx);
2597 } else if (cmd->args[1].v.i) //set
2598 r = mp_property_do(pname, M_PROPERTY_SET, &cmd->args[0].v, mpctx);
2599 else // adjust
2600 r = mp_property_do(pname, M_PROPERTY_STEP_UP, &cmd->args[0].v, mpctx);
2602 if (r <= 0)
2603 return 1;
2605 show_property_osd(mpctx, pname);
2607 return 1;
2610 #ifdef CONFIG_DVDNAV
2611 static const struct {
2612 const char *name;
2613 const mp_command_type cmd;
2614 } mp_dvdnav_bindings[] = {
2615 { "up", MP_CMD_DVDNAV_UP },
2616 { "down", MP_CMD_DVDNAV_DOWN },
2617 { "left", MP_CMD_DVDNAV_LEFT },
2618 { "right", MP_CMD_DVDNAV_RIGHT },
2619 { "menu", MP_CMD_DVDNAV_MENU },
2620 { "select", MP_CMD_DVDNAV_SELECT },
2621 { "prev", MP_CMD_DVDNAV_PREVMENU },
2622 { "mouse", MP_CMD_DVDNAV_MOUSECLICK },
2625 * keep old dvdnav sub-command options for a while in order not to
2626 * break slave-mode API too suddenly.
2628 { "1", MP_CMD_DVDNAV_UP },
2629 { "2", MP_CMD_DVDNAV_DOWN },
2630 { "3", MP_CMD_DVDNAV_LEFT },
2631 { "4", MP_CMD_DVDNAV_RIGHT },
2632 { "5", MP_CMD_DVDNAV_MENU },
2633 { "6", MP_CMD_DVDNAV_SELECT },
2634 { "7", MP_CMD_DVDNAV_PREVMENU },
2635 { "8", MP_CMD_DVDNAV_MOUSECLICK },
2636 { NULL, 0 }
2638 #endif
2640 static const char *property_error_string(int error_value)
2642 switch (error_value) {
2643 case M_PROPERTY_ERROR:
2644 return "ERROR";
2645 case M_PROPERTY_UNAVAILABLE:
2646 return "PROPERTY_UNAVAILABLE";
2647 case M_PROPERTY_NOT_IMPLEMENTED:
2648 return "NOT_IMPLEMENTED";
2649 case M_PROPERTY_UNKNOWN:
2650 return "PROPERTY_UNKNOWN";
2651 case M_PROPERTY_DISABLED:
2652 return "DISABLED";
2654 return "UNKNOWN";
2657 static void remove_subtitle_range(MPContext *mpctx, int start, int count)
2659 int idx;
2660 int end = start + count;
2661 int after = mpctx->set_of_sub_size - end;
2662 sub_data **subs = mpctx->set_of_subtitles;
2663 #ifdef CONFIG_ASS
2664 struct ass_track **ass_tracks = mpctx->set_of_ass_tracks;
2665 #endif
2666 if (count < 0 || count > mpctx->set_of_sub_size ||
2667 start < 0 || start > mpctx->set_of_sub_size - count) {
2668 mp_msg(MSGT_CPLAYER, MSGL_ERR,
2669 "Cannot remove invalid subtitle range %i +%i\n", start, count);
2670 return;
2672 for (idx = start; idx < end; idx++) {
2673 sub_data *subd = subs[idx];
2674 char *filename = "";
2675 if (subd)
2676 filename = subd->filename;
2677 #ifdef CONFIG_ASS
2678 if (!subd)
2679 filename = ass_tracks[idx]->name;
2680 #endif
2681 mp_msg(MSGT_CPLAYER, MSGL_STATUS,
2682 "SUB: Removed subtitle file (%d): %s\n", idx + 1,
2683 filename_recode(filename));
2684 sub_free(subd);
2685 subs[idx] = NULL;
2686 #ifdef CONFIG_ASS
2687 if (ass_tracks[idx])
2688 ass_free_track(ass_tracks[idx]);
2689 ass_tracks[idx] = NULL;
2690 #endif
2693 mpctx->global_sub_size -= count;
2694 mpctx->set_of_sub_size -= count;
2695 if (mpctx->set_of_sub_size <= 0)
2696 mpctx->sub_counts[SUB_SOURCE_SUBS] = 0;
2698 memmove(subs + start, subs + end, after * sizeof(*subs));
2699 memset(subs + start + after, 0, count * sizeof(*subs));
2700 #ifdef CONFIG_ASS
2701 memmove(ass_tracks + start, ass_tracks + end, after * sizeof(*ass_tracks));
2702 memset(ass_tracks + start + after, 0, count * sizeof(*ass_tracks));
2703 #endif
2705 if (mpctx->set_of_sub_pos >= start && mpctx->set_of_sub_pos < end) {
2706 mpctx->global_sub_pos = -2;
2707 mpctx->subdata = NULL;
2708 mpctx->osd->ass_track = NULL;
2709 mp_input_queue_cmd(mpctx->input, mp_input_parse_cmd("sub_select"));
2710 } else if (mpctx->set_of_sub_pos >= end) {
2711 mpctx->set_of_sub_pos -= count;
2712 mpctx->global_sub_pos -= count;
2716 void run_command(MPContext *mpctx, mp_cmd_t *cmd)
2718 struct MPOpts *opts = &mpctx->opts;
2719 sh_audio_t * const sh_audio = mpctx->sh_audio;
2720 sh_video_t * const sh_video = mpctx->sh_video;
2721 int osd_duration = opts->osd_duration;
2722 int case_fallthrough_hack = 0;
2723 if (!set_property_command(mpctx, cmd))
2724 switch (cmd->id) {
2725 case MP_CMD_SEEK:{
2726 mpctx->add_osd_seek_info = true;
2727 float v = cmd->args[0].v.f;
2728 int abs = (cmd->nargs > 1) ? cmd->args[1].v.i : 0;
2729 int exact = (cmd->nargs > 2) ? cmd->args[2].v.i : 0;
2730 if (abs == 2) { /* Absolute seek to a specific timestamp in seconds */
2731 queue_seek(mpctx, MPSEEK_ABSOLUTE, v, exact);
2732 mpctx->osd_function = v > get_current_time(mpctx) ?
2733 OSD_FFW : OSD_REW;
2734 } else if (abs) { /* Absolute seek by percentage */
2735 queue_seek(mpctx, MPSEEK_FACTOR, v / 100.0, exact);
2736 mpctx->osd_function = OSD_FFW; // Direction isn't set correctly
2737 } else {
2738 queue_seek(mpctx, MPSEEK_RELATIVE, v, exact);
2739 mpctx->osd_function = (v > 0) ? OSD_FFW : OSD_REW;
2742 break;
2744 case MP_CMD_SET_PROPERTY_OSD:
2745 case_fallthrough_hack = 1;
2747 case MP_CMD_SET_PROPERTY:{
2748 int r = mp_property_do(cmd->args[0].v.s, M_PROPERTY_PARSE,
2749 cmd->args[1].v.s, mpctx);
2750 if (r == M_PROPERTY_UNKNOWN)
2751 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2752 "Unknown property: '%s'\n", cmd->args[0].v.s);
2753 else if (r <= 0)
2754 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2755 "Failed to set property '%s' to '%s'.\n",
2756 cmd->args[0].v.s, cmd->args[1].v.s);
2757 else if (case_fallthrough_hack)
2758 show_property_osd(mpctx, cmd->args[0].v.s);
2759 if (r <= 0)
2760 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_ERROR=%s\n", property_error_string(r));
2762 break;
2764 case MP_CMD_STEP_PROPERTY_OSD:
2765 case_fallthrough_hack = 1;
2767 case MP_CMD_STEP_PROPERTY:{
2768 void* arg = NULL;
2769 int r,i;
2770 double d;
2771 off_t o;
2772 if (cmd->args[1].v.f) {
2773 m_option_t* prop;
2774 if((r = mp_property_do(cmd->args[0].v.s,
2775 M_PROPERTY_GET_TYPE,
2776 &prop, mpctx)) <= 0)
2777 goto step_prop_err;
2778 if(prop->type == CONF_TYPE_INT ||
2779 prop->type == CONF_TYPE_FLAG)
2780 i = cmd->args[1].v.f, arg = &i;
2781 else if(prop->type == CONF_TYPE_FLOAT)
2782 arg = &cmd->args[1].v.f;
2783 else if(prop->type == CONF_TYPE_DOUBLE ||
2784 prop->type == CONF_TYPE_TIME)
2785 d = cmd->args[1].v.f, arg = &d;
2786 else if(prop->type == CONF_TYPE_POSITION)
2787 o = cmd->args[1].v.f, arg = &o;
2788 else
2789 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2790 "Ignoring step size stepping property '%s'.\n",
2791 cmd->args[0].v.s);
2793 r = mp_property_do(cmd->args[0].v.s,
2794 cmd->args[2].v.i < 0 ?
2795 M_PROPERTY_STEP_DOWN : M_PROPERTY_STEP_UP,
2796 arg, mpctx);
2797 step_prop_err:
2798 if (r == M_PROPERTY_UNKNOWN)
2799 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2800 "Unknown property: '%s'\n", cmd->args[0].v.s);
2801 else if (r <= 0)
2802 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2803 "Failed to increment property '%s' by %f.\n",
2804 cmd->args[0].v.s, cmd->args[1].v.f);
2805 else if (case_fallthrough_hack)
2806 show_property_osd(mpctx, cmd->args[0].v.s);
2807 if (r <= 0)
2808 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_ERROR=%s\n", property_error_string(r));
2810 break;
2812 case MP_CMD_GET_PROPERTY:{
2813 char *tmp;
2814 int r = mp_property_do(cmd->args[0].v.s, M_PROPERTY_TO_STRING,
2815 &tmp, mpctx);
2816 if (r <= 0) {
2817 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2818 "Failed to get value of property '%s'.\n",
2819 cmd->args[0].v.s);
2820 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_ERROR=%s\n", property_error_string(r));
2821 break;
2823 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_%s=%s\n",
2824 cmd->args[0].v.s, tmp);
2825 free(tmp);
2827 break;
2829 case MP_CMD_EDL_MARK:
2830 if (edl_fd) {
2831 float v = get_current_time(mpctx);
2832 if (mpctx->begin_skip == MP_NOPTS_VALUE) {
2833 mpctx->begin_skip = v;
2834 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "EDL skip start, press 'i' again to end block.\n");
2835 } else {
2836 if (mpctx->begin_skip > v)
2837 mp_tmsg(MSGT_CPLAYER, MSGL_WARN, "EDL skip canceled, last start > stop\n");
2838 else {
2839 fprintf(edl_fd, "%f %f %d\n", mpctx->begin_skip, v, 0);
2840 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "EDL skip end, line written.\n");
2842 mpctx->begin_skip = MP_NOPTS_VALUE;
2845 break;
2847 case MP_CMD_SWITCH_RATIO:
2848 if (!sh_video)
2849 break;
2850 if (cmd->nargs == 0 || cmd->args[0].v.f == -1)
2851 opts->movie_aspect = (float) sh_video->disp_w / sh_video->disp_h;
2852 else
2853 opts->movie_aspect = cmd->args[0].v.f;
2854 mpcodecs_config_vo(sh_video, sh_video->disp_w, sh_video->disp_h, 0);
2855 break;
2857 case MP_CMD_SPEED_INCR:{
2858 float v = cmd->args[0].v.f;
2859 mp_property_do("speed", M_PROPERTY_STEP_UP, &v, mpctx);
2860 show_property_osd(mpctx, "speed");
2861 break;
2864 case MP_CMD_SPEED_MULT:
2865 case_fallthrough_hack = true;
2867 case MP_CMD_SPEED_SET:{
2868 float v = cmd->args[0].v.f;
2869 if (case_fallthrough_hack)
2870 v *= mpctx->opts.playback_speed;
2871 mp_property_do("speed", M_PROPERTY_SET, &v, mpctx);
2872 show_property_osd(mpctx, "speed");
2873 break;
2876 case MP_CMD_FRAME_STEP:
2877 add_step_frame(mpctx);
2878 break;
2880 case MP_CMD_FILE_FILTER:
2881 file_filter = cmd->args[0].v.i;
2882 break;
2884 case MP_CMD_QUIT:
2885 exit_player_with_rc(mpctx, EXIT_QUIT,
2886 (cmd->nargs > 0) ? cmd->args[0].v.i : 0);
2888 case MP_CMD_PLAY_TREE_STEP:{
2889 int n = cmd->args[0].v.i == 0 ? 1 : cmd->args[0].v.i;
2890 int force = cmd->args[1].v.i;
2893 if (!force && mpctx->playtree_iter) {
2894 play_tree_iter_t *i =
2895 play_tree_iter_new_copy(mpctx->playtree_iter);
2896 if (play_tree_iter_step(i, n, 0) ==
2897 PLAY_TREE_ITER_ENTRY)
2898 mpctx->stop_play =
2899 (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
2900 play_tree_iter_free(i);
2901 } else
2902 mpctx->stop_play = (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
2903 if (mpctx->stop_play)
2904 mpctx->play_tree_step = n;
2907 break;
2909 case MP_CMD_PLAY_TREE_UP_STEP:{
2910 int n = cmd->args[0].v.i > 0 ? 1 : -1;
2911 int force = cmd->args[1].v.i;
2913 if (!force && mpctx->playtree_iter) {
2914 play_tree_iter_t *i =
2915 play_tree_iter_new_copy(mpctx->playtree_iter);
2916 if (play_tree_iter_up_step(i, n, 0) == PLAY_TREE_ITER_ENTRY)
2917 mpctx->stop_play = (n > 0) ? PT_UP_NEXT : PT_UP_PREV;
2918 play_tree_iter_free(i);
2919 } else
2920 mpctx->stop_play = (n > 0) ? PT_UP_NEXT : PT_UP_PREV;
2922 break;
2924 case MP_CMD_PLAY_ALT_SRC_STEP:
2925 if (mpctx->playtree_iter && mpctx->playtree_iter->num_files > 1) {
2926 int v = cmd->args[0].v.i;
2927 if (v > 0
2928 && mpctx->playtree_iter->file <
2929 mpctx->playtree_iter->num_files)
2930 mpctx->stop_play = PT_NEXT_SRC;
2931 else if (v < 0 && mpctx->playtree_iter->file > 1)
2932 mpctx->stop_play = PT_PREV_SRC;
2934 break;
2936 case MP_CMD_SUB_STEP:
2937 if (sh_video) {
2938 int movement = cmd->args[0].v.i;
2939 step_sub(mpctx->subdata, mpctx->video_pts, movement);
2940 #ifdef CONFIG_ASS
2941 if (mpctx->osd->ass_track)
2942 sub_delay +=
2943 ass_step_sub(mpctx->osd->ass_track,
2944 (mpctx->video_pts +
2945 sub_delay) * 1000 + .5, movement) / 1000.;
2946 #endif
2947 set_osd_tmsg(OSD_MSG_SUB_DELAY, 1, osd_duration,
2948 "Sub delay: %d ms", ROUND(sub_delay * 1000));
2950 break;
2952 case MP_CMD_SUB_LOG:
2953 log_sub(mpctx);
2954 break;
2956 case MP_CMD_OSD:{
2957 int v = cmd->args[0].v.i;
2958 int max = (opts->term_osd
2959 && !sh_video) ? MAX_TERM_OSD_LEVEL : MAX_OSD_LEVEL;
2960 if (opts->osd_level > max)
2961 opts->osd_level = max;
2962 if (v < 0)
2963 opts->osd_level = (opts->osd_level + 1) % (max + 1);
2964 else
2965 opts->osd_level = v > max ? max : v;
2966 /* Show OSD state when disabled, but not when an explicit
2967 argument is given to the OSD command, i.e. in slave mode. */
2968 if (v == -1 && opts->osd_level <= 1)
2969 set_osd_tmsg(OSD_MSG_OSD_STATUS, 0, osd_duration,
2970 "OSD: %s",
2971 opts->osd_level ? mp_gtext("enabled") :
2972 mp_gtext("disabled"));
2973 else
2974 rm_osd_msg(OSD_MSG_OSD_STATUS);
2976 break;
2978 case MP_CMD_OSD_SHOW_TEXT:
2979 set_osd_msg(OSD_MSG_TEXT, cmd->args[2].v.i,
2980 (cmd->args[1].v.i <
2981 0 ? osd_duration : cmd->args[1].v.i),
2982 "%-.63s", cmd->args[0].v.s);
2983 break;
2985 case MP_CMD_OSD_SHOW_PROPERTY_TEXT:{
2986 char *txt = m_properties_expand_string(mp_properties,
2987 cmd->args[0].v.s,
2988 mpctx);
2989 /* if no argument supplied take default osd_duration, else <arg> ms. */
2990 if (txt) {
2991 set_osd_msg(OSD_MSG_TEXT, cmd->args[2].v.i,
2992 (cmd->args[1].v.i <
2993 0 ? osd_duration : cmd->args[1].v.i),
2994 "%-.63s", txt);
2995 free(txt);
2998 break;
3000 case MP_CMD_LOADFILE:{
3001 play_tree_t *e = play_tree_new();
3002 play_tree_add_file(e, cmd->args[0].v.s);
3004 if (cmd->args[1].v.i) // append
3005 play_tree_append_entry(mpctx->playtree->child, e);
3006 else {
3007 // Go back to the starting point.
3008 while (play_tree_iter_up_step
3009 (mpctx->playtree_iter, 0, 1) != PLAY_TREE_ITER_END)
3010 /* NOP */ ;
3011 play_tree_free_list(mpctx->playtree->child, 1);
3012 play_tree_set_child(mpctx->playtree, e);
3013 pt_iter_goto_head(mpctx->playtree_iter);
3014 mpctx->stop_play = PT_NEXT_SRC;
3017 break;
3019 case MP_CMD_LOADLIST:{
3020 play_tree_t *e = parse_playlist_file(mpctx->mconfig, cmd->args[0].v.s);
3021 if (!e)
3022 mp_tmsg(MSGT_CPLAYER, MSGL_ERR,
3023 "\nUnable to load playlist %s.\n", cmd->args[0].v.s);
3024 else {
3025 if (cmd->args[1].v.i) // append
3026 play_tree_append_entry(mpctx->playtree->child, e);
3027 else {
3028 // Go back to the starting point.
3029 while (play_tree_iter_up_step
3030 (mpctx->playtree_iter, 0, 1)
3031 != PLAY_TREE_ITER_END)
3032 /* NOP */ ;
3033 play_tree_free_list(mpctx->playtree->child, 1);
3034 play_tree_set_child(mpctx->playtree, e);
3035 pt_iter_goto_head(mpctx->playtree_iter);
3036 mpctx->stop_play = PT_NEXT_SRC;
3040 break;
3042 case MP_CMD_STOP:
3043 // Go back to the starting point.
3044 while (play_tree_iter_up_step
3045 (mpctx->playtree_iter, 0, 1) != PLAY_TREE_ITER_END)
3046 /* NOP */ ;
3047 mpctx->stop_play = PT_STOP;
3048 break;
3050 case MP_CMD_OSD_SHOW_PROGRESSION:{
3051 int len = get_time_length(mpctx);
3052 int pts = get_current_time(mpctx);
3053 set_osd_bar(mpctx, 0, "Position", 0, 100, get_percent_pos(mpctx));
3054 set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
3055 "%c %02d:%02d:%02d / %02d:%02d:%02d",
3056 mpctx->osd_function, pts/3600, (pts/60)%60, pts%60,
3057 len/3600, (len/60)%60, len%60);
3059 break;
3061 #ifdef CONFIG_RADIO
3062 case MP_CMD_RADIO_STEP_CHANNEL:
3063 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO) {
3064 int v = cmd->args[0].v.i;
3065 if (v > 0)
3066 radio_step_channel(mpctx->demuxer->stream,
3067 RADIO_CHANNEL_HIGHER);
3068 else
3069 radio_step_channel(mpctx->demuxer->stream,
3070 RADIO_CHANNEL_LOWER);
3071 if (radio_get_channel_name(mpctx->demuxer->stream)) {
3072 set_osd_tmsg(OSD_MSG_RADIO_CHANNEL, 1, osd_duration,
3073 "Channel: %s",
3074 radio_get_channel_name(mpctx->demuxer->stream));
3077 break;
3079 case MP_CMD_RADIO_SET_CHANNEL:
3080 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO) {
3081 radio_set_channel(mpctx->demuxer->stream, cmd->args[0].v.s);
3082 if (radio_get_channel_name(mpctx->demuxer->stream)) {
3083 set_osd_tmsg(OSD_MSG_RADIO_CHANNEL, 1, osd_duration,
3084 "Channel: %s",
3085 radio_get_channel_name(mpctx->demuxer->stream));
3088 break;
3090 case MP_CMD_RADIO_SET_FREQ:
3091 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO)
3092 radio_set_freq(mpctx->demuxer->stream, cmd->args[0].v.f);
3093 break;
3095 case MP_CMD_RADIO_STEP_FREQ:
3096 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO)
3097 radio_step_freq(mpctx->demuxer->stream, cmd->args[0].v.f);
3098 break;
3099 #endif
3101 #ifdef CONFIG_TV
3102 case MP_CMD_TV_START_SCAN:
3103 if (mpctx->file_format == DEMUXER_TYPE_TV)
3104 tv_start_scan((tvi_handle_t *) (mpctx->demuxer->priv),1);
3105 break;
3106 case MP_CMD_TV_SET_FREQ:
3107 if (mpctx->file_format == DEMUXER_TYPE_TV)
3108 tv_set_freq((tvi_handle_t *) (mpctx->demuxer->priv),
3109 cmd->args[0].v.f * 16.0);
3110 #ifdef CONFIG_PVR
3111 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
3112 pvr_set_freq (mpctx->stream, ROUND (cmd->args[0].v.f));
3113 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
3114 pvr_get_current_channelname (mpctx->stream),
3115 pvr_get_current_stationname (mpctx->stream));
3117 #endif /* CONFIG_PVR */
3118 break;
3120 case MP_CMD_TV_STEP_FREQ:
3121 if (mpctx->file_format == DEMUXER_TYPE_TV)
3122 tv_step_freq((tvi_handle_t *) (mpctx->demuxer->priv),
3123 cmd->args[0].v.f * 16.0);
3124 #ifdef CONFIG_PVR
3125 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
3126 pvr_force_freq_step (mpctx->stream, ROUND (cmd->args[0].v.f));
3127 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: f %d",
3128 pvr_get_current_channelname (mpctx->stream),
3129 pvr_get_current_frequency (mpctx->stream));
3131 #endif /* CONFIG_PVR */
3132 break;
3134 case MP_CMD_TV_SET_NORM:
3135 if (mpctx->file_format == DEMUXER_TYPE_TV)
3136 tv_set_norm((tvi_handle_t *) (mpctx->demuxer->priv),
3137 cmd->args[0].v.s);
3138 break;
3140 case MP_CMD_TV_STEP_CHANNEL:{
3141 if (mpctx->file_format == DEMUXER_TYPE_TV) {
3142 int v = cmd->args[0].v.i;
3143 if (v > 0) {
3144 tv_step_channel((tvi_handle_t *) (mpctx->
3145 demuxer->priv),
3146 TV_CHANNEL_HIGHER);
3147 } else {
3148 tv_step_channel((tvi_handle_t *) (mpctx->
3149 demuxer->priv),
3150 TV_CHANNEL_LOWER);
3152 if (tv_channel_list) {
3153 set_osd_tmsg(OSD_MSG_TV_CHANNEL, 1, osd_duration,
3154 "Channel: %s", tv_channel_current->name);
3155 //vo_osd_changed(OSDTYPE_SUBTITLE);
3158 #ifdef CONFIG_PVR
3159 else if (mpctx->stream &&
3160 mpctx->stream->type == STREAMTYPE_PVR) {
3161 pvr_set_channel_step (mpctx->stream, cmd->args[0].v.i);
3162 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
3163 pvr_get_current_channelname (mpctx->stream),
3164 pvr_get_current_stationname (mpctx->stream));
3166 #endif /* CONFIG_PVR */
3168 #ifdef CONFIG_DVBIN
3169 if (mpctx->stream->type == STREAMTYPE_DVB) {
3170 int dir;
3171 int v = cmd->args[0].v.i;
3173 mpctx->last_dvb_step = v;
3174 if (v > 0)
3175 dir = DVB_CHANNEL_HIGHER;
3176 else
3177 dir = DVB_CHANNEL_LOWER;
3180 if (dvb_step_channel(mpctx->stream, dir)) {
3181 mpctx->stop_play = PT_NEXT_ENTRY;
3182 mpctx->dvbin_reopen = 1;
3185 #endif /* CONFIG_DVBIN */
3186 break;
3188 case MP_CMD_TV_SET_CHANNEL:
3189 if (mpctx->file_format == DEMUXER_TYPE_TV) {
3190 tv_set_channel((tvi_handle_t *) (mpctx->demuxer->priv),
3191 cmd->args[0].v.s);
3192 if (tv_channel_list) {
3193 set_osd_tmsg(OSD_MSG_TV_CHANNEL, 1, osd_duration,
3194 "Channel: %s", tv_channel_current->name);
3195 //vo_osd_changed(OSDTYPE_SUBTITLE);
3198 #ifdef CONFIG_PVR
3199 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
3200 pvr_set_channel (mpctx->stream, cmd->args[0].v.s);
3201 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
3202 pvr_get_current_channelname (mpctx->stream),
3203 pvr_get_current_stationname (mpctx->stream));
3205 #endif /* CONFIG_PVR */
3206 break;
3208 #ifdef CONFIG_DVBIN
3209 case MP_CMD_DVB_SET_CHANNEL:
3210 if (mpctx->stream->type == STREAMTYPE_DVB) {
3211 mpctx->last_dvb_step = 1;
3213 if (dvb_set_channel(mpctx->stream, cmd->args[1].v.i,
3214 cmd->args[0].v.i)) {
3215 mpctx->stop_play = PT_NEXT_ENTRY;
3216 mpctx->dvbin_reopen = 1;
3219 break;
3220 #endif /* CONFIG_DVBIN */
3222 case MP_CMD_TV_LAST_CHANNEL:
3223 if (mpctx->file_format == DEMUXER_TYPE_TV) {
3224 tv_last_channel((tvi_handle_t *) (mpctx->demuxer->priv));
3225 if (tv_channel_list) {
3226 set_osd_tmsg(OSD_MSG_TV_CHANNEL, 1, osd_duration,
3227 "Channel: %s", tv_channel_current->name);
3228 //vo_osd_changed(OSDTYPE_SUBTITLE);
3231 #ifdef CONFIG_PVR
3232 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
3233 pvr_set_lastchannel (mpctx->stream);
3234 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
3235 pvr_get_current_channelname (mpctx->stream),
3236 pvr_get_current_stationname (mpctx->stream));
3238 #endif /* CONFIG_PVR */
3239 break;
3241 case MP_CMD_TV_STEP_NORM:
3242 if (mpctx->file_format == DEMUXER_TYPE_TV)
3243 tv_step_norm((tvi_handle_t *) (mpctx->demuxer->priv));
3244 break;
3246 case MP_CMD_TV_STEP_CHANNEL_LIST:
3247 if (mpctx->file_format == DEMUXER_TYPE_TV)
3248 tv_step_chanlist((tvi_handle_t *) (mpctx->demuxer->priv));
3249 break;
3250 #endif /* CONFIG_TV */
3251 case MP_CMD_TV_TELETEXT_ADD_DEC:
3252 if (mpctx->demuxer->teletext)
3253 teletext_control(mpctx->demuxer->teletext,TV_VBI_CONTROL_ADD_DEC,
3254 &(cmd->args[0].v.s));
3255 break;
3256 case MP_CMD_TV_TELETEXT_GO_LINK:
3257 if (mpctx->demuxer->teletext)
3258 teletext_control(mpctx->demuxer->teletext,TV_VBI_CONTROL_GO_LINK,
3259 &(cmd->args[0].v.i));
3260 break;
3262 case MP_CMD_SUB_LOAD:
3263 if (sh_video) {
3264 int n = mpctx->set_of_sub_size;
3265 add_subtitles(mpctx, cmd->args[0].v.s, sh_video->fps, 0);
3266 if (n != mpctx->set_of_sub_size) {
3267 mpctx->sub_counts[SUB_SOURCE_SUBS]++;
3268 ++mpctx->global_sub_size;
3271 break;
3273 case MP_CMD_SUB_REMOVE:
3274 if (sh_video) {
3275 int v = cmd->args[0].v.i;
3276 if (v < 0) {
3277 remove_subtitle_range(mpctx, 0, mpctx->set_of_sub_size);
3278 } else if (v < mpctx->set_of_sub_size) {
3279 remove_subtitle_range(mpctx, v, 1);
3282 break;
3284 case MP_CMD_GET_SUB_VISIBILITY:
3285 if (sh_video) {
3286 mp_msg(MSGT_GLOBAL, MSGL_INFO,
3287 "ANS_SUB_VISIBILITY=%d\n", sub_visibility);
3289 break;
3291 case MP_CMD_SCREENSHOT:
3292 if (mpctx->video_out && mpctx->video_out->config_ok) {
3293 mp_msg(MSGT_CPLAYER, MSGL_INFO, "sending VFCTRL_SCREENSHOT!\n");
3294 if (CONTROL_OK !=
3295 ((vf_instance_t *) sh_video->vfilter)->
3296 control(sh_video->vfilter, VFCTRL_SCREENSHOT,
3297 &cmd->args[0].v.i))
3298 mp_msg(MSGT_CPLAYER, MSGL_INFO, "failed (forgot -vf screenshot?)\n");
3300 break;
3302 case MP_CMD_VF_CHANGE_RECTANGLE:
3303 if (!sh_video)
3304 break;
3305 set_rectangle(sh_video, cmd->args[0].v.i, cmd->args[1].v.i);
3306 break;
3308 case MP_CMD_GET_TIME_LENGTH:{
3309 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_LENGTH=%.2f\n",
3310 get_time_length(mpctx));
3312 break;
3314 case MP_CMD_GET_FILENAME:{
3315 char *inf = get_metadata(mpctx, META_NAME);
3316 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_FILENAME='%s'\n", inf);
3317 talloc_free(inf);
3319 break;
3321 case MP_CMD_GET_VIDEO_CODEC:{
3322 char *inf = get_metadata(mpctx, META_VIDEO_CODEC);
3323 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_VIDEO_CODEC='%s'\n", inf);
3324 talloc_free(inf);
3326 break;
3328 case MP_CMD_GET_VIDEO_BITRATE:{
3329 char *inf = get_metadata(mpctx, META_VIDEO_BITRATE);
3330 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_VIDEO_BITRATE='%s'\n", inf);
3331 talloc_free(inf);
3333 break;
3335 case MP_CMD_GET_VIDEO_RESOLUTION:{
3336 char *inf = get_metadata(mpctx, META_VIDEO_RESOLUTION);
3337 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_VIDEO_RESOLUTION='%s'\n", inf);
3338 talloc_free(inf);
3340 break;
3342 case MP_CMD_GET_AUDIO_CODEC:{
3343 char *inf = get_metadata(mpctx, META_AUDIO_CODEC);
3344 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_AUDIO_CODEC='%s'\n", inf);
3345 talloc_free(inf);
3347 break;
3349 case MP_CMD_GET_AUDIO_BITRATE:{
3350 char *inf = get_metadata(mpctx, META_AUDIO_BITRATE);
3351 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_AUDIO_BITRATE='%s'\n", inf);
3352 talloc_free(inf);
3354 break;
3356 case MP_CMD_GET_AUDIO_SAMPLES:{
3357 char *inf = get_metadata(mpctx, META_AUDIO_SAMPLES);
3358 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_AUDIO_SAMPLES='%s'\n", inf);
3359 talloc_free(inf);
3361 break;
3363 case MP_CMD_GET_META_TITLE:{
3364 char *inf = get_metadata(mpctx, META_INFO_TITLE);
3365 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_TITLE='%s'\n", inf);
3366 talloc_free(inf);
3368 break;
3370 case MP_CMD_GET_META_ARTIST:{
3371 char *inf = get_metadata(mpctx, META_INFO_ARTIST);
3372 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_ARTIST='%s'\n", inf);
3373 talloc_free(inf);
3375 break;
3377 case MP_CMD_GET_META_ALBUM:{
3378 char *inf = get_metadata(mpctx, META_INFO_ALBUM);
3379 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_ALBUM='%s'\n", inf);
3380 talloc_free(inf);
3382 break;
3384 case MP_CMD_GET_META_YEAR:{
3385 char *inf = get_metadata(mpctx, META_INFO_YEAR);
3386 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_YEAR='%s'\n", inf);
3387 talloc_free(inf);
3389 break;
3391 case MP_CMD_GET_META_COMMENT:{
3392 char *inf = get_metadata(mpctx, META_INFO_COMMENT);
3393 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_COMMENT='%s'\n", inf);
3394 talloc_free(inf);
3396 break;
3398 case MP_CMD_GET_META_TRACK:{
3399 char *inf = get_metadata(mpctx, META_INFO_TRACK);
3400 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_TRACK='%s'\n", inf);
3401 talloc_free(inf);
3403 break;
3405 case MP_CMD_GET_META_GENRE:{
3406 char *inf = get_metadata(mpctx, META_INFO_GENRE);
3407 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_GENRE='%s'\n", inf);
3408 talloc_free(inf);
3410 break;
3412 case MP_CMD_GET_VO_FULLSCREEN:
3413 if (mpctx->video_out && mpctx->video_out->config_ok)
3414 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_VO_FULLSCREEN=%d\n", vo_fs);
3415 break;
3417 case MP_CMD_GET_PERCENT_POS:
3418 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_PERCENT_POSITION=%d\n",
3419 get_percent_pos(mpctx));
3420 break;
3422 case MP_CMD_GET_TIME_POS:{
3423 float pos = get_current_time(mpctx);
3424 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_TIME_POSITION=%.1f\n", pos);
3426 break;
3428 case MP_CMD_RUN:
3429 #ifndef __MINGW32__
3430 if (!fork()) {
3431 execl("/bin/sh", "sh", "-c", cmd->args[0].v.s, NULL);
3432 exit(0);
3434 #endif
3435 break;
3437 case MP_CMD_KEYDOWN_EVENTS:
3438 mplayer_put_key(mpctx->key_fifo, cmd->args[0].v.i);
3439 break;
3441 case MP_CMD_SET_MOUSE_POS:{
3442 int pointer_x, pointer_y;
3443 double dx, dy;
3444 pointer_x = cmd->args[0].v.i;
3445 pointer_y = cmd->args[1].v.i;
3446 rescale_input_coordinates(mpctx, pointer_x, pointer_y, &dx, &dy);
3447 #ifdef CONFIG_DVDNAV
3448 if (mpctx->stream->type == STREAMTYPE_DVDNAV
3449 && dx > 0.0 && dy > 0.0) {
3450 int button = -1;
3451 pointer_x = (int) (dx * (double) sh_video->disp_w);
3452 pointer_y = (int) (dy * (double) sh_video->disp_h);
3453 mp_dvdnav_update_mouse_pos(mpctx->stream,
3454 pointer_x, pointer_y, &button);
3455 if (opts->osd_level > 1 && button > 0)
3456 set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
3457 "Selected button number %d", button);
3459 #endif
3460 #ifdef CONFIG_MENU
3461 if (use_menu && dx >= 0.0 && dy >= 0.0)
3462 menu_update_mouse_pos(dx, dy);
3463 #endif
3465 break;
3467 #ifdef CONFIG_DVDNAV
3468 case MP_CMD_DVDNAV:{
3469 int button = -1;
3470 int i;
3471 mp_command_type command = 0;
3472 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
3473 break;
3475 for (i = 0; mp_dvdnav_bindings[i].name; i++)
3476 if (cmd->args[0].v.s &&
3477 !strcasecmp (cmd->args[0].v.s,
3478 mp_dvdnav_bindings[i].name))
3479 command = mp_dvdnav_bindings[i].cmd;
3481 mp_dvdnav_handle_input(mpctx->stream,command,&button);
3482 if (opts->osd_level > 1 && button > 0)
3483 set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
3484 "Selected button number %d", button);
3486 break;
3488 case MP_CMD_SWITCH_TITLE:
3489 if (mpctx->stream->type == STREAMTYPE_DVDNAV)
3490 mp_dvdnav_switch_title(mpctx->stream, cmd->args[0].v.i);
3491 break;
3493 #endif
3495 case MP_CMD_AF_SWITCH:
3496 if (sh_audio)
3498 af_uninit(mpctx->mixer.afilter);
3499 af_init(mpctx->mixer.afilter);
3501 case MP_CMD_AF_ADD:
3502 case MP_CMD_AF_DEL:
3503 if (!sh_audio)
3504 break;
3506 char* af_args = strdup(cmd->args[0].v.s);
3507 char* af_commands = af_args;
3508 char* af_command;
3509 af_instance_t* af;
3510 while ((af_command = strsep(&af_commands, ",")) != NULL)
3512 if (cmd->id == MP_CMD_AF_DEL)
3514 af = af_get(mpctx->mixer.afilter, af_command);
3515 if (af != NULL)
3516 af_remove(mpctx->mixer.afilter, af);
3518 else
3519 af_add(mpctx->mixer.afilter, af_command);
3521 reinit_audio_chain(mpctx);
3522 free(af_args);
3524 break;
3525 case MP_CMD_AF_CLR:
3526 if (!sh_audio)
3527 break;
3528 af_uninit(mpctx->mixer.afilter);
3529 af_init(mpctx->mixer.afilter);
3530 reinit_audio_chain(mpctx);
3531 break;
3532 case MP_CMD_AF_CMDLINE:
3533 if (sh_audio) {
3534 af_instance_t *af = af_get(sh_audio->afilter, cmd->args[0].v.s);
3535 if (!af) {
3536 mp_msg(MSGT_CPLAYER, MSGL_WARN,
3537 "Filter '%s' not found in chain.\n", cmd->args[0].v.s);
3538 break;
3540 af->control(af, AF_CONTROL_COMMAND_LINE, cmd->args[1].v.s);
3541 af_reinit(sh_audio->afilter, af);
3543 break;
3545 default:
3546 mp_msg(MSGT_CPLAYER, MSGL_V,
3547 "Received unknown cmd %s\n", cmd->name);
3550 switch (cmd->pausing) {
3551 case 1: // "pausing"
3552 pause_player(mpctx);
3553 break;
3554 case 3: // "pausing_toggle"
3555 if (mpctx->paused)
3556 unpause_player(mpctx);
3557 else
3558 pause_player(mpctx);
3559 break;