audio: Remove fixed decode_audio() return size limit (MAX_OUTBURST)
[mplayer/glamo.git] / command.c
blob99387640a5ad7b8dd668d8bc318ee74344c95b78
1 #include <stdlib.h>
2 #include <inttypes.h>
3 #include <unistd.h>
4 #include <string.h>
5 #include <stdbool.h>
7 #include "config.h"
8 #include "talloc.h"
9 #include "command.h"
10 #include "input/input.h"
11 #include "stream/stream.h"
12 #include "libmpdemux/demuxer.h"
13 #include "libmpdemux/stheader.h"
14 #include "codec-cfg.h"
15 #include "mplayer.h"
16 #include "libvo/sub.h"
17 #include "m_option.h"
18 #include "m_property.h"
19 #include "help_mp.h"
20 #include "metadata.h"
21 #include "libmpcodecs/vf.h"
22 #include "libmpcodecs/vd.h"
23 #include "mp_osd.h"
24 #include "libvo/video_out.h"
25 #include "libvo/font_load.h"
26 #include "playtree.h"
27 #include "libao2/audio_out.h"
28 #include "mpcommon.h"
29 #include "mixer.h"
30 #include "libmpcodecs/dec_video.h"
31 #include "libmpcodecs/dec_teletext.h"
32 #include "vobsub.h"
33 #include "spudec.h"
34 #include "get_path.h"
35 #include "ass_mp.h"
36 #include "stream/tv.h"
37 #include "stream/stream_radio.h"
38 #include "stream/pvr.h"
39 #ifdef CONFIG_DVBIN
40 #include "stream/dvbin.h"
41 #endif
42 #ifdef CONFIG_DVDREAD
43 #include "stream/stream_dvd.h"
44 #endif
45 #include "stream/stream_dvdnav.h"
46 #include "m_struct.h"
47 #include "libmenu/menu.h"
49 #include "mp_core.h"
50 #include "mp_fifo.h"
51 #include "libavutil/avstring.h"
53 #define ROUND(x) ((int)((x)<0 ? (x)-0.5 : (x)+0.5))
55 extern int use_menu;
57 static void rescale_input_coordinates(struct MPContext *mpctx, int ix, int iy,
58 double *dx, double *dy)
60 struct MPOpts *opts = &mpctx->opts;
61 struct vo *vo = mpctx->video_out;
62 //remove the borders, if any, and rescale to the range [0,1],[0,1]
63 if (vo_fs) { //we are in full-screen mode
64 if (opts->vo_screenwidth > vo->dwidth) //there are borders along the x axis
65 ix -= (opts->vo_screenwidth - vo->dwidth) / 2;
66 if (opts->vo_screenheight > vo->dheight) //there are borders along the y axis (usual way)
67 iy -= (opts->vo_screenheight - vo->dheight) / 2;
69 if (ix < 0 || ix > vo->dwidth) {
70 *dx = *dy = -1.0;
71 return;
72 } //we are on one of the borders
73 if (iy < 0 || iy > vo->dheight) {
74 *dx = *dy = -1.0;
75 return;
76 } //we are on one of the borders
79 *dx = (double) ix / (double) vo->dwidth;
80 *dy = (double) iy / (double) vo->dheight;
82 mp_msg(MSGT_CPLAYER, MSGL_V,
83 "\r\nrescaled coordinates: %.3f, %.3f, screen (%d x %d), vodisplay: (%d, %d), fullscreen: %d\r\n",
84 *dx, *dy, opts->vo_screenwidth, opts->vo_screenheight, vo->dwidth,
85 vo->dheight, vo_fs);
88 static int sub_source_by_pos(MPContext *mpctx, int pos)
90 int source = -1;
91 int top = -1;
92 int i;
93 for (i = 0; i < SUB_SOURCES; i++) {
94 int j = mpctx->global_sub_indices[i];
95 if ((j >= 0) && (j > top) && (pos >= j)) {
96 source = i;
97 top = j;
100 return source;
103 static int sub_source(MPContext *mpctx)
105 return sub_source_by_pos(mpctx, mpctx->global_sub_pos);
109 * \brief Log the currently displayed subtitle to a file
111 * Logs the current or last displayed subtitle together with filename
112 * and time information to ~/.mplayer/subtitle_log
114 * Intended purpose is to allow convenient marking of bogus subtitles
115 * which need to be fixed while watching the movie.
118 static void log_sub(struct MPContext *mpctx)
120 char *fname;
121 FILE *f;
122 int i;
124 if (subdata == NULL || vo_sub_last == NULL)
125 return;
126 fname = get_path("subtitle_log");
127 f = fopen(fname, "a");
128 if (!f)
129 return;
130 fprintf(f, "----------------------------------------------------------\n");
131 if (subdata->sub_uses_time) {
132 fprintf(f,
133 "N: %s S: %02ld:%02ld:%02ld.%02ld E: %02ld:%02ld:%02ld.%02ld\n",
134 mpctx->filename, vo_sub_last->start / 360000,
135 (vo_sub_last->start / 6000) % 60,
136 (vo_sub_last->start / 100) % 60, vo_sub_last->start % 100,
137 vo_sub_last->end / 360000, (vo_sub_last->end / 6000) % 60,
138 (vo_sub_last->end / 100) % 60, vo_sub_last->end % 100);
139 } else {
140 fprintf(f, "N: %s S: %ld E: %ld\n", mpctx->filename,
141 vo_sub_last->start, vo_sub_last->end);
143 for (i = 0; i < vo_sub_last->lines; i++) {
144 fprintf(f, "%s\n", vo_sub_last->text[i]);
146 fclose(f);
150 /// \defgroup Properties
151 ///@{
153 /// \defgroup GeneralProperties General properties
154 /// \ingroup Properties
155 ///@{
157 /// OSD level (RW)
158 static int mp_property_osdlevel(m_option_t *prop, int action, void *arg,
159 MPContext *mpctx)
161 return m_property_choice(prop, action, arg, &mpctx->opts.osd_level);
164 /// Loop (RW)
165 static int mp_property_loop(m_option_t *prop, int action, void *arg,
166 MPContext *mpctx)
168 struct MPOpts *opts = &mpctx->opts;
169 switch (action) {
170 case M_PROPERTY_PRINT:
171 if (!arg) return M_PROPERTY_ERROR;
172 if (opts->loop_times < 0)
173 *(char**)arg = strdup("off");
174 else if (opts->loop_times == 0)
175 *(char**)arg = strdup("inf");
176 else
177 break;
178 return M_PROPERTY_OK;
180 return m_property_int_range(prop, action, arg, &opts->loop_times);
183 /// Playback speed (RW)
184 static int mp_property_playback_speed(m_option_t *prop, int action,
185 void *arg, MPContext *mpctx)
187 struct MPOpts *opts = &mpctx->opts;
188 switch (action) {
189 case M_PROPERTY_SET:
190 if (!arg)
191 return M_PROPERTY_ERROR;
192 M_PROPERTY_CLAMP(prop, *(float *) arg);
193 opts->playback_speed = *(float *) arg;
194 build_afilter_chain(mpctx, mpctx->sh_audio, &ao_data);
195 return M_PROPERTY_OK;
196 case M_PROPERTY_STEP_UP:
197 case M_PROPERTY_STEP_DOWN:
198 opts->playback_speed += (arg ? *(float *) arg : 0.1) *
199 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
200 M_PROPERTY_CLAMP(prop, opts->playback_speed);
201 build_afilter_chain(mpctx, mpctx->sh_audio, &ao_data);
202 return M_PROPERTY_OK;
204 return m_property_float_range(prop, action, arg, &opts->playback_speed);
207 /// filename with path (RO)
208 static int mp_property_path(m_option_t *prop, int action, void *arg,
209 MPContext *mpctx)
211 return m_property_string_ro(prop, action, arg, mpctx->filename);
214 /// filename without path (RO)
215 static int mp_property_filename(m_option_t *prop, int action, void *arg,
216 MPContext *mpctx)
218 char *f;
219 if (!mpctx->filename)
220 return M_PROPERTY_UNAVAILABLE;
221 if (((f = strrchr(mpctx->filename, '/'))
222 || (f = strrchr(mpctx->filename, '\\'))) && f[1])
223 f++;
224 else
225 f = mpctx->filename;
226 return m_property_string_ro(prop, action, arg, f);
229 /// Demuxer name (RO)
230 static int mp_property_demuxer(m_option_t *prop, int action, void *arg,
231 MPContext *mpctx)
233 if (!mpctx->demuxer)
234 return M_PROPERTY_UNAVAILABLE;
235 return m_property_string_ro(prop, action, arg,
236 (char *) mpctx->demuxer->desc->name);
239 /// Position in the stream (RW)
240 static int mp_property_stream_pos(m_option_t *prop, int action, void *arg,
241 MPContext *mpctx)
243 if (!mpctx->demuxer || !mpctx->demuxer->stream)
244 return M_PROPERTY_UNAVAILABLE;
245 if (!arg)
246 return M_PROPERTY_ERROR;
247 switch (action) {
248 case M_PROPERTY_GET:
249 *(off_t *) arg = stream_tell(mpctx->demuxer->stream);
250 return M_PROPERTY_OK;
251 case M_PROPERTY_SET:
252 M_PROPERTY_CLAMP(prop, *(off_t *) arg);
253 stream_seek(mpctx->demuxer->stream, *(off_t *) arg);
254 return M_PROPERTY_OK;
256 return M_PROPERTY_NOT_IMPLEMENTED;
259 /// Stream start offset (RO)
260 static int mp_property_stream_start(m_option_t *prop, int action,
261 void *arg, MPContext *mpctx)
263 if (!mpctx->demuxer || !mpctx->demuxer->stream)
264 return M_PROPERTY_UNAVAILABLE;
265 switch (action) {
266 case M_PROPERTY_GET:
267 *(off_t *) arg = mpctx->demuxer->stream->start_pos;
268 return M_PROPERTY_OK;
270 return M_PROPERTY_NOT_IMPLEMENTED;
273 /// Stream end offset (RO)
274 static int mp_property_stream_end(m_option_t *prop, int action, void *arg,
275 MPContext *mpctx)
277 if (!mpctx->demuxer || !mpctx->demuxer->stream)
278 return M_PROPERTY_UNAVAILABLE;
279 switch (action) {
280 case M_PROPERTY_GET:
281 *(off_t *) arg = mpctx->demuxer->stream->end_pos;
282 return M_PROPERTY_OK;
284 return M_PROPERTY_NOT_IMPLEMENTED;
287 /// Stream length (RO)
288 static int mp_property_stream_length(m_option_t *prop, int action,
289 void *arg, MPContext *mpctx)
291 if (!mpctx->demuxer || !mpctx->demuxer->stream)
292 return M_PROPERTY_UNAVAILABLE;
293 switch (action) {
294 case M_PROPERTY_GET:
295 *(off_t *) arg =
296 mpctx->demuxer->stream->end_pos - mpctx->demuxer->stream->start_pos;
297 return M_PROPERTY_OK;
299 return M_PROPERTY_NOT_IMPLEMENTED;
302 /// Media length in seconds (RO)
303 static int mp_property_length(m_option_t *prop, int action, void *arg,
304 MPContext *mpctx)
306 double len;
308 if (!mpctx->demuxer ||
309 !(int) (len = demuxer_get_time_length(mpctx->demuxer)))
310 return M_PROPERTY_UNAVAILABLE;
312 return m_property_time_ro(prop, action, arg, len);
315 /// Current position in percent (RW)
316 static int mp_property_percent_pos(m_option_t *prop, int action,
317 void *arg, MPContext *mpctx) {
318 int pos;
320 if (!mpctx->demuxer)
321 return M_PROPERTY_UNAVAILABLE;
323 switch(action) {
324 case M_PROPERTY_SET:
325 if(!arg) return M_PROPERTY_ERROR;
326 M_PROPERTY_CLAMP(prop, *(int*)arg);
327 pos = *(int*)arg;
328 break;
329 case M_PROPERTY_STEP_UP:
330 case M_PROPERTY_STEP_DOWN:
331 pos = demuxer_get_percent_pos(mpctx->demuxer);
332 pos += (arg ? *(int*)arg : 10) *
333 (action == M_PROPERTY_STEP_UP ? 1 : -1);
334 M_PROPERTY_CLAMP(prop, pos);
335 break;
336 default:
337 return m_property_int_ro(prop, action, arg,
338 demuxer_get_percent_pos(mpctx->demuxer));
341 mpctx->abs_seek_pos = SEEK_ABSOLUTE | SEEK_FACTOR;
342 mpctx->rel_seek_secs = pos / 100.0;
343 return M_PROPERTY_OK;
346 /// Current position in seconds (RW)
347 static int mp_property_time_pos(m_option_t *prop, int action,
348 void *arg, MPContext *mpctx) {
349 if (!(mpctx->sh_video || (mpctx->sh_audio && mpctx->audio_out)))
350 return M_PROPERTY_UNAVAILABLE;
352 switch(action) {
353 case M_PROPERTY_SET:
354 if(!arg) return M_PROPERTY_ERROR;
355 M_PROPERTY_CLAMP(prop, *(double*)arg);
356 mpctx->abs_seek_pos = SEEK_ABSOLUTE;
357 mpctx->rel_seek_secs = *(double*)arg;
358 return M_PROPERTY_OK;
359 case M_PROPERTY_STEP_UP:
360 case M_PROPERTY_STEP_DOWN:
361 mpctx->rel_seek_secs += (arg ? *(double*)arg : 10.0) *
362 (action == M_PROPERTY_STEP_UP ? 1.0 : -1.0);
363 return M_PROPERTY_OK;
365 return m_property_time_ro(prop, action, arg,
366 mpctx->sh_video ? mpctx->sh_video->pts :
367 playing_audio_pts(mpctx));
370 /// Current chapter (RW)
371 static int mp_property_chapter(m_option_t *prop, int action, void *arg,
372 MPContext *mpctx)
374 struct MPOpts *opts = &mpctx->opts;
375 int chapter = -1;
376 int step_all;
377 char *chapter_name = NULL;
379 if (mpctx->demuxer)
380 chapter = get_current_chapter(mpctx);
381 if (chapter < 0)
382 return M_PROPERTY_UNAVAILABLE;
384 switch (action) {
385 case M_PROPERTY_GET:
386 if (!arg)
387 return M_PROPERTY_ERROR;
388 *(int *) arg = chapter;
389 return M_PROPERTY_OK;
390 case M_PROPERTY_PRINT: {
391 if (!arg)
392 return M_PROPERTY_ERROR;
393 chapter_name = chapter_display_name(mpctx, chapter);
394 if (!chapter_name)
395 return M_PROPERTY_UNAVAILABLE;
396 *(char **) arg = chapter_name;
397 return M_PROPERTY_OK;
399 case M_PROPERTY_SET:
400 if (!arg)
401 return M_PROPERTY_ERROR;
402 M_PROPERTY_CLAMP(prop, *(int*)arg);
403 step_all = *(int *)arg - chapter;
404 chapter += step_all;
405 break;
406 case M_PROPERTY_STEP_UP:
407 case M_PROPERTY_STEP_DOWN: {
408 step_all = (arg && *(int*)arg != 0 ? *(int*)arg : 1)
409 * (action == M_PROPERTY_STEP_UP ? 1 : -1);
410 chapter += step_all;
411 if (chapter < 0)
412 chapter = 0;
413 break;
415 default:
416 return M_PROPERTY_NOT_IMPLEMENTED;
419 double next_pts = 0;
420 chapter = seek_chapter(mpctx, chapter, &next_pts, &chapter_name);
421 mpctx->rel_seek_secs = 0;
422 mpctx->abs_seek_pos = 0;
423 if (chapter >= 0) {
424 if (next_pts > -1.0) {
425 mpctx->abs_seek_pos = SEEK_ABSOLUTE;
426 mpctx->rel_seek_secs = next_pts;
428 if (chapter_name)
429 set_osd_msg(OSD_MSG_TEXT, 1, opts->osd_duration,
430 _("Chapter: (%d) %s"), chapter + 1, chapter_name);
432 else if (step_all > 0)
433 mpctx->rel_seek_secs = 1000000000.;
434 else
435 set_osd_msg(OSD_MSG_TEXT, 1, opts->osd_duration,
436 _("Chapter: (%d) %s"), 0, _("unknown"));
437 if (chapter_name)
438 talloc_free(chapter_name);
439 return M_PROPERTY_OK;
442 /// Number of chapters in file
443 static int mp_property_chapters(m_option_t *prop, int action, void *arg,
444 MPContext *mpctx)
446 if (!mpctx->demuxer)
447 return M_PROPERTY_UNAVAILABLE;
448 if (mpctx->demuxer->num_chapters == 0)
449 stream_control(mpctx->demuxer->stream, STREAM_CTRL_GET_NUM_CHAPTERS, &mpctx->demuxer->num_chapters);
450 return m_property_int_ro(prop, action, arg, mpctx->demuxer->num_chapters);
453 /// Current dvd angle (RW)
454 static int mp_property_angle(m_option_t *prop, int action, void *arg,
455 MPContext *mpctx)
457 struct MPOpts *opts = &mpctx->opts;
458 int angle = -1;
459 int angles;
460 char *angle_name = NULL;
462 if (mpctx->demuxer)
463 angle = demuxer_get_current_angle(mpctx->demuxer);
464 if (angle < 0)
465 return M_PROPERTY_UNAVAILABLE;
466 angles = demuxer_angles_count(mpctx->demuxer);
467 if (angles <= 1)
468 return M_PROPERTY_UNAVAILABLE;
470 switch (action) {
471 case M_PROPERTY_GET:
472 if (!arg)
473 return M_PROPERTY_ERROR;
474 *(int *) arg = angle;
475 return M_PROPERTY_OK;
476 case M_PROPERTY_PRINT: {
477 if (!arg)
478 return M_PROPERTY_ERROR;
479 angle_name = calloc(1, 64);
480 if (!angle_name)
481 return M_PROPERTY_UNAVAILABLE;
482 snprintf(angle_name, 64, "%d/%d", angle, angles);
483 *(char **) arg = angle_name;
484 return M_PROPERTY_OK;
486 case M_PROPERTY_SET:
487 if (!arg)
488 return M_PROPERTY_ERROR;
489 angle = *(int *)arg;
490 M_PROPERTY_CLAMP(prop, angle);
491 break;
492 case M_PROPERTY_STEP_UP:
493 case M_PROPERTY_STEP_DOWN: {
494 int step = 0;
495 if(arg)
496 step = *(int*)arg;
497 if(!step)
498 step = 1;
499 step *= (action == M_PROPERTY_STEP_UP ? 1 : -1);
500 angle += step;
501 if (angle < 1) //cycle
502 angle = angles;
503 break;
505 default:
506 return M_PROPERTY_NOT_IMPLEMENTED;
508 angle = demuxer_set_angle(mpctx->demuxer, angle);
509 set_osd_msg(OSD_MSG_TEXT, 1, opts->osd_duration,
510 _("Angle: %d/%d"), angle, angles);
511 if (angle_name)
512 free(angle_name);
513 return M_PROPERTY_OK;
516 /// Demuxer meta data
517 static int mp_property_metadata(m_option_t *prop, int action, void *arg,
518 MPContext *mpctx) {
519 m_property_action_t* ka;
520 char* meta;
521 static const m_option_t key_type =
522 { "metadata", NULL, CONF_TYPE_STRING, 0, 0, 0, NULL };
523 if (!mpctx->demuxer)
524 return M_PROPERTY_UNAVAILABLE;
526 switch(action) {
527 case M_PROPERTY_GET:
528 if(!arg) return M_PROPERTY_ERROR;
529 *(char***)arg = mpctx->demuxer->info;
530 return M_PROPERTY_OK;
531 case M_PROPERTY_KEY_ACTION:
532 if(!arg) return M_PROPERTY_ERROR;
533 ka = arg;
534 if(!(meta = demux_info_get(mpctx->demuxer,ka->key)))
535 return M_PROPERTY_UNKNOWN;
536 switch(ka->action) {
537 case M_PROPERTY_GET:
538 if(!ka->arg) return M_PROPERTY_ERROR;
539 *(char**)ka->arg = meta;
540 return M_PROPERTY_OK;
541 case M_PROPERTY_GET_TYPE:
542 if(!ka->arg) return M_PROPERTY_ERROR;
543 *(m_option_t**)ka->arg = &key_type;
544 return M_PROPERTY_OK;
547 return M_PROPERTY_NOT_IMPLEMENTED;
550 static int mp_property_pause(m_option_t *prop, int action, void *arg,
551 void *ctx)
553 MPContext *mpctx = ctx;
555 switch (action) {
556 case M_PROPERTY_SET:
557 if (!arg)
558 return M_PROPERTY_ERROR;
559 if (mpctx->paused == (bool)*(int *) arg)
560 return M_PROPERTY_OK;
561 case M_PROPERTY_STEP_UP:
562 case M_PROPERTY_STEP_DOWN:
563 if (mpctx->paused) {
564 unpause_player(mpctx);
565 mpctx->osd_function = OSD_PLAY;
567 else {
568 pause_player(mpctx);
569 mpctx->osd_function = OSD_PAUSE;
571 return M_PROPERTY_OK;
572 default:
573 return m_property_flag(prop, action, arg, &mpctx->paused);
578 ///@}
580 /// \defgroup AudioProperties Audio properties
581 /// \ingroup Properties
582 ///@{
584 /// Volume (RW)
585 static int mp_property_volume(m_option_t *prop, int action, void *arg,
586 MPContext *mpctx)
589 if (!mpctx->sh_audio)
590 return M_PROPERTY_UNAVAILABLE;
592 switch (action) {
593 case M_PROPERTY_GET:
594 if (!arg)
595 return M_PROPERTY_ERROR;
596 mixer_getbothvolume(&mpctx->mixer, arg);
597 return M_PROPERTY_OK;
598 case M_PROPERTY_PRINT:{
599 float vol;
600 if (!arg)
601 return M_PROPERTY_ERROR;
602 mixer_getbothvolume(&mpctx->mixer, &vol);
603 return m_property_float_range(prop, action, arg, &vol);
605 case M_PROPERTY_STEP_UP:
606 case M_PROPERTY_STEP_DOWN:
607 case M_PROPERTY_SET:
608 break;
609 default:
610 return M_PROPERTY_NOT_IMPLEMENTED;
613 if (mpctx->edl_muted)
614 return M_PROPERTY_DISABLED;
615 mpctx->user_muted = 0;
617 switch (action) {
618 case M_PROPERTY_SET:
619 if (!arg)
620 return M_PROPERTY_ERROR;
621 M_PROPERTY_CLAMP(prop, *(float *) arg);
622 mixer_setvolume(&mpctx->mixer, *(float *) arg, *(float *) arg);
623 return M_PROPERTY_OK;
624 case M_PROPERTY_STEP_UP:
625 if (arg && *(float *) arg <= 0)
626 mixer_decvolume(&mpctx->mixer);
627 else
628 mixer_incvolume(&mpctx->mixer);
629 return M_PROPERTY_OK;
630 case M_PROPERTY_STEP_DOWN:
631 if (arg && *(float *) arg <= 0)
632 mixer_incvolume(&mpctx->mixer);
633 else
634 mixer_decvolume(&mpctx->mixer);
635 return M_PROPERTY_OK;
637 return M_PROPERTY_NOT_IMPLEMENTED;
640 /// Mute (RW)
641 static int mp_property_mute(m_option_t *prop, int action, void *arg,
642 MPContext *mpctx)
645 if (!mpctx->sh_audio)
646 return M_PROPERTY_UNAVAILABLE;
648 switch (action) {
649 case M_PROPERTY_SET:
650 if (mpctx->edl_muted)
651 return M_PROPERTY_DISABLED;
652 if (!arg)
653 return M_PROPERTY_ERROR;
654 if ((!!*(int *) arg) != mpctx->mixer.muted)
655 mixer_mute(&mpctx->mixer);
656 mpctx->user_muted = mpctx->mixer.muted;
657 return M_PROPERTY_OK;
658 case M_PROPERTY_STEP_UP:
659 case M_PROPERTY_STEP_DOWN:
660 if (mpctx->edl_muted)
661 return M_PROPERTY_DISABLED;
662 mixer_mute(&mpctx->mixer);
663 mpctx->user_muted = mpctx->mixer.muted;
664 return M_PROPERTY_OK;
665 case M_PROPERTY_PRINT:
666 if (!arg)
667 return M_PROPERTY_ERROR;
668 if (mpctx->edl_muted) {
669 *(char **) arg = strdup(_("enabled (EDL)"));
670 return M_PROPERTY_OK;
672 default:
673 return m_property_flag(prop, action, arg, &mpctx->mixer.muted);
678 /// Audio delay (RW)
679 static int mp_property_audio_delay(m_option_t *prop, int action,
680 void *arg, MPContext *mpctx)
682 if (!(mpctx->sh_audio && mpctx->sh_video))
683 return M_PROPERTY_UNAVAILABLE;
684 switch (action) {
685 case M_PROPERTY_SET:
686 case M_PROPERTY_STEP_UP:
687 case M_PROPERTY_STEP_DOWN: {
688 int ret;
689 float delay = audio_delay;
690 ret = m_property_delay(prop, action, arg, &audio_delay);
691 if (ret != M_PROPERTY_OK)
692 return ret;
693 if (mpctx->sh_audio)
694 mpctx->delay -= audio_delay - delay;
696 return M_PROPERTY_OK;
697 default:
698 return m_property_delay(prop, action, arg, &audio_delay);
702 /// Audio codec tag (RO)
703 static int mp_property_audio_format(m_option_t *prop, int action,
704 void *arg, MPContext *mpctx)
706 if (!mpctx->sh_audio)
707 return M_PROPERTY_UNAVAILABLE;
708 return m_property_int_ro(prop, action, arg, mpctx->sh_audio->format);
711 /// Audio codec name (RO)
712 static int mp_property_audio_codec(m_option_t *prop, int action,
713 void *arg, MPContext *mpctx)
715 if (!mpctx->sh_audio || !mpctx->sh_audio->codec)
716 return M_PROPERTY_UNAVAILABLE;
717 return m_property_string_ro(prop, action, arg, mpctx->sh_audio->codec->name);
720 /// Audio bitrate (RO)
721 static int mp_property_audio_bitrate(m_option_t *prop, int action,
722 void *arg, MPContext *mpctx)
724 if (!mpctx->sh_audio)
725 return M_PROPERTY_UNAVAILABLE;
726 return m_property_bitrate(prop, action, arg, mpctx->sh_audio->i_bps);
729 /// Samplerate (RO)
730 static int mp_property_samplerate(m_option_t *prop, int action, void *arg,
731 MPContext *mpctx)
733 if (!mpctx->sh_audio)
734 return M_PROPERTY_UNAVAILABLE;
735 switch(action) {
736 case M_PROPERTY_PRINT:
737 if(!arg) return M_PROPERTY_ERROR;
738 *(char**)arg = malloc(16);
739 sprintf(*(char**)arg,"%d kHz",mpctx->sh_audio->samplerate/1000);
740 return M_PROPERTY_OK;
742 return m_property_int_ro(prop, action, arg, mpctx->sh_audio->samplerate);
745 /// Number of channels (RO)
746 static int mp_property_channels(m_option_t *prop, int action, void *arg,
747 MPContext *mpctx)
749 if (!mpctx->sh_audio)
750 return M_PROPERTY_UNAVAILABLE;
751 switch (action) {
752 case M_PROPERTY_PRINT:
753 if (!arg)
754 return M_PROPERTY_ERROR;
755 switch (mpctx->sh_audio->channels) {
756 case 1:
757 *(char **) arg = strdup("mono");
758 break;
759 case 2:
760 *(char **) arg = strdup("stereo");
761 break;
762 default:
763 *(char **) arg = malloc(32);
764 sprintf(*(char **) arg, "%d channels", mpctx->sh_audio->channels);
766 return M_PROPERTY_OK;
768 return m_property_int_ro(prop, action, arg, mpctx->sh_audio->channels);
771 /// Balance (RW)
772 static int mp_property_balance(m_option_t *prop, int action, void *arg,
773 MPContext *mpctx)
775 float bal;
777 if (!mpctx->sh_audio || mpctx->sh_audio->channels < 2)
778 return M_PROPERTY_UNAVAILABLE;
780 switch (action) {
781 case M_PROPERTY_GET:
782 if (!arg)
783 return M_PROPERTY_ERROR;
784 mixer_getbalance(&mpctx->mixer, arg);
785 return M_PROPERTY_OK;
786 case M_PROPERTY_PRINT: {
787 char** str = arg;
788 if (!arg)
789 return M_PROPERTY_ERROR;
790 mixer_getbalance(&mpctx->mixer, &bal);
791 if (bal == 0.f)
792 *str = strdup("center");
793 else if (bal == -1.f)
794 *str = strdup("left only");
795 else if (bal == 1.f)
796 *str = strdup("right only");
797 else {
798 unsigned right = (bal + 1.f) / 2.f * 100.f;
799 *str = malloc(sizeof("left xxx%, right xxx%"));
800 sprintf(*str, "left %d%%, right %d%%", 100 - right, right);
802 return M_PROPERTY_OK;
804 case M_PROPERTY_STEP_UP:
805 case M_PROPERTY_STEP_DOWN:
806 mixer_getbalance(&mpctx->mixer, &bal);
807 bal += (arg ? *(float*)arg : .1f) *
808 (action == M_PROPERTY_STEP_UP ? 1.f : -1.f);
809 M_PROPERTY_CLAMP(prop, bal);
810 mixer_setbalance(&mpctx->mixer, bal);
811 return M_PROPERTY_OK;
812 case M_PROPERTY_SET:
813 if (!arg)
814 return M_PROPERTY_ERROR;
815 M_PROPERTY_CLAMP(prop, *(float*)arg);
816 mixer_setbalance(&mpctx->mixer, *(float*)arg);
817 return M_PROPERTY_OK;
819 return M_PROPERTY_NOT_IMPLEMENTED;
822 /// Selected audio id (RW)
823 static int mp_property_audio(m_option_t *prop, int action, void *arg,
824 MPContext *mpctx)
826 struct MPOpts *opts = &mpctx->opts;
827 int current_id = -1, tmp;
829 switch (action) {
830 case M_PROPERTY_GET:
831 if (!mpctx->sh_audio)
832 return M_PROPERTY_UNAVAILABLE;
833 if (!arg)
834 return M_PROPERTY_ERROR;
835 *(int *) arg = opts->audio_id;
836 return M_PROPERTY_OK;
837 case M_PROPERTY_PRINT:
838 if (!mpctx->sh_audio)
839 return M_PROPERTY_UNAVAILABLE;
840 if (!arg)
841 return M_PROPERTY_ERROR;
843 if (opts->audio_id < 0)
844 *(char **) arg = strdup(_("disabled"));
845 else {
846 char lang[40] = _("unknown");
847 sh_audio_t* sh = mpctx->sh_audio;
848 if (sh && sh->lang)
849 av_strlcpy(lang, sh->lang, 40);
850 #ifdef CONFIG_DVDREAD
851 else if (mpctx->stream->type == STREAMTYPE_DVD) {
852 int code = dvd_lang_from_aid(mpctx->stream, opts->audio_id);
853 if (code) {
854 lang[0] = code >> 8;
855 lang[1] = code;
856 lang[2] = 0;
859 #endif
861 #ifdef CONFIG_DVDNAV
862 else if (mpctx->stream->type == STREAMTYPE_DVDNAV)
863 mp_dvdnav_lang_from_aid(mpctx->stream, opts->audio_id, lang);
864 #endif
865 *(char **) arg = malloc(64);
866 snprintf(*(char **) arg, 64, "(%d) %s", opts->audio_id, lang);
868 return M_PROPERTY_OK;
870 case M_PROPERTY_STEP_UP:
871 case M_PROPERTY_SET:
872 if (!mpctx->demuxer)
873 return M_PROPERTY_UNAVAILABLE;
874 if (action == M_PROPERTY_SET && arg)
875 tmp = *((int *) arg);
876 else
877 tmp = -1;
878 current_id = mpctx->demuxer->audio->id;
879 opts->audio_id = demuxer_switch_audio(mpctx->demuxer, tmp);
880 if (opts->audio_id == -2
881 || (opts->audio_id > -1
882 && mpctx->demuxer->audio->id != current_id && current_id != -2))
883 uninit_player(mpctx, INITIALIZED_AO | INITIALIZED_ACODEC);
884 if (opts->audio_id > -1 && mpctx->demuxer->audio->id != current_id) {
885 sh_audio_t *sh2;
886 sh2 = mpctx->demuxer->a_streams[mpctx->demuxer->audio->id];
887 if (sh2) {
888 sh2->ds = mpctx->demuxer->audio;
889 mpctx->sh_audio = sh2;
890 reinit_audio_chain(mpctx);
893 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_AUDIO_TRACK=%d\n", opts->audio_id);
894 return M_PROPERTY_OK;
895 default:
896 return M_PROPERTY_NOT_IMPLEMENTED;
901 /// Selected video id (RW)
902 static int mp_property_video(m_option_t *prop, int action, void *arg,
903 MPContext *mpctx)
905 struct MPOpts *opts = &mpctx->opts;
906 int current_id = -1, tmp;
908 switch (action) {
909 case M_PROPERTY_GET:
910 if (!mpctx->sh_video)
911 return M_PROPERTY_UNAVAILABLE;
912 if (!arg)
913 return M_PROPERTY_ERROR;
914 *(int *) arg = opts->video_id;
915 return M_PROPERTY_OK;
916 case M_PROPERTY_PRINT:
917 if (!mpctx->sh_video)
918 return M_PROPERTY_UNAVAILABLE;
919 if (!arg)
920 return M_PROPERTY_ERROR;
922 if (opts->video_id < 0)
923 *(char **) arg = strdup(_("disabled"));
924 else {
925 char lang[40] = _("unknown");
926 *(char **) arg = malloc(64);
927 snprintf(*(char **) arg, 64, "(%d) %s", opts->video_id, lang);
929 return M_PROPERTY_OK;
931 case M_PROPERTY_STEP_UP:
932 case M_PROPERTY_SET:
933 current_id = mpctx->demuxer->video->id;
934 if (action == M_PROPERTY_SET && arg)
935 tmp = *((int *) arg);
936 else
937 tmp = -1;
938 opts->video_id = demuxer_switch_video(mpctx->demuxer, tmp);
939 if (opts->video_id == -2
940 || (opts->video_id > -1 && mpctx->demuxer->video->id != current_id
941 && current_id != -2))
942 uninit_player(mpctx, INITIALIZED_VCODEC |
943 (mpctx->opts.fixed_vo && opts->video_id != -2 ? 0 : INITIALIZED_VO));
944 if (opts->video_id > -1 && mpctx->demuxer->video->id != current_id) {
945 sh_video_t *sh2;
946 sh2 = mpctx->demuxer->v_streams[mpctx->demuxer->video->id];
947 if (sh2) {
948 sh2->ds = mpctx->demuxer->video;
949 mpctx->sh_video = sh2;
950 reinit_video_chain(mpctx);
953 mp_msg(MSGT_IDENTIFY, MSGL_INFO, "ID_VIDEO_TRACK=%d\n", opts->video_id);
954 return M_PROPERTY_OK;
956 default:
957 return M_PROPERTY_NOT_IMPLEMENTED;
961 static int mp_property_program(m_option_t *prop, int action, void *arg,
962 MPContext *mpctx)
964 demux_program_t prog;
966 switch (action) {
967 case M_PROPERTY_STEP_UP:
968 case M_PROPERTY_SET:
969 if (action == M_PROPERTY_SET && arg)
970 prog.progid = *((int *) arg);
971 else
972 prog.progid = -1;
973 if (demux_control
974 (mpctx->demuxer, DEMUXER_CTRL_IDENTIFY_PROGRAM,
975 &prog) == DEMUXER_CTRL_NOTIMPL)
976 return M_PROPERTY_ERROR;
978 if (prog.aid < 0 && prog.vid < 0) {
979 mp_msg(MSGT_CPLAYER, MSGL_ERR, "Selected program contains no audio or video streams!\n");
980 return M_PROPERTY_ERROR;
982 mp_property_do("switch_audio", M_PROPERTY_SET, &prog.aid, mpctx);
983 mp_property_do("switch_video", M_PROPERTY_SET, &prog.vid, mpctx);
984 return M_PROPERTY_OK;
986 default:
987 return M_PROPERTY_NOT_IMPLEMENTED;
991 ///@}
993 /// \defgroup VideoProperties Video properties
994 /// \ingroup Properties
995 ///@{
997 /// Fullscreen state (RW)
998 static int mp_property_fullscreen(m_option_t *prop, int action, void *arg,
999 MPContext *mpctx)
1002 if (!mpctx->video_out)
1003 return M_PROPERTY_UNAVAILABLE;
1005 switch (action) {
1006 case M_PROPERTY_SET:
1007 if (!arg)
1008 return M_PROPERTY_ERROR;
1009 M_PROPERTY_CLAMP(prop, *(int *) arg);
1010 if (vo_fs == !!*(int *) arg)
1011 return M_PROPERTY_OK;
1012 case M_PROPERTY_STEP_UP:
1013 case M_PROPERTY_STEP_DOWN:
1014 if (mpctx->video_out->config_ok)
1015 vo_control(mpctx->video_out, VOCTRL_FULLSCREEN, 0);
1016 mpctx->opts.fullscreen = vo_fs;
1017 return M_PROPERTY_OK;
1018 default:
1019 return m_property_flag(prop, action, arg, &vo_fs);
1023 static int mp_property_deinterlace(m_option_t *prop, int action,
1024 void *arg, MPContext *mpctx)
1026 int deinterlace;
1027 vf_instance_t *vf;
1028 if (!mpctx->sh_video || !mpctx->sh_video->vfilter)
1029 return M_PROPERTY_UNAVAILABLE;
1030 vf = mpctx->sh_video->vfilter;
1031 switch (action) {
1032 case M_PROPERTY_GET:
1033 if (!arg)
1034 return M_PROPERTY_ERROR;
1035 vf->control(vf, VFCTRL_GET_DEINTERLACE, arg);
1036 return M_PROPERTY_OK;
1037 case M_PROPERTY_SET:
1038 if (!arg)
1039 return M_PROPERTY_ERROR;
1040 M_PROPERTY_CLAMP(prop, *(int *) arg);
1041 vf->control(vf, VFCTRL_SET_DEINTERLACE, arg);
1042 return M_PROPERTY_OK;
1043 case M_PROPERTY_STEP_UP:
1044 case M_PROPERTY_STEP_DOWN:
1045 vf->control(vf, VFCTRL_GET_DEINTERLACE, &deinterlace);
1046 deinterlace = !deinterlace;
1047 vf->control(vf, VFCTRL_SET_DEINTERLACE, &deinterlace);
1048 return M_PROPERTY_OK;
1050 int value = 0;
1051 vf->control(vf, VFCTRL_GET_DEINTERLACE, &value);
1052 return m_property_flag_ro(prop, action, arg, value);
1055 static int mp_property_yuv_colorspace(m_option_t *prop, int action,
1056 void *arg, MPContext *mpctx)
1058 if (!mpctx->sh_video || !mpctx->sh_video->vfilter)
1059 return M_PROPERTY_UNAVAILABLE;
1061 struct vf_instance *vf = mpctx->sh_video->vfilter;
1062 int colorspace;
1063 switch (action) {
1064 case M_PROPERTY_GET:
1065 if (!arg)
1066 return M_PROPERTY_ERROR;
1067 if (vf->control(vf, VFCTRL_GET_YUV_COLORSPACE, arg) != true)
1068 return M_PROPERTY_UNAVAILABLE;
1069 return M_PROPERTY_OK;
1070 case M_PROPERTY_PRINT:
1071 if (!arg)
1072 return M_PROPERTY_ERROR;
1073 if (vf->control(vf, VFCTRL_GET_YUV_COLORSPACE, &colorspace) != true)
1074 return M_PROPERTY_UNAVAILABLE;
1075 char * const names[] = {"BT.601 (SD)", "BT.709 (HD)", "SMPTE-240M"};
1076 if (colorspace < 0 || colorspace >= sizeof(names) / sizeof(names[0]))
1077 *(char **)arg = strdup("Unknown");
1078 else
1079 *(char**)arg = strdup(names[colorspace]);
1080 return M_PROPERTY_OK;
1081 case M_PROPERTY_SET:
1082 if (!arg)
1083 return M_PROPERTY_ERROR;
1084 M_PROPERTY_CLAMP(prop, *(int *) arg);
1085 vf->control(vf, VFCTRL_SET_YUV_COLORSPACE, arg);
1086 return M_PROPERTY_OK;
1087 case M_PROPERTY_STEP_UP:;
1088 if (vf->control(vf, VFCTRL_GET_YUV_COLORSPACE, &colorspace) != true)
1089 return M_PROPERTY_UNAVAILABLE;
1090 colorspace += 1;
1091 vf->control(vf, VFCTRL_SET_YUV_COLORSPACE, &colorspace);
1092 return M_PROPERTY_OK;
1094 return M_PROPERTY_NOT_IMPLEMENTED;
1097 /// Panscan (RW)
1098 static int mp_property_panscan(m_option_t *prop, int action, void *arg,
1099 MPContext *mpctx)
1102 if (!mpctx->video_out
1103 || vo_control(mpctx->video_out, VOCTRL_GET_PANSCAN, NULL) != VO_TRUE)
1104 return M_PROPERTY_UNAVAILABLE;
1106 switch (action) {
1107 case M_PROPERTY_SET:
1108 if (!arg)
1109 return M_PROPERTY_ERROR;
1110 M_PROPERTY_CLAMP(prop, *(float *) arg);
1111 vo_panscan = *(float *) arg;
1112 vo_control(mpctx->video_out, VOCTRL_SET_PANSCAN, NULL);
1113 return M_PROPERTY_OK;
1114 case M_PROPERTY_STEP_UP:
1115 case M_PROPERTY_STEP_DOWN:
1116 vo_panscan += (arg ? *(float *) arg : 0.1) *
1117 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
1118 if (vo_panscan > 1)
1119 vo_panscan = 1;
1120 else if (vo_panscan < 0)
1121 vo_panscan = 0;
1122 vo_control(mpctx->video_out, VOCTRL_SET_PANSCAN, NULL);
1123 return M_PROPERTY_OK;
1124 default:
1125 return m_property_float_range(prop, action, arg, &vo_panscan);
1129 /// Helper to set vo flags.
1130 /** \ingroup PropertyImplHelper
1132 static int mp_property_vo_flag(m_option_t *prop, int action, void *arg,
1133 int vo_ctrl, int *vo_var, MPContext *mpctx)
1136 if (!mpctx->video_out)
1137 return M_PROPERTY_UNAVAILABLE;
1139 switch (action) {
1140 case M_PROPERTY_SET:
1141 if (!arg)
1142 return M_PROPERTY_ERROR;
1143 M_PROPERTY_CLAMP(prop, *(int *) arg);
1144 if (*vo_var == !!*(int *) arg)
1145 return M_PROPERTY_OK;
1146 case M_PROPERTY_STEP_UP:
1147 case M_PROPERTY_STEP_DOWN:
1148 if (mpctx->video_out->config_ok)
1149 vo_control(mpctx->video_out, vo_ctrl, 0);
1150 return M_PROPERTY_OK;
1151 default:
1152 return m_property_flag(prop, action, arg, vo_var);
1156 /// Window always on top (RW)
1157 static int mp_property_ontop(m_option_t *prop, int action, void *arg,
1158 MPContext *mpctx)
1160 return mp_property_vo_flag(prop, action, arg, VOCTRL_ONTOP,
1161 &mpctx->opts.vo_ontop, mpctx);
1164 /// Display in the root window (RW)
1165 static int mp_property_rootwin(m_option_t *prop, int action, void *arg,
1166 MPContext *mpctx)
1168 return mp_property_vo_flag(prop, action, arg, VOCTRL_ROOTWIN,
1169 &vo_rootwin, mpctx);
1172 /// Show window borders (RW)
1173 static int mp_property_border(m_option_t *prop, int action, void *arg,
1174 MPContext *mpctx)
1176 return mp_property_vo_flag(prop, action, arg, VOCTRL_BORDER,
1177 &vo_border, mpctx);
1180 /// Framedropping state (RW)
1181 static int mp_property_framedropping(m_option_t *prop, int action,
1182 void *arg, MPContext *mpctx)
1185 if (!mpctx->sh_video)
1186 return M_PROPERTY_UNAVAILABLE;
1188 switch (action) {
1189 case M_PROPERTY_PRINT:
1190 if (!arg)
1191 return M_PROPERTY_ERROR;
1192 *(char **) arg = strdup(frame_dropping == 1 ? _("enabled") :
1193 (frame_dropping == 2 ? _("hard") :
1194 _("disabled")));
1195 return M_PROPERTY_OK;
1196 default:
1197 return m_property_choice(prop, action, arg, &frame_dropping);
1201 /// Color settings, try to use vf/vo then fall back on TV. (RW)
1202 static int mp_property_gamma(m_option_t *prop, int action, void *arg,
1203 MPContext *mpctx)
1205 int *gamma = (int *)((char *)&mpctx->opts + (int)prop->priv);
1206 int r, val;
1208 if (!mpctx->sh_video)
1209 return M_PROPERTY_UNAVAILABLE;
1211 if (gamma[0] == 1000) {
1212 gamma[0] = 0;
1213 get_video_colors(mpctx->sh_video, prop->name, gamma);
1216 switch (action) {
1217 case M_PROPERTY_SET:
1218 if (!arg)
1219 return M_PROPERTY_ERROR;
1220 M_PROPERTY_CLAMP(prop, *(int *) arg);
1221 *gamma = *(int *) arg;
1222 r = set_video_colors(mpctx->sh_video, prop->name, *gamma);
1223 if (r <= 0)
1224 break;
1225 return r;
1226 case M_PROPERTY_GET:
1227 if (get_video_colors(mpctx->sh_video, prop->name, &val) > 0) {
1228 if (!arg)
1229 return M_PROPERTY_ERROR;
1230 *(int *)arg = val;
1231 return M_PROPERTY_OK;
1233 break;
1234 case M_PROPERTY_STEP_UP:
1235 case M_PROPERTY_STEP_DOWN:
1236 *gamma += (arg ? *(int *) arg : 1) *
1237 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
1238 M_PROPERTY_CLAMP(prop, *gamma);
1239 r = set_video_colors(mpctx->sh_video, prop->name, *gamma);
1240 if (r <= 0)
1241 break;
1242 return r;
1243 default:
1244 return M_PROPERTY_NOT_IMPLEMENTED;
1247 #ifdef CONFIG_TV
1248 if (mpctx->demuxer->type == DEMUXER_TYPE_TV) {
1249 int l = strlen(prop->name);
1250 char tv_prop[3 + l + 1];
1251 sprintf(tv_prop, "tv_%s", prop->name);
1252 return mp_property_do(tv_prop, action, arg, mpctx);
1254 #endif
1256 return M_PROPERTY_UNAVAILABLE;
1259 /// VSync (RW)
1260 static int mp_property_vsync(m_option_t *prop, int action, void *arg,
1261 MPContext *mpctx)
1263 return m_property_flag(prop, action, arg, &vo_vsync);
1266 /// Video codec tag (RO)
1267 static int mp_property_video_format(m_option_t *prop, int action,
1268 void *arg, MPContext *mpctx)
1270 char* meta;
1271 if (!mpctx->sh_video)
1272 return M_PROPERTY_UNAVAILABLE;
1273 switch(action) {
1274 case M_PROPERTY_PRINT:
1275 if (!arg)
1276 return M_PROPERTY_ERROR;
1277 switch(mpctx->sh_video->format) {
1278 case 0x10000001:
1279 meta = strdup ("mpeg1"); break;
1280 case 0x10000002:
1281 meta = strdup ("mpeg2"); break;
1282 case 0x10000004:
1283 meta = strdup ("mpeg4"); break;
1284 case 0x10000005:
1285 meta = strdup ("h264"); break;
1286 default:
1287 if(mpctx->sh_video->format >= 0x20202020) {
1288 meta = malloc(5);
1289 sprintf (meta, "%.4s", (char *) &mpctx->sh_video->format);
1290 } else {
1291 meta = malloc(20);
1292 sprintf (meta, "0x%08X", mpctx->sh_video->format);
1295 *(char**)arg = meta;
1296 return M_PROPERTY_OK;
1298 return m_property_int_ro(prop, action, arg, mpctx->sh_video->format);
1301 /// Video codec name (RO)
1302 static int mp_property_video_codec(m_option_t *prop, int action,
1303 void *arg, MPContext *mpctx)
1305 if (!mpctx->sh_video || !mpctx->sh_video->codec)
1306 return M_PROPERTY_UNAVAILABLE;
1307 return m_property_string_ro(prop, action, arg, mpctx->sh_video->codec->name);
1311 /// Video bitrate (RO)
1312 static int mp_property_video_bitrate(m_option_t *prop, int action,
1313 void *arg, MPContext *mpctx)
1315 if (!mpctx->sh_video)
1316 return M_PROPERTY_UNAVAILABLE;
1317 return m_property_bitrate(prop, action, arg, mpctx->sh_video->i_bps);
1320 /// Video display width (RO)
1321 static int mp_property_width(m_option_t *prop, int action, void *arg,
1322 MPContext *mpctx)
1324 if (!mpctx->sh_video)
1325 return M_PROPERTY_UNAVAILABLE;
1326 return m_property_int_ro(prop, action, arg, mpctx->sh_video->disp_w);
1329 /// Video display height (RO)
1330 static int mp_property_height(m_option_t *prop, int action, void *arg,
1331 MPContext *mpctx)
1333 if (!mpctx->sh_video)
1334 return M_PROPERTY_UNAVAILABLE;
1335 return m_property_int_ro(prop, action, arg, mpctx->sh_video->disp_h);
1338 /// Video fps (RO)
1339 static int mp_property_fps(m_option_t *prop, int action, void *arg,
1340 MPContext *mpctx)
1342 if (!mpctx->sh_video)
1343 return M_PROPERTY_UNAVAILABLE;
1344 return m_property_float_ro(prop, action, arg, mpctx->sh_video->fps);
1347 /// Video aspect (RO)
1348 static int mp_property_aspect(m_option_t *prop, int action, void *arg,
1349 MPContext *mpctx)
1351 if (!mpctx->sh_video)
1352 return M_PROPERTY_UNAVAILABLE;
1353 return m_property_float_ro(prop, action, arg, mpctx->sh_video->aspect);
1356 ///@}
1358 /// \defgroup SubProprties Subtitles properties
1359 /// \ingroup Properties
1360 ///@{
1362 /// Text subtitle position (RW)
1363 static int mp_property_sub_pos(m_option_t *prop, int action, void *arg,
1364 MPContext *mpctx)
1366 if (!mpctx->sh_video)
1367 return M_PROPERTY_UNAVAILABLE;
1369 switch (action) {
1370 case M_PROPERTY_SET:
1371 if (!arg)
1372 return M_PROPERTY_ERROR;
1373 case M_PROPERTY_STEP_UP:
1374 case M_PROPERTY_STEP_DOWN:
1375 vo_osd_changed(OSDTYPE_SUBTITLE);
1376 default:
1377 return m_property_int_range(prop, action, arg, &sub_pos);
1381 /// Selected subtitles (RW)
1382 static int mp_property_sub(m_option_t *prop, int action, void *arg,
1383 MPContext *mpctx)
1385 struct MPOpts *opts = &mpctx->opts;
1386 demux_stream_t *const d_sub = mpctx->d_sub;
1387 const int global_sub_size = mpctx->global_sub_size;
1388 int source = -1, reset_spu = 0;
1389 char *sub_name;
1391 if (global_sub_size <= 0)
1392 return M_PROPERTY_UNAVAILABLE;
1394 switch (action) {
1395 case M_PROPERTY_GET:
1396 if (!arg)
1397 return M_PROPERTY_ERROR;
1398 *(int *) arg = mpctx->global_sub_pos;
1399 return M_PROPERTY_OK;
1400 case M_PROPERTY_PRINT:
1401 if (!arg)
1402 return M_PROPERTY_ERROR;
1403 *(char **) arg = malloc(64);
1404 (*(char **) arg)[63] = 0;
1405 sub_name = 0;
1406 if (subdata)
1407 sub_name = subdata->filename;
1408 #ifdef CONFIG_ASS
1409 if (ass_track && ass_track->name)
1410 sub_name = ass_track->name;
1411 #endif
1412 if (sub_name) {
1413 char *tmp, *tmp2;
1414 tmp = sub_name;
1415 if ((tmp2 = strrchr(tmp, '/')))
1416 tmp = tmp2 + 1;
1418 snprintf(*(char **) arg, 63, "(%d) %s%s",
1419 mpctx->set_of_sub_pos + 1,
1420 strlen(tmp) < 20 ? "" : "...",
1421 strlen(tmp) < 20 ? tmp : tmp + strlen(tmp) - 19);
1422 return M_PROPERTY_OK;
1424 #ifdef CONFIG_DVDNAV
1425 if (mpctx->stream->type == STREAMTYPE_DVDNAV) {
1426 if (vo_spudec && opts->sub_id >= 0) {
1427 unsigned char lang[3];
1428 if (mp_dvdnav_lang_from_sid(mpctx->stream, opts->sub_id, lang)) {
1429 snprintf(*(char **) arg, 63, "(%d) %s", opts->sub_id, lang);
1430 return M_PROPERTY_OK;
1434 #endif
1436 if ((mpctx->demuxer->type == DEMUXER_TYPE_MATROSKA
1437 || mpctx->demuxer->type == DEMUXER_TYPE_LAVF
1438 || mpctx->demuxer->type == DEMUXER_TYPE_LAVF_PREFERRED
1439 || mpctx->demuxer->type == DEMUXER_TYPE_OGG)
1440 && d_sub && d_sub->sh && opts->sub_id >= 0) {
1441 const char* lang = ((sh_sub_t*)d_sub->sh)->lang;
1442 if (!lang) lang = _("unknown");
1443 snprintf(*(char **) arg, 63, "(%d) %s", opts->sub_id, lang);
1444 return M_PROPERTY_OK;
1447 if (vo_vobsub && vobsub_id >= 0) {
1448 const char *language = _("unknown");
1449 language = vobsub_get_id(vo_vobsub, (unsigned int) vobsub_id);
1450 snprintf(*(char **) arg, 63, "(%d) %s",
1451 vobsub_id, language ? language : _("unknown"));
1452 return M_PROPERTY_OK;
1454 #ifdef CONFIG_DVDREAD
1455 if (vo_spudec && mpctx->stream->type == STREAMTYPE_DVD
1456 && opts->sub_id >= 0) {
1457 char lang[3];
1458 int code = dvd_lang_from_sid(mpctx->stream, opts->sub_id);
1459 lang[0] = code >> 8;
1460 lang[1] = code;
1461 lang[2] = 0;
1462 snprintf(*(char **) arg, 63, "(%d) %s", opts->sub_id, lang);
1463 return M_PROPERTY_OK;
1465 #endif
1466 if (opts->sub_id >= 0) {
1467 snprintf(*(char **) arg, 63, "(%d) %s", opts->sub_id, _("unknown"));
1468 return M_PROPERTY_OK;
1470 snprintf(*(char **) arg, 63, _("disabled"));
1471 return M_PROPERTY_OK;
1473 case M_PROPERTY_SET:
1474 if (!arg)
1475 return M_PROPERTY_ERROR;
1476 if (*(int *) arg < -1)
1477 *(int *) arg = -1;
1478 else if (*(int *) arg >= global_sub_size)
1479 *(int *) arg = global_sub_size - 1;
1480 mpctx->global_sub_pos = *(int *) arg;
1481 break;
1482 case M_PROPERTY_STEP_UP:
1483 mpctx->global_sub_pos += 2;
1484 mpctx->global_sub_pos =
1485 (mpctx->global_sub_pos % (global_sub_size + 1)) - 1;
1486 break;
1487 case M_PROPERTY_STEP_DOWN:
1488 mpctx->global_sub_pos += global_sub_size + 1;
1489 mpctx->global_sub_pos =
1490 (mpctx->global_sub_pos % (global_sub_size + 1)) - 1;
1491 break;
1492 default:
1493 return M_PROPERTY_NOT_IMPLEMENTED;
1496 if (mpctx->global_sub_pos >= 0)
1497 source = sub_source(mpctx);
1499 mp_msg(MSGT_CPLAYER, MSGL_DBG3,
1500 "subtitles: %d subs, (v@%d s@%d d@%d), @%d, source @%d\n",
1501 global_sub_size,
1502 mpctx->global_sub_indices[SUB_SOURCE_VOBSUB],
1503 mpctx->global_sub_indices[SUB_SOURCE_SUBS],
1504 mpctx->global_sub_indices[SUB_SOURCE_DEMUX],
1505 mpctx->global_sub_pos, source);
1507 mpctx->set_of_sub_pos = -1;
1508 subdata = NULL;
1510 vobsub_id = -1;
1511 opts->sub_id = -1;
1512 if (d_sub) {
1513 if (d_sub->id > -2)
1514 reset_spu = 1;
1515 d_sub->id = -2;
1517 #ifdef CONFIG_ASS
1518 ass_track = 0;
1519 #endif
1521 if (source == SUB_SOURCE_VOBSUB) {
1522 vobsub_id = vobsub_get_id_by_index(vo_vobsub, mpctx->global_sub_pos - mpctx->global_sub_indices[SUB_SOURCE_VOBSUB]);
1523 } else if (source == SUB_SOURCE_SUBS) {
1524 mpctx->set_of_sub_pos =
1525 mpctx->global_sub_pos - mpctx->global_sub_indices[SUB_SOURCE_SUBS];
1526 #ifdef CONFIG_ASS
1527 if (opts->ass_enabled && mpctx->set_of_ass_tracks[mpctx->set_of_sub_pos])
1528 ass_track = mpctx->set_of_ass_tracks[mpctx->set_of_sub_pos];
1529 else
1530 #endif
1532 subdata = mpctx->set_of_subtitles[mpctx->set_of_sub_pos];
1533 vo_osd_changed(OSDTYPE_SUBTITLE);
1535 } else if (source == SUB_SOURCE_DEMUX) {
1536 opts->sub_id =
1537 mpctx->global_sub_pos - mpctx->global_sub_indices[SUB_SOURCE_DEMUX];
1538 if (d_sub && opts->sub_id < MAX_S_STREAMS) {
1539 int i = 0;
1540 // default: assume 1:1 mapping of sid and stream id
1541 d_sub->id = opts->sub_id;
1542 d_sub->sh = mpctx->demuxer->s_streams[d_sub->id];
1543 ds_free_packs(d_sub);
1544 for (i = 0; i < MAX_S_STREAMS; i++) {
1545 sh_sub_t *sh = mpctx->demuxer->s_streams[i];
1546 if (sh && sh->sid == opts->sub_id) {
1547 d_sub->id = i;
1548 d_sub->sh = sh;
1549 break;
1552 if (d_sub->sh && d_sub->id >= 0) {
1553 sh_sub_t *sh = d_sub->sh;
1554 if (sh->type == 'v')
1555 init_vo_spudec(mpctx);
1556 #ifdef CONFIG_ASS
1557 else if (opts->ass_enabled)
1558 ass_track = sh->ass_track;
1559 #endif
1560 } else {
1561 d_sub->id = -2;
1562 d_sub->sh = NULL;
1566 #ifdef CONFIG_DVDREAD
1567 if (vo_spudec
1568 && (mpctx->stream->type == STREAMTYPE_DVD
1569 || mpctx->stream->type == STREAMTYPE_DVDNAV)
1570 && opts->sub_id < 0 && reset_spu) {
1571 d_sub->id = -2;
1572 d_sub->sh = NULL;
1574 #endif
1576 update_subtitles(mpctx, &mpctx->opts, mpctx->sh_video, 0, 0, d_sub, 1);
1578 return M_PROPERTY_OK;
1581 /// Selected sub source (RW)
1582 static int mp_property_sub_source(m_option_t *prop, int action, void *arg,
1583 MPContext *mpctx)
1585 int source;
1586 if (!mpctx->sh_video || mpctx->global_sub_size <= 0)
1587 return M_PROPERTY_UNAVAILABLE;
1589 switch (action) {
1590 case M_PROPERTY_GET:
1591 if (!arg)
1592 return M_PROPERTY_ERROR;
1593 *(int *) arg = sub_source(mpctx);
1594 return M_PROPERTY_OK;
1595 case M_PROPERTY_PRINT:
1596 if (!arg)
1597 return M_PROPERTY_ERROR;
1598 *(char **) arg = malloc(64);
1599 (*(char **) arg)[63] = 0;
1600 switch (sub_source(mpctx))
1602 case SUB_SOURCE_SUBS:
1603 snprintf(*(char **) arg, 63, _("file"));
1604 break;
1605 case SUB_SOURCE_VOBSUB:
1606 snprintf(*(char **) arg, 63, _("vobsub"));
1607 break;
1608 case SUB_SOURCE_DEMUX:
1609 snprintf(*(char **) arg, 63, _("embedded"));
1610 break;
1611 default:
1612 snprintf(*(char **) arg, 63, _("disabled"));
1614 return M_PROPERTY_OK;
1615 case M_PROPERTY_SET:
1616 if (!arg)
1617 return M_PROPERTY_ERROR;
1618 M_PROPERTY_CLAMP(prop, *(int*)arg);
1619 if (*(int *) arg < 0)
1620 mpctx->global_sub_pos = -1;
1621 else if (*(int *) arg != sub_source(mpctx)) {
1622 if (*(int *) arg != sub_source_by_pos(mpctx, mpctx->global_sub_indices[*(int *) arg]))
1623 return M_PROPERTY_UNAVAILABLE;
1624 mpctx->global_sub_pos = mpctx->global_sub_indices[*(int *) arg];
1626 break;
1627 case M_PROPERTY_STEP_UP:
1628 case M_PROPERTY_STEP_DOWN: {
1629 int step_all = (arg && *(int*)arg != 0 ? *(int*)arg : 1)
1630 * (action == M_PROPERTY_STEP_UP ? 1 : -1);
1631 int step = (step_all > 0) ? 1 : -1;
1632 int cur_source = sub_source(mpctx);
1633 source = cur_source;
1634 while (step_all) {
1635 source += step;
1636 if (source >= SUB_SOURCES)
1637 source = -1;
1638 else if (source < -1)
1639 source = SUB_SOURCES - 1;
1640 if (source == cur_source || source == -1 ||
1641 source == sub_source_by_pos(mpctx, mpctx->global_sub_indices[source]))
1642 step_all -= step;
1644 if (source == cur_source)
1645 return M_PROPERTY_OK;
1646 if (source == -1)
1647 mpctx->global_sub_pos = -1;
1648 else
1649 mpctx->global_sub_pos = mpctx->global_sub_indices[source];
1650 break;
1652 default:
1653 return M_PROPERTY_NOT_IMPLEMENTED;
1655 --mpctx->global_sub_pos;
1656 return mp_property_sub(prop, M_PROPERTY_STEP_UP, NULL, mpctx);
1659 /// Selected subtitles from specific source (RW)
1660 static int mp_property_sub_by_type(m_option_t *prop, int action, void *arg,
1661 MPContext *mpctx)
1663 int source, is_cur_source, offset;
1664 if (!mpctx->sh_video || mpctx->global_sub_size <= 0)
1665 return M_PROPERTY_UNAVAILABLE;
1667 if (!strcmp(prop->name, "sub_file"))
1668 source = SUB_SOURCE_SUBS;
1669 else if (!strcmp(prop->name, "sub_vob"))
1670 source = SUB_SOURCE_VOBSUB;
1671 else if (!strcmp(prop->name, "sub_demux"))
1672 source = SUB_SOURCE_DEMUX;
1673 else
1674 return M_PROPERTY_ERROR;
1676 offset = mpctx->global_sub_indices[source];
1677 if (offset < 0 || source != sub_source_by_pos(mpctx, offset))
1678 return M_PROPERTY_UNAVAILABLE;
1680 is_cur_source = sub_source(mpctx) == source;
1681 switch (action) {
1682 case M_PROPERTY_GET:
1683 if (!arg)
1684 return M_PROPERTY_ERROR;
1685 if (is_cur_source) {
1686 *(int *) arg = mpctx->global_sub_pos - offset;
1687 if (source == SUB_SOURCE_VOBSUB)
1688 *(int *) arg = vobsub_get_id_by_index(vo_vobsub, *(int *) arg);
1690 else
1691 *(int *) arg = -1;
1692 return M_PROPERTY_OK;
1693 case M_PROPERTY_PRINT:
1694 if (!arg)
1695 return M_PROPERTY_ERROR;
1696 if (is_cur_source)
1697 return mp_property_sub(prop, M_PROPERTY_PRINT, arg, mpctx);
1698 *(char **) arg = malloc(64);
1699 (*(char **) arg)[63] = 0;
1700 snprintf(*(char **) arg, 63, _("disabled"));
1701 return M_PROPERTY_OK;
1702 case M_PROPERTY_SET:
1703 if (!arg)
1704 return M_PROPERTY_ERROR;
1705 if (*(int *) arg >= 0) {
1706 int index = *(int *)arg;
1707 if (source == SUB_SOURCE_VOBSUB)
1708 index = vobsub_get_index_by_id(vo_vobsub, index);
1709 mpctx->global_sub_pos = offset + index;
1710 if (index < 0 || mpctx->global_sub_pos >= mpctx->global_sub_size
1711 || sub_source(mpctx) != source) {
1712 mpctx->global_sub_pos = -1;
1713 *(int *) arg = -1;
1716 else
1717 mpctx->global_sub_pos = -1;
1718 break;
1719 case M_PROPERTY_STEP_UP:
1720 case M_PROPERTY_STEP_DOWN: {
1721 int step_all = (arg && *(int*)arg != 0 ? *(int*)arg : 1)
1722 * (action == M_PROPERTY_STEP_UP ? 1 : -1);
1723 int step = (step_all > 0) ? 1 : -1;
1724 int max_sub_pos_for_source = -1;
1725 if (!is_cur_source)
1726 mpctx->global_sub_pos = -1;
1727 while (step_all) {
1728 if (mpctx->global_sub_pos == -1) {
1729 if (step > 0)
1730 mpctx->global_sub_pos = offset;
1731 else if (max_sub_pos_for_source == -1) {
1732 // Find max pos for specific source
1733 mpctx->global_sub_pos = mpctx->global_sub_size - 1;
1734 while (mpctx->global_sub_pos >= 0
1735 && sub_source(mpctx) != source)
1736 --mpctx->global_sub_pos;
1738 else
1739 mpctx->global_sub_pos = max_sub_pos_for_source;
1741 else {
1742 mpctx->global_sub_pos += step;
1743 if (mpctx->global_sub_pos < offset ||
1744 mpctx->global_sub_pos >= mpctx->global_sub_size ||
1745 sub_source(mpctx) != source)
1746 mpctx->global_sub_pos = -1;
1748 step_all -= step;
1750 break;
1752 default:
1753 return M_PROPERTY_NOT_IMPLEMENTED;
1755 --mpctx->global_sub_pos;
1756 return mp_property_sub(prop, M_PROPERTY_STEP_UP, NULL, mpctx);
1759 /// Subtitle delay (RW)
1760 static int mp_property_sub_delay(m_option_t *prop, int action, void *arg,
1761 MPContext *mpctx)
1763 if (!mpctx->sh_video)
1764 return M_PROPERTY_UNAVAILABLE;
1765 return m_property_delay(prop, action, arg, &sub_delay);
1768 /// Alignment of text subtitles (RW)
1769 static int mp_property_sub_alignment(m_option_t *prop, int action,
1770 void *arg, MPContext *mpctx)
1772 char *name[] = { _("top"), _("center"), _("bottom") };
1774 if (!mpctx->sh_video || mpctx->global_sub_pos < 0
1775 || sub_source(mpctx) != SUB_SOURCE_SUBS)
1776 return M_PROPERTY_UNAVAILABLE;
1778 switch (action) {
1779 case M_PROPERTY_PRINT:
1780 if (!arg)
1781 return M_PROPERTY_ERROR;
1782 M_PROPERTY_CLAMP(prop, sub_alignment);
1783 *(char **) arg = strdup(name[sub_alignment]);
1784 return M_PROPERTY_OK;
1785 case M_PROPERTY_SET:
1786 if (!arg)
1787 return M_PROPERTY_ERROR;
1788 case M_PROPERTY_STEP_UP:
1789 case M_PROPERTY_STEP_DOWN:
1790 vo_osd_changed(OSDTYPE_SUBTITLE);
1791 default:
1792 return m_property_choice(prop, action, arg, &sub_alignment);
1796 /// Subtitle visibility (RW)
1797 static int mp_property_sub_visibility(m_option_t *prop, int action,
1798 void *arg, MPContext *mpctx)
1800 if (!mpctx->sh_video)
1801 return M_PROPERTY_UNAVAILABLE;
1803 switch (action) {
1804 case M_PROPERTY_SET:
1805 if (!arg)
1806 return M_PROPERTY_ERROR;
1807 case M_PROPERTY_STEP_UP:
1808 case M_PROPERTY_STEP_DOWN:
1809 vo_osd_changed(OSDTYPE_SUBTITLE);
1810 if (vo_spudec)
1811 vo_osd_changed(OSDTYPE_SPU);
1812 default:
1813 return m_property_flag(prop, action, arg, &sub_visibility);
1817 #ifdef CONFIG_ASS
1818 /// Use margins for libass subtitles (RW)
1819 static int mp_property_ass_use_margins(m_option_t *prop, int action,
1820 void *arg, MPContext *mpctx)
1822 if (!mpctx->sh_video)
1823 return M_PROPERTY_UNAVAILABLE;
1825 switch (action) {
1826 case M_PROPERTY_SET:
1827 if (!arg)
1828 return M_PROPERTY_ERROR;
1829 case M_PROPERTY_STEP_UP:
1830 case M_PROPERTY_STEP_DOWN:
1831 ass_force_reload = 1;
1832 default:
1833 return m_property_flag(prop, action, arg, &ass_use_margins);
1836 #endif
1838 /// Show only forced subtitles (RW)
1839 static int mp_property_sub_forced_only(m_option_t *prop, int action,
1840 void *arg, MPContext *mpctx)
1842 if (!vo_spudec)
1843 return M_PROPERTY_UNAVAILABLE;
1845 switch (action) {
1846 case M_PROPERTY_SET:
1847 if (!arg)
1848 return M_PROPERTY_ERROR;
1849 case M_PROPERTY_STEP_UP:
1850 case M_PROPERTY_STEP_DOWN:
1851 m_property_flag(prop, action, arg, &forced_subs_only);
1852 spudec_set_forced_subs_only(vo_spudec, forced_subs_only);
1853 return M_PROPERTY_OK;
1854 default:
1855 return m_property_flag(prop, action, arg, &forced_subs_only);
1860 #ifdef CONFIG_FREETYPE
1861 /// Subtitle scale (RW)
1862 static int mp_property_sub_scale(m_option_t *prop, int action, void *arg,
1863 MPContext *mpctx)
1865 struct MPOpts *opts = &mpctx->opts;
1867 switch (action) {
1868 case M_PROPERTY_SET:
1869 if (!arg)
1870 return M_PROPERTY_ERROR;
1871 M_PROPERTY_CLAMP(prop, *(float *) arg);
1872 #ifdef CONFIG_ASS
1873 if (opts->ass_enabled) {
1874 ass_font_scale = *(float *) arg;
1875 ass_force_reload = 1;
1877 #endif
1878 text_font_scale_factor = *(float *) arg;
1879 force_load_font = 1;
1880 return M_PROPERTY_OK;
1881 case M_PROPERTY_STEP_UP:
1882 case M_PROPERTY_STEP_DOWN:
1883 #ifdef CONFIG_ASS
1884 if (opts->ass_enabled) {
1885 ass_font_scale += (arg ? *(float *) arg : 0.1)*
1886 (action == M_PROPERTY_STEP_UP ? 1.0 : -1.0);
1887 M_PROPERTY_CLAMP(prop, ass_font_scale);
1888 ass_force_reload = 1;
1890 #endif
1891 text_font_scale_factor += (arg ? *(float *) arg : 0.1)*
1892 (action == M_PROPERTY_STEP_UP ? 1.0 : -1.0);
1893 M_PROPERTY_CLAMP(prop, text_font_scale_factor);
1894 force_load_font = 1;
1895 return M_PROPERTY_OK;
1896 default:
1897 #ifdef CONFIG_ASS
1898 if (opts->ass_enabled)
1899 return m_property_float_ro(prop, action, arg, ass_font_scale);
1900 else
1901 #endif
1902 return m_property_float_ro(prop, action, arg, text_font_scale_factor);
1905 #endif
1907 ///@}
1909 /// \defgroup TVProperties TV properties
1910 /// \ingroup Properties
1911 ///@{
1913 #ifdef CONFIG_TV
1915 /// TV color settings (RW)
1916 static int mp_property_tv_color(m_option_t *prop, int action, void *arg,
1917 MPContext *mpctx)
1919 int r, val;
1920 tvi_handle_t *tvh = mpctx->demuxer->priv;
1921 if (mpctx->demuxer->type != DEMUXER_TYPE_TV || !tvh)
1922 return M_PROPERTY_UNAVAILABLE;
1924 switch (action) {
1925 case M_PROPERTY_SET:
1926 if (!arg)
1927 return M_PROPERTY_ERROR;
1928 M_PROPERTY_CLAMP(prop, *(int *) arg);
1929 return tv_set_color_options(tvh, (int) prop->priv, *(int *) arg);
1930 case M_PROPERTY_GET:
1931 return tv_get_color_options(tvh, (int) prop->priv, arg);
1932 case M_PROPERTY_STEP_UP:
1933 case M_PROPERTY_STEP_DOWN:
1934 if ((r = tv_get_color_options(tvh, (int) prop->priv, &val)) >= 0) {
1935 if (!r)
1936 return M_PROPERTY_ERROR;
1937 val += (arg ? *(int *) arg : 1) *
1938 (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
1939 M_PROPERTY_CLAMP(prop, val);
1940 return tv_set_color_options(tvh, (int) prop->priv, val);
1942 return M_PROPERTY_ERROR;
1944 return M_PROPERTY_NOT_IMPLEMENTED;
1947 #endif
1949 static int mp_property_teletext_common(m_option_t *prop, int action, void *arg,
1950 MPContext *mpctx)
1952 int val,result;
1953 int base_ioctl=(int)prop->priv;
1955 for teletext's GET,SET,STEP ioctls this is not 0
1956 SET is GET+1
1957 STEP is GET+2
1959 if (!mpctx->demuxer || !mpctx->demuxer->teletext)
1960 return M_PROPERTY_UNAVAILABLE;
1961 if(!base_ioctl)
1962 return M_PROPERTY_ERROR;
1964 switch (action) {
1965 case M_PROPERTY_GET:
1966 if (!arg)
1967 return M_PROPERTY_ERROR;
1968 result=teletext_control(mpctx->demuxer->teletext, base_ioctl, arg);
1969 break;
1970 case M_PROPERTY_SET:
1971 if (!arg)
1972 return M_PROPERTY_ERROR;
1973 M_PROPERTY_CLAMP(prop, *(int *) arg);
1974 result=teletext_control(mpctx->demuxer->teletext, base_ioctl+1, arg);
1975 break;
1976 case M_PROPERTY_STEP_UP:
1977 case M_PROPERTY_STEP_DOWN:
1978 result=teletext_control(mpctx->demuxer->teletext, base_ioctl, &val);
1979 val += (arg ? *(int *) arg : 1) * (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
1980 result=teletext_control(mpctx->demuxer->teletext, base_ioctl+1, &val);
1981 break;
1982 default:
1983 return M_PROPERTY_NOT_IMPLEMENTED;
1986 return result == VBI_CONTROL_TRUE ? M_PROPERTY_OK : M_PROPERTY_ERROR;
1989 static int mp_property_teletext_mode(m_option_t *prop, int action, void *arg,
1990 MPContext *mpctx)
1992 int result;
1993 int val;
1995 //with tvh==NULL will fail too
1996 result=mp_property_teletext_common(prop,action,arg,mpctx);
1997 if(result!=M_PROPERTY_OK)
1998 return result;
2000 if(teletext_control(mpctx->demuxer->teletext,
2001 (int)prop->priv, &val)==VBI_CONTROL_TRUE && val)
2002 mp_input_set_section(mpctx->input, "teletext");
2003 else
2004 mp_input_set_section(mpctx->input, "tv");
2005 return M_PROPERTY_OK;
2008 static int mp_property_teletext_page(m_option_t *prop, int action, void *arg,
2009 MPContext *mpctx)
2011 int result;
2012 int val;
2013 if (!mpctx->demuxer->teletext)
2014 return M_PROPERTY_UNAVAILABLE;
2015 switch(action){
2016 case M_PROPERTY_STEP_UP:
2017 case M_PROPERTY_STEP_DOWN:
2018 //This should be handled separately
2019 val = (arg ? *(int *) arg : 1) * (action == M_PROPERTY_STEP_DOWN ? -1 : 1);
2020 result=teletext_control(mpctx->demuxer->teletext,
2021 TV_VBI_CONTROL_STEP_PAGE, &val);
2022 break;
2023 default:
2024 result=mp_property_teletext_common(prop,action,arg,mpctx);
2026 return result;
2029 ///@}
2031 /// All properties available in MPlayer.
2032 /** \ingroup Properties
2034 static const m_option_t mp_properties[] = {
2035 // General
2036 { "osdlevel", mp_property_osdlevel, CONF_TYPE_INT,
2037 M_OPT_RANGE, 0, 3, NULL },
2038 { "loop", mp_property_loop, CONF_TYPE_INT,
2039 M_OPT_MIN, -1, 0, NULL },
2040 { "speed", mp_property_playback_speed, CONF_TYPE_FLOAT,
2041 M_OPT_RANGE, 0.01, 100.0, NULL },
2042 { "filename", mp_property_filename, CONF_TYPE_STRING,
2043 0, 0, 0, NULL },
2044 { "path", mp_property_path, CONF_TYPE_STRING,
2045 0, 0, 0, NULL },
2046 { "demuxer", mp_property_demuxer, CONF_TYPE_STRING,
2047 0, 0, 0, NULL },
2048 { "stream_pos", mp_property_stream_pos, CONF_TYPE_POSITION,
2049 M_OPT_MIN, 0, 0, NULL },
2050 { "stream_start", mp_property_stream_start, CONF_TYPE_POSITION,
2051 M_OPT_MIN, 0, 0, NULL },
2052 { "stream_end", mp_property_stream_end, CONF_TYPE_POSITION,
2053 M_OPT_MIN, 0, 0, NULL },
2054 { "stream_length", mp_property_stream_length, CONF_TYPE_POSITION,
2055 M_OPT_MIN, 0, 0, NULL },
2056 { "length", mp_property_length, CONF_TYPE_TIME,
2057 M_OPT_MIN, 0, 0, NULL },
2058 { "percent_pos", mp_property_percent_pos, CONF_TYPE_INT,
2059 M_OPT_RANGE, 0, 100, NULL },
2060 { "time_pos", mp_property_time_pos, CONF_TYPE_TIME,
2061 M_OPT_MIN, 0, 0, NULL },
2062 { "chapter", mp_property_chapter, CONF_TYPE_INT,
2063 M_OPT_MIN, 0, 0, NULL },
2064 { "chapters", mp_property_chapters, CONF_TYPE_INT,
2065 0, 0, 0, NULL },
2066 { "angle", mp_property_angle, CONF_TYPE_INT,
2067 CONF_RANGE, -2, 10, NULL },
2068 { "metadata", mp_property_metadata, CONF_TYPE_STRING_LIST,
2069 0, 0, 0, NULL },
2070 { "pause", mp_property_pause, CONF_TYPE_FLAG,
2071 M_OPT_RANGE, 0, 1, NULL },
2073 // Audio
2074 { "volume", mp_property_volume, CONF_TYPE_FLOAT,
2075 M_OPT_RANGE, 0, 100, NULL },
2076 { "mute", mp_property_mute, CONF_TYPE_FLAG,
2077 M_OPT_RANGE, 0, 1, NULL },
2078 { "audio_delay", mp_property_audio_delay, CONF_TYPE_FLOAT,
2079 M_OPT_RANGE, -100, 100, NULL },
2080 { "audio_format", mp_property_audio_format, CONF_TYPE_INT,
2081 0, 0, 0, NULL },
2082 { "audio_codec", mp_property_audio_codec, CONF_TYPE_STRING,
2083 0, 0, 0, NULL },
2084 { "audio_bitrate", mp_property_audio_bitrate, CONF_TYPE_INT,
2085 0, 0, 0, NULL },
2086 { "samplerate", mp_property_samplerate, CONF_TYPE_INT,
2087 0, 0, 0, NULL },
2088 { "channels", mp_property_channels, CONF_TYPE_INT,
2089 0, 0, 0, NULL },
2090 { "switch_audio", mp_property_audio, CONF_TYPE_INT,
2091 CONF_RANGE, -2, 65535, NULL },
2092 { "balance", mp_property_balance, CONF_TYPE_FLOAT,
2093 M_OPT_RANGE, -1, 1, NULL },
2095 // Video
2096 { "fullscreen", mp_property_fullscreen, CONF_TYPE_FLAG,
2097 M_OPT_RANGE, 0, 1, NULL },
2098 { "deinterlace", mp_property_deinterlace, CONF_TYPE_FLAG,
2099 M_OPT_RANGE, 0, 1, NULL },
2100 { "yuv_colorspace", mp_property_yuv_colorspace, CONF_TYPE_INT,
2101 M_OPT_RANGE, 0, 2, NULL },
2102 { "ontop", mp_property_ontop, CONF_TYPE_FLAG,
2103 M_OPT_RANGE, 0, 1, NULL },
2104 { "rootwin", mp_property_rootwin, CONF_TYPE_FLAG,
2105 M_OPT_RANGE, 0, 1, NULL },
2106 { "border", mp_property_border, CONF_TYPE_FLAG,
2107 M_OPT_RANGE, 0, 1, NULL },
2108 { "framedropping", mp_property_framedropping, CONF_TYPE_INT,
2109 M_OPT_RANGE, 0, 2, NULL },
2110 { "gamma", mp_property_gamma, CONF_TYPE_INT,
2111 M_OPT_RANGE, -100, 100, (void *)offsetof(struct MPOpts, vo_gamma_gamma)},
2112 { "brightness", mp_property_gamma, CONF_TYPE_INT,
2113 M_OPT_RANGE, -100, 100, (void *)offsetof(struct MPOpts, vo_gamma_brightness) },
2114 { "contrast", mp_property_gamma, CONF_TYPE_INT,
2115 M_OPT_RANGE, -100, 100, (void *)offsetof(struct MPOpts, vo_gamma_contrast) },
2116 { "saturation", mp_property_gamma, CONF_TYPE_INT,
2117 M_OPT_RANGE, -100, 100, (void *)offsetof(struct MPOpts, vo_gamma_saturation) },
2118 { "hue", mp_property_gamma, CONF_TYPE_INT,
2119 M_OPT_RANGE, -100, 100, (void *)offsetof(struct MPOpts, vo_gamma_hue) },
2120 { "panscan", mp_property_panscan, CONF_TYPE_FLOAT,
2121 M_OPT_RANGE, 0, 1, NULL },
2122 { "vsync", mp_property_vsync, CONF_TYPE_FLAG,
2123 M_OPT_RANGE, 0, 1, NULL },
2124 { "video_format", mp_property_video_format, CONF_TYPE_INT,
2125 0, 0, 0, NULL },
2126 { "video_codec", mp_property_video_codec, CONF_TYPE_STRING,
2127 0, 0, 0, NULL },
2128 { "video_bitrate", mp_property_video_bitrate, CONF_TYPE_INT,
2129 0, 0, 0, NULL },
2130 { "width", mp_property_width, CONF_TYPE_INT,
2131 0, 0, 0, NULL },
2132 { "height", mp_property_height, CONF_TYPE_INT,
2133 0, 0, 0, NULL },
2134 { "fps", mp_property_fps, CONF_TYPE_FLOAT,
2135 0, 0, 0, NULL },
2136 { "aspect", mp_property_aspect, CONF_TYPE_FLOAT,
2137 0, 0, 0, NULL },
2138 { "switch_video", mp_property_video, CONF_TYPE_INT,
2139 CONF_RANGE, -2, 65535, NULL },
2140 { "switch_program", mp_property_program, CONF_TYPE_INT,
2141 CONF_RANGE, -1, 65535, NULL },
2143 // Subs
2144 { "sub", mp_property_sub, CONF_TYPE_INT,
2145 M_OPT_MIN, -1, 0, NULL },
2146 { "sub_source", mp_property_sub_source, CONF_TYPE_INT,
2147 M_OPT_RANGE, -1, SUB_SOURCES - 1, NULL },
2148 { "sub_vob", mp_property_sub_by_type, CONF_TYPE_INT,
2149 M_OPT_MIN, -1, 0, NULL },
2150 { "sub_demux", mp_property_sub_by_type, CONF_TYPE_INT,
2151 M_OPT_MIN, -1, 0, NULL },
2152 { "sub_file", mp_property_sub_by_type, CONF_TYPE_INT,
2153 M_OPT_MIN, -1, 0, NULL },
2154 { "sub_delay", mp_property_sub_delay, CONF_TYPE_FLOAT,
2155 0, 0, 0, NULL },
2156 { "sub_pos", mp_property_sub_pos, CONF_TYPE_INT,
2157 M_OPT_RANGE, 0, 100, NULL },
2158 { "sub_alignment", mp_property_sub_alignment, CONF_TYPE_INT,
2159 M_OPT_RANGE, 0, 2, NULL },
2160 { "sub_visibility", mp_property_sub_visibility, CONF_TYPE_FLAG,
2161 M_OPT_RANGE, 0, 1, NULL },
2162 { "sub_forced_only", mp_property_sub_forced_only, CONF_TYPE_FLAG,
2163 M_OPT_RANGE, 0, 1, NULL },
2164 #ifdef CONFIG_FREETYPE
2165 { "sub_scale", mp_property_sub_scale, CONF_TYPE_FLOAT,
2166 M_OPT_RANGE, 0, 100, NULL },
2167 #endif
2168 #ifdef CONFIG_ASS
2169 { "ass_use_margins", mp_property_ass_use_margins, CONF_TYPE_FLAG,
2170 M_OPT_RANGE, 0, 1, NULL },
2171 #endif
2173 #ifdef CONFIG_TV
2174 { "tv_brightness", mp_property_tv_color, CONF_TYPE_INT,
2175 M_OPT_RANGE, -100, 100, (void *) TV_COLOR_BRIGHTNESS },
2176 { "tv_contrast", mp_property_tv_color, CONF_TYPE_INT,
2177 M_OPT_RANGE, -100, 100, (void *) TV_COLOR_CONTRAST },
2178 { "tv_saturation", mp_property_tv_color, CONF_TYPE_INT,
2179 M_OPT_RANGE, -100, 100, (void *) TV_COLOR_SATURATION },
2180 { "tv_hue", mp_property_tv_color, CONF_TYPE_INT,
2181 M_OPT_RANGE, -100, 100, (void *) TV_COLOR_HUE },
2182 #endif
2183 { "teletext_page", mp_property_teletext_page, CONF_TYPE_INT,
2184 M_OPT_RANGE, 100, 899, (void*)TV_VBI_CONTROL_GET_PAGE },
2185 { "teletext_subpage", mp_property_teletext_common, CONF_TYPE_INT,
2186 M_OPT_RANGE, 0, 64, (void*)TV_VBI_CONTROL_GET_SUBPAGE },
2187 { "teletext_mode", mp_property_teletext_mode, CONF_TYPE_FLAG,
2188 M_OPT_RANGE, 0, 1, (void*)TV_VBI_CONTROL_GET_MODE },
2189 { "teletext_format", mp_property_teletext_common, CONF_TYPE_INT,
2190 M_OPT_RANGE, 0, 3, (void*)TV_VBI_CONTROL_GET_FORMAT },
2191 { "teletext_half_page", mp_property_teletext_common, CONF_TYPE_INT,
2192 M_OPT_RANGE, 0, 2, (void*)TV_VBI_CONTROL_GET_HALF_PAGE },
2193 { NULL, NULL, NULL, 0, 0, 0, NULL }
2197 int mp_property_do(const char *name, int action, void *val, void *ctx)
2199 return m_property_do(mp_properties, name, action, val, ctx);
2202 char* mp_property_print(const char *name, void* ctx)
2204 char* ret = NULL;
2205 if(mp_property_do(name,M_PROPERTY_PRINT,&ret,ctx) <= 0)
2206 return NULL;
2207 return ret;
2210 char *property_expand_string(MPContext *mpctx, char *str)
2212 return m_properties_expand_string(mp_properties, str, mpctx);
2215 void property_print_help(void)
2217 m_properties_print_help_list(mp_properties);
2221 /* List of default ways to show a property on OSD.
2223 * Setting osd_progbar to -1 displays seek bar, other nonzero displays
2224 * a bar showing the current position between min/max values of the
2225 * property. In this case osd_msg is only used for terminal output
2226 * if there is no video; it'll be a label shown together with percentage.
2228 * Otherwise setting osd_msg will show the string on OSD, formatted with
2229 * the text value of the property as argument.
2231 static struct property_osd_display {
2232 /// property name
2233 const char *name;
2234 /// progressbar type
2235 int osd_progbar; // -1 is special value for seek indicators
2236 /// osd msg id if it must be shared
2237 int osd_id;
2238 /// osd msg template
2239 const char *osd_msg;
2240 } property_osd_display[] = {
2241 // general
2242 { "loop", 0, -1, _("Loop: %s") },
2243 { "chapter", -1, -1, NULL },
2244 // audio
2245 { "volume", OSD_VOLUME, -1, _("Volume") },
2246 { "mute", 0, -1, _("Mute: %s") },
2247 { "audio_delay", 0, -1, _("A-V delay: %s") },
2248 { "switch_audio", 0, -1, _("Audio: %s") },
2249 { "balance", OSD_BALANCE, -1, _("Balance") },
2250 // video
2251 { "panscan", OSD_PANSCAN, -1, _("Panscan") },
2252 { "ontop", 0, -1, _("Stay on top: %s") },
2253 { "rootwin", 0, -1, _("Rootwin: %s") },
2254 { "border", 0, -1, _("Border: %s") },
2255 { "framedropping", 0, -1, _("Framedropping: %s") },
2256 { "deinterlace", 0, -1, _("Deinterlace: %s") },
2257 { "yuv_colorspace", 0, -1, _("YUV colorspace: %s") },
2258 { "gamma", OSD_BRIGHTNESS, -1, _("Gamma") },
2259 { "brightness", OSD_BRIGHTNESS, -1, _("Brightness") },
2260 { "contrast", OSD_CONTRAST, -1, _("Contrast") },
2261 { "saturation", OSD_SATURATION, -1, _("Saturation") },
2262 { "hue", OSD_HUE, -1, _("Hue") },
2263 { "vsync", 0, -1, _("VSync: %s") },
2264 // subs
2265 { "sub", 0, -1, _("Subtitles: %s") },
2266 { "sub_source", 0, -1, _("Sub source: %s") },
2267 { "sub_vob", 0, -1, _("Subtitles: %s") },
2268 { "sub_demux", 0, -1, _("Subtitles: %s") },
2269 { "sub_file", 0, -1, _("Subtitles: %s") },
2270 { "sub_pos", 0, -1, _("Sub position: %s/100") },
2271 { "sub_alignment", 0, -1, _("Sub alignment: %s") },
2272 { "sub_delay", 0, OSD_MSG_SUB_DELAY, _("Sub delay: %s") },
2273 { "sub_visibility", 0, -1, _("Subtitles: %s") },
2274 { "sub_forced_only", 0, -1, _("Forced sub only: %s") },
2275 #ifdef CONFIG_FREETYPE
2276 { "sub_scale", 0, -1, _("Sub Scale: %s")},
2277 #endif
2278 #ifdef CONFIG_TV
2279 { "tv_brightness", OSD_BRIGHTNESS, -1, _("Brightness") },
2280 { "tv_hue", OSD_HUE, -1, _("Hue") },
2281 { "tv_saturation", OSD_SATURATION, -1, _("Saturation") },
2282 { "tv_contrast", OSD_CONTRAST, -1, _("Contrast") },
2283 #endif
2287 static int show_property_osd(MPContext *mpctx, const char *pname)
2289 struct MPOpts *opts = &mpctx->opts;
2290 int r;
2291 m_option_t* prop;
2292 struct property_osd_display *p;
2294 // look for the command
2295 for (p = property_osd_display; p->name; p++)
2296 if (!strcmp(p->name, pname))
2297 break;
2298 if (!p->name)
2299 return -1;
2301 if (mp_property_do(pname, M_PROPERTY_GET_TYPE, &prop, mpctx) <= 0 || !prop)
2302 return -1;
2304 if (p->osd_progbar == -1)
2305 mpctx->add_osd_seek_info = true;
2306 else if (p->osd_progbar) {
2307 if (prop->type == CONF_TYPE_INT) {
2308 if (mp_property_do(pname, M_PROPERTY_GET, &r, mpctx) > 0)
2309 set_osd_bar(mpctx, p->osd_progbar, p->osd_msg,
2310 prop->min, prop->max, r);
2311 } else if (prop->type == CONF_TYPE_FLOAT) {
2312 float f;
2313 if (mp_property_do(pname, M_PROPERTY_GET, &f, mpctx) > 0)
2314 set_osd_bar(mpctx, p->osd_progbar, p->osd_msg,
2315 prop->min, prop->max, f);
2316 } else {
2317 mp_msg(MSGT_CPLAYER, MSGL_ERR,
2318 "Property use an unsupported type.\n");
2319 return -1;
2321 return 0;
2324 if (p->osd_msg) {
2325 char *val = mp_property_print(pname, mpctx);
2326 if (val) {
2327 int index = p - property_osd_display;
2328 set_osd_msg(p->osd_id >= 0 ? p->osd_id : OSD_MSG_PROPERTY + index,
2329 1, opts->osd_duration, p->osd_msg, val);
2330 free(val);
2333 return 0;
2338 * \defgroup Command2Property Command to property bridge
2340 * It is used to handle most commands that just set a property
2341 * and optionally display something on the OSD.
2342 * Two kinds of commands are handled: adjust or toggle.
2344 * Adjust commands take 1 or 2 parameters: <value> <abs>
2345 * If <abs> is non-zero the property is set to the given value
2346 * otherwise it is adjusted.
2348 * Toggle commands take 0 or 1 parameters. With no parameter
2349 * or a value less than the property minimum it just steps the
2350 * property to its next value. Otherwise it sets it to the given
2351 * value.
2356 /// List of the commands that can be handled by setting a property.
2357 static struct {
2358 /// property name
2359 const char *name;
2360 /// cmd id
2361 int cmd;
2362 /// set/adjust or toggle command
2363 int toggle;
2364 } set_prop_cmd[] = {
2365 // general
2366 { "loop", MP_CMD_LOOP, 0},
2367 { "chapter", MP_CMD_SEEK_CHAPTER, 0},
2368 { "angle", MP_CMD_SWITCH_ANGLE, 0},
2369 { "pause", MP_CMD_PAUSE, 0},
2370 // audio
2371 { "volume", MP_CMD_VOLUME, 0},
2372 { "mute", MP_CMD_MUTE, 1},
2373 { "audio_delay", MP_CMD_AUDIO_DELAY, 0},
2374 { "switch_audio", MP_CMD_SWITCH_AUDIO, 1},
2375 { "balance", MP_CMD_BALANCE, 0},
2376 // video
2377 { "fullscreen", MP_CMD_VO_FULLSCREEN, 1},
2378 { "panscan", MP_CMD_PANSCAN, 0},
2379 { "ontop", MP_CMD_VO_ONTOP, 1},
2380 { "rootwin", MP_CMD_VO_ROOTWIN, 1},
2381 { "border", MP_CMD_VO_BORDER, 1},
2382 { "framedropping", MP_CMD_FRAMEDROPPING, 1},
2383 { "gamma", MP_CMD_GAMMA, 0},
2384 { "brightness", MP_CMD_BRIGHTNESS, 0},
2385 { "contrast", MP_CMD_CONTRAST, 0},
2386 { "saturation", MP_CMD_SATURATION, 0},
2387 { "hue", MP_CMD_HUE, 0},
2388 { "vsync", MP_CMD_SWITCH_VSYNC, 1},
2389 // subs
2390 { "sub", MP_CMD_SUB_SELECT, 1},
2391 { "sub_source", MP_CMD_SUB_SOURCE, 1},
2392 { "sub_vob", MP_CMD_SUB_VOB, 1},
2393 { "sub_demux", MP_CMD_SUB_DEMUX, 1},
2394 { "sub_file", MP_CMD_SUB_FILE, 1},
2395 { "sub_pos", MP_CMD_SUB_POS, 0},
2396 { "sub_alignment", MP_CMD_SUB_ALIGNMENT, 1},
2397 { "sub_delay", MP_CMD_SUB_DELAY, 0},
2398 { "sub_visibility", MP_CMD_SUB_VISIBILITY, 1},
2399 { "sub_forced_only", MP_CMD_SUB_FORCED_ONLY, 1},
2400 #ifdef CONFIG_FREETYPE
2401 { "sub_scale", MP_CMD_SUB_SCALE, 0},
2402 #endif
2403 #ifdef CONFIG_ASS
2404 { "ass_use_margins", MP_CMD_ASS_USE_MARGINS, 1},
2405 #endif
2406 #ifdef CONFIG_TV
2407 { "tv_brightness", MP_CMD_TV_SET_BRIGHTNESS, 0},
2408 { "tv_hue", MP_CMD_TV_SET_HUE, 0},
2409 { "tv_saturation", MP_CMD_TV_SET_SATURATION, 0},
2410 { "tv_contrast", MP_CMD_TV_SET_CONTRAST, 0},
2411 #endif
2415 /// Handle commands that set a property.
2416 static int set_property_command(MPContext *mpctx, mp_cmd_t *cmd)
2418 int i, r;
2419 m_option_t* prop;
2420 const char *pname;
2422 // look for the command
2423 for (i = 0; set_prop_cmd[i].name; i++)
2424 if (set_prop_cmd[i].cmd == cmd->id)
2425 break;
2426 if (!(pname = set_prop_cmd[i].name))
2427 return 0;
2429 if (mp_property_do(pname,M_PROPERTY_GET_TYPE,&prop,mpctx) <= 0 || !prop)
2430 return 0;
2432 // toggle command
2433 if (set_prop_cmd[i].toggle) {
2434 // set to value
2435 if (cmd->nargs > 0 && cmd->args[0].v.i >= prop->min)
2436 r = mp_property_do(pname, M_PROPERTY_SET, &cmd->args[0].v.i, mpctx);
2437 else
2438 r = mp_property_do(pname, M_PROPERTY_STEP_UP, NULL, mpctx);
2439 } else if (cmd->args[1].v.i) //set
2440 r = mp_property_do(pname, M_PROPERTY_SET, &cmd->args[0].v, mpctx);
2441 else // adjust
2442 r = mp_property_do(pname, M_PROPERTY_STEP_UP, &cmd->args[0].v, mpctx);
2444 if (r <= 0)
2445 return 1;
2447 show_property_osd(mpctx, pname);
2449 return 1;
2452 #ifdef CONFIG_DVDNAV
2453 static const struct {
2454 const char *name;
2455 const mp_command_type cmd;
2456 } mp_dvdnav_bindings[] = {
2457 { "up", MP_CMD_DVDNAV_UP },
2458 { "down", MP_CMD_DVDNAV_DOWN },
2459 { "left", MP_CMD_DVDNAV_LEFT },
2460 { "right", MP_CMD_DVDNAV_RIGHT },
2461 { "menu", MP_CMD_DVDNAV_MENU },
2462 { "select", MP_CMD_DVDNAV_SELECT },
2463 { "prev", MP_CMD_DVDNAV_PREVMENU },
2464 { "mouse", MP_CMD_DVDNAV_MOUSECLICK },
2467 * keep old dvdnav sub-command options for a while in order not to
2468 * break slave-mode API too suddenly.
2470 { "1", MP_CMD_DVDNAV_UP },
2471 { "2", MP_CMD_DVDNAV_DOWN },
2472 { "3", MP_CMD_DVDNAV_LEFT },
2473 { "4", MP_CMD_DVDNAV_RIGHT },
2474 { "5", MP_CMD_DVDNAV_MENU },
2475 { "6", MP_CMD_DVDNAV_SELECT },
2476 { "7", MP_CMD_DVDNAV_PREVMENU },
2477 { "8", MP_CMD_DVDNAV_MOUSECLICK },
2478 { NULL, 0 }
2480 #endif
2482 void run_command(MPContext *mpctx, mp_cmd_t *cmd)
2484 struct MPOpts *opts = &mpctx->opts;
2485 sh_audio_t * const sh_audio = mpctx->sh_audio;
2486 sh_video_t * const sh_video = mpctx->sh_video;
2487 int osd_duration = opts->osd_duration;
2488 int case_fallthrough_hack = 0;
2489 if (!set_property_command(mpctx, cmd))
2490 switch (cmd->id) {
2491 case MP_CMD_SEEK:{
2492 float v;
2493 int abs;
2494 mpctx->add_osd_seek_info = true;
2495 v = cmd->args[0].v.f;
2496 abs = (cmd->nargs > 1) ? cmd->args[1].v.i : 0;
2497 if (abs == 2) { /* Absolute seek to a specific timestamp in seconds */
2498 mpctx->abs_seek_pos = SEEK_ABSOLUTE;
2499 if (sh_video)
2500 mpctx->osd_function =
2501 (v > sh_video->pts) ? OSD_FFW : OSD_REW;
2502 mpctx->rel_seek_secs = v;
2503 } else if (abs) { /* Absolute seek by percentage */
2504 mpctx->abs_seek_pos = SEEK_ABSOLUTE | SEEK_FACTOR;
2505 if (sh_video)
2506 mpctx->osd_function = OSD_FFW; // Direction isn't set correctly
2507 mpctx->rel_seek_secs = v / 100.0;
2508 } else {
2509 mpctx->rel_seek_secs += v;
2510 mpctx->osd_function = (v > 0) ? OSD_FFW : OSD_REW;
2513 break;
2515 case MP_CMD_SET_PROPERTY_OSD:
2516 case_fallthrough_hack = 1;
2518 case MP_CMD_SET_PROPERTY:{
2519 int r = mp_property_do(cmd->args[0].v.s, M_PROPERTY_PARSE,
2520 cmd->args[1].v.s, mpctx);
2521 if (r == M_PROPERTY_UNKNOWN)
2522 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2523 "Unknown property: '%s'\n", cmd->args[0].v.s);
2524 else if (r <= 0)
2525 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2526 "Failed to set property '%s' to '%s'.\n",
2527 cmd->args[0].v.s, cmd->args[1].v.s);
2528 else if (case_fallthrough_hack)
2529 show_property_osd(mpctx, cmd->args[0].v.s);
2531 break;
2533 case MP_CMD_STEP_PROPERTY_OSD:
2534 case_fallthrough_hack = 1;
2536 case MP_CMD_STEP_PROPERTY:{
2537 void* arg = NULL;
2538 int r,i;
2539 double d;
2540 off_t o;
2541 if (cmd->args[1].v.f) {
2542 m_option_t* prop;
2543 if((r = mp_property_do(cmd->args[0].v.s,
2544 M_PROPERTY_GET_TYPE,
2545 &prop, mpctx)) <= 0)
2546 goto step_prop_err;
2547 if(prop->type == CONF_TYPE_INT ||
2548 prop->type == CONF_TYPE_FLAG)
2549 i = cmd->args[1].v.f, arg = &i;
2550 else if(prop->type == CONF_TYPE_FLOAT)
2551 arg = &cmd->args[1].v.f;
2552 else if(prop->type == CONF_TYPE_DOUBLE ||
2553 prop->type == CONF_TYPE_TIME)
2554 d = cmd->args[1].v.f, arg = &d;
2555 else if(prop->type == CONF_TYPE_POSITION)
2556 o = cmd->args[1].v.f, arg = &o;
2557 else
2558 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2559 "Ignoring step size stepping property '%s'.\n",
2560 cmd->args[0].v.s);
2562 r = mp_property_do(cmd->args[0].v.s,
2563 cmd->args[2].v.i < 0 ?
2564 M_PROPERTY_STEP_DOWN : M_PROPERTY_STEP_UP,
2565 arg, mpctx);
2566 step_prop_err:
2567 if (r == M_PROPERTY_UNKNOWN)
2568 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2569 "Unknown property: '%s'\n", cmd->args[0].v.s);
2570 else if (r <= 0)
2571 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2572 "Failed to increment property '%s' by %f.\n",
2573 cmd->args[0].v.s, cmd->args[1].v.f);
2574 else if (case_fallthrough_hack)
2575 show_property_osd(mpctx, cmd->args[0].v.s);
2577 break;
2579 case MP_CMD_GET_PROPERTY:{
2580 char *tmp;
2581 if (mp_property_do(cmd->args[0].v.s, M_PROPERTY_TO_STRING,
2582 &tmp, mpctx) <= 0) {
2583 mp_msg(MSGT_CPLAYER, MSGL_WARN,
2584 "Failed to get value of property '%s'.\n",
2585 cmd->args[0].v.s);
2586 break;
2588 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_%s=%s\n",
2589 cmd->args[0].v.s, tmp);
2590 free(tmp);
2592 break;
2594 case MP_CMD_EDL_MARK:
2595 if (edl_fd) {
2596 float v = sh_video ? sh_video->pts :
2597 playing_audio_pts(mpctx);
2598 if (mpctx->begin_skip == MP_NOPTS_VALUE) {
2599 mpctx->begin_skip = v;
2600 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "EDL skip start, press 'i' again to end block.\n");
2601 } else {
2602 if (mpctx->begin_skip > v)
2603 mp_tmsg(MSGT_CPLAYER, MSGL_WARN, "EDL skip canceled, last start > stop\n");
2604 else {
2605 fprintf(edl_fd, "%f %f %d\n", mpctx->begin_skip, v, 0);
2606 mp_tmsg(MSGT_CPLAYER, MSGL_INFO, "EDL skip end, line written.\n");
2608 mpctx->begin_skip = MP_NOPTS_VALUE;
2611 break;
2613 case MP_CMD_SWITCH_RATIO:
2614 if (!sh_video)
2615 break;
2616 if (cmd->nargs == 0 || cmd->args[0].v.f == -1)
2617 opts->movie_aspect = (float) sh_video->disp_w / sh_video->disp_h;
2618 else
2619 opts->movie_aspect = cmd->args[0].v.f;
2620 mpcodecs_config_vo(sh_video, sh_video->disp_w, sh_video->disp_h, 0);
2621 break;
2623 case MP_CMD_SPEED_INCR:{
2624 float v = cmd->args[0].v.f;
2625 opts->playback_speed += v;
2626 build_afilter_chain(mpctx, sh_audio, &ao_data);
2627 set_osd_msg(OSD_MSG_SPEED, 1, osd_duration, _("Speed: x %6.2f"),
2628 opts->playback_speed);
2629 } break;
2631 case MP_CMD_SPEED_MULT:{
2632 float v = cmd->args[0].v.f;
2633 opts->playback_speed *= v;
2634 build_afilter_chain(mpctx, sh_audio, &ao_data);
2635 set_osd_msg(OSD_MSG_SPEED, 1, osd_duration, _("Speed: x %6.2f"),
2636 opts->playback_speed);
2637 } break;
2639 case MP_CMD_SPEED_SET:{
2640 float v = cmd->args[0].v.f;
2641 opts->playback_speed = v;
2642 build_afilter_chain(mpctx, sh_audio, &ao_data);
2643 set_osd_msg(OSD_MSG_SPEED, 1, osd_duration, _("Speed: x %6.2f"),
2644 opts->playback_speed);
2645 } break;
2647 case MP_CMD_FRAME_STEP:
2648 add_step_frame(mpctx);
2649 break;
2651 case MP_CMD_FILE_FILTER:
2652 file_filter = cmd->args[0].v.i;
2653 break;
2655 case MP_CMD_QUIT:
2656 exit_player_with_rc(mpctx, EXIT_QUIT,
2657 (cmd->nargs > 0) ? cmd->args[0].v.i : 0);
2659 case MP_CMD_PLAY_TREE_STEP:{
2660 int n = cmd->args[0].v.i == 0 ? 1 : cmd->args[0].v.i;
2661 int force = cmd->args[1].v.i;
2664 if (!force && mpctx->playtree_iter) {
2665 play_tree_iter_t *i =
2666 play_tree_iter_new_copy(mpctx->playtree_iter);
2667 if (play_tree_iter_step(i, n, 0) ==
2668 PLAY_TREE_ITER_ENTRY)
2669 mpctx->stop_play =
2670 (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
2671 play_tree_iter_free(i);
2672 } else
2673 mpctx->stop_play = (n > 0) ? PT_NEXT_ENTRY : PT_PREV_ENTRY;
2674 if (mpctx->stop_play)
2675 mpctx->play_tree_step = n;
2678 break;
2680 case MP_CMD_PLAY_TREE_UP_STEP:{
2681 int n = cmd->args[0].v.i > 0 ? 1 : -1;
2682 int force = cmd->args[1].v.i;
2684 if (!force && mpctx->playtree_iter) {
2685 play_tree_iter_t *i =
2686 play_tree_iter_new_copy(mpctx->playtree_iter);
2687 if (play_tree_iter_up_step(i, n, 0) == PLAY_TREE_ITER_ENTRY)
2688 mpctx->stop_play = (n > 0) ? PT_UP_NEXT : PT_UP_PREV;
2689 play_tree_iter_free(i);
2690 } else
2691 mpctx->stop_play = (n > 0) ? PT_UP_NEXT : PT_UP_PREV;
2693 break;
2695 case MP_CMD_PLAY_ALT_SRC_STEP:
2696 if (mpctx->playtree_iter && mpctx->playtree_iter->num_files > 1) {
2697 int v = cmd->args[0].v.i;
2698 if (v > 0
2699 && mpctx->playtree_iter->file <
2700 mpctx->playtree_iter->num_files)
2701 mpctx->stop_play = PT_NEXT_SRC;
2702 else if (v < 0 && mpctx->playtree_iter->file > 1)
2703 mpctx->stop_play = PT_PREV_SRC;
2705 break;
2707 case MP_CMD_SUB_STEP:
2708 if (sh_video) {
2709 int movement = cmd->args[0].v.i;
2710 step_sub(subdata, sh_video->pts, movement);
2711 #ifdef CONFIG_ASS
2712 if (ass_track)
2713 sub_delay +=
2714 ass_step_sub(ass_track,
2715 (sh_video->pts +
2716 sub_delay) * 1000 + .5, movement) / 1000.;
2717 #endif
2718 set_osd_msg(OSD_MSG_SUB_DELAY, 1, osd_duration,
2719 _("Sub delay: %d ms"), ROUND(sub_delay * 1000));
2721 break;
2723 case MP_CMD_SUB_LOG:
2724 log_sub(mpctx);
2725 break;
2727 case MP_CMD_OSD:{
2728 int v = cmd->args[0].v.i;
2729 int max = (term_osd
2730 && !sh_video) ? MAX_TERM_OSD_LEVEL : MAX_OSD_LEVEL;
2731 if (opts->osd_level > max)
2732 opts->osd_level = max;
2733 if (v < 0)
2734 opts->osd_level = (opts->osd_level + 1) % (max + 1);
2735 else
2736 opts->osd_level = v > max ? max : v;
2737 /* Show OSD state when disabled, but not when an explicit
2738 argument is given to the OSD command, i.e. in slave mode. */
2739 if (v == -1 && opts->osd_level <= 1)
2740 set_osd_msg(OSD_MSG_OSD_STATUS, 0, osd_duration,
2741 _("OSD: %s"),
2742 opts->osd_level ? _("enabled") :
2743 _("disabled"));
2744 else
2745 rm_osd_msg(OSD_MSG_OSD_STATUS);
2747 break;
2749 case MP_CMD_OSD_SHOW_TEXT:
2750 set_osd_msg(OSD_MSG_TEXT, cmd->args[2].v.i,
2751 (cmd->args[1].v.i <
2752 0 ? osd_duration : cmd->args[1].v.i),
2753 "%-.63s", cmd->args[0].v.s);
2754 break;
2756 case MP_CMD_OSD_SHOW_PROPERTY_TEXT:{
2757 char *txt = m_properties_expand_string(mp_properties,
2758 cmd->args[0].v.s,
2759 mpctx);
2760 /* if no argument supplied take default osd_duration, else <arg> ms. */
2761 if (txt) {
2762 set_osd_msg(OSD_MSG_TEXT, cmd->args[2].v.i,
2763 (cmd->args[1].v.i <
2764 0 ? osd_duration : cmd->args[1].v.i),
2765 "%-.63s", txt);
2766 free(txt);
2769 break;
2771 case MP_CMD_LOADFILE:{
2772 play_tree_t *e = play_tree_new();
2773 play_tree_add_file(e, cmd->args[0].v.s);
2775 if (cmd->args[1].v.i) // append
2776 play_tree_append_entry(mpctx->playtree->child, e);
2777 else {
2778 // Go back to the starting point.
2779 while (play_tree_iter_up_step
2780 (mpctx->playtree_iter, 0, 1) != PLAY_TREE_ITER_END)
2781 /* NOP */ ;
2782 play_tree_free_list(mpctx->playtree->child, 1);
2783 play_tree_set_child(mpctx->playtree, e);
2784 pt_iter_goto_head(mpctx->playtree_iter);
2785 mpctx->stop_play = PT_NEXT_SRC;
2788 break;
2790 case MP_CMD_LOADLIST:{
2791 play_tree_t *e = parse_playlist_file(mpctx->mconfig, cmd->args[0].v.s);
2792 if (!e)
2793 mp_tmsg(MSGT_CPLAYER, MSGL_ERR,
2794 "\nUnable to load playlist %s.\n", cmd->args[0].v.s);
2795 else {
2796 if (cmd->args[1].v.i) // append
2797 play_tree_append_entry(mpctx->playtree->child, e);
2798 else {
2799 // Go back to the starting point.
2800 while (play_tree_iter_up_step
2801 (mpctx->playtree_iter, 0, 1)
2802 != PLAY_TREE_ITER_END)
2803 /* NOP */ ;
2804 play_tree_free_list(mpctx->playtree->child, 1);
2805 play_tree_set_child(mpctx->playtree, e);
2806 pt_iter_goto_head(mpctx->playtree_iter);
2807 mpctx->stop_play = PT_NEXT_SRC;
2811 break;
2813 case MP_CMD_STOP:
2814 // Go back to the starting point.
2815 while (play_tree_iter_up_step
2816 (mpctx->playtree_iter, 0, 1) != PLAY_TREE_ITER_END)
2817 /* NOP */ ;
2818 mpctx->stop_play = PT_STOP;
2819 break;
2821 #ifdef CONFIG_RADIO
2822 case MP_CMD_RADIO_STEP_CHANNEL:
2823 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO) {
2824 int v = cmd->args[0].v.i;
2825 if (v > 0)
2826 radio_step_channel(mpctx->demuxer->stream,
2827 RADIO_CHANNEL_HIGHER);
2828 else
2829 radio_step_channel(mpctx->demuxer->stream,
2830 RADIO_CHANNEL_LOWER);
2831 if (radio_get_channel_name(mpctx->demuxer->stream)) {
2832 set_osd_msg(OSD_MSG_RADIO_CHANNEL, 1, osd_duration,
2833 _("Channel: %s"),
2834 radio_get_channel_name(mpctx->demuxer->stream));
2837 break;
2839 case MP_CMD_RADIO_SET_CHANNEL:
2840 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO) {
2841 radio_set_channel(mpctx->demuxer->stream, cmd->args[0].v.s);
2842 if (radio_get_channel_name(mpctx->demuxer->stream)) {
2843 set_osd_msg(OSD_MSG_RADIO_CHANNEL, 1, osd_duration,
2844 _("Channel: %s"),
2845 radio_get_channel_name(mpctx->demuxer->stream));
2848 break;
2850 case MP_CMD_RADIO_SET_FREQ:
2851 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO)
2852 radio_set_freq(mpctx->demuxer->stream, cmd->args[0].v.f);
2853 break;
2855 case MP_CMD_RADIO_STEP_FREQ:
2856 if (mpctx->demuxer->stream->type == STREAMTYPE_RADIO)
2857 radio_step_freq(mpctx->demuxer->stream, cmd->args[0].v.f);
2858 break;
2859 #endif
2861 #ifdef CONFIG_TV
2862 case MP_CMD_TV_START_SCAN:
2863 if (mpctx->file_format == DEMUXER_TYPE_TV)
2864 tv_start_scan((tvi_handle_t *) (mpctx->demuxer->priv),1);
2865 break;
2866 case MP_CMD_TV_SET_FREQ:
2867 if (mpctx->file_format == DEMUXER_TYPE_TV)
2868 tv_set_freq((tvi_handle_t *) (mpctx->demuxer->priv),
2869 cmd->args[0].v.f * 16.0);
2870 #ifdef CONFIG_PVR
2871 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
2872 pvr_set_freq (mpctx->stream, ROUND (cmd->args[0].v.f));
2873 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
2874 pvr_get_current_channelname (mpctx->stream),
2875 pvr_get_current_stationname (mpctx->stream));
2877 #endif /* CONFIG_PVR */
2878 break;
2880 case MP_CMD_TV_STEP_FREQ:
2881 if (mpctx->file_format == DEMUXER_TYPE_TV)
2882 tv_step_freq((tvi_handle_t *) (mpctx->demuxer->priv),
2883 cmd->args[0].v.f * 16.0);
2884 #ifdef CONFIG_PVR
2885 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
2886 pvr_force_freq_step (mpctx->stream, ROUND (cmd->args[0].v.f));
2887 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: f %d",
2888 pvr_get_current_channelname (mpctx->stream),
2889 pvr_get_current_frequency (mpctx->stream));
2891 #endif /* CONFIG_PVR */
2892 break;
2894 case MP_CMD_TV_SET_NORM:
2895 if (mpctx->file_format == DEMUXER_TYPE_TV)
2896 tv_set_norm((tvi_handle_t *) (mpctx->demuxer->priv),
2897 cmd->args[0].v.s);
2898 break;
2900 case MP_CMD_TV_STEP_CHANNEL:{
2901 if (mpctx->file_format == DEMUXER_TYPE_TV) {
2902 int v = cmd->args[0].v.i;
2903 if (v > 0) {
2904 tv_step_channel((tvi_handle_t *) (mpctx->
2905 demuxer->priv),
2906 TV_CHANNEL_HIGHER);
2907 } else {
2908 tv_step_channel((tvi_handle_t *) (mpctx->
2909 demuxer->priv),
2910 TV_CHANNEL_LOWER);
2912 if (tv_channel_list) {
2913 set_osd_msg(OSD_MSG_TV_CHANNEL, 1, osd_duration,
2914 _("Channel: %s"), tv_channel_current->name);
2915 //vo_osd_changed(OSDTYPE_SUBTITLE);
2918 #ifdef CONFIG_PVR
2919 else if (mpctx->stream &&
2920 mpctx->stream->type == STREAMTYPE_PVR) {
2921 pvr_set_channel_step (mpctx->stream, cmd->args[0].v.i);
2922 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
2923 pvr_get_current_channelname (mpctx->stream),
2924 pvr_get_current_stationname (mpctx->stream));
2926 #endif /* CONFIG_PVR */
2928 #ifdef CONFIG_DVBIN
2929 if (mpctx->stream->type == STREAMTYPE_DVB) {
2930 int dir;
2931 int v = cmd->args[0].v.i;
2933 mpctx->last_dvb_step = v;
2934 if (v > 0)
2935 dir = DVB_CHANNEL_HIGHER;
2936 else
2937 dir = DVB_CHANNEL_LOWER;
2940 if (dvb_step_channel(mpctx->stream, dir)) {
2941 mpctx->stop_play = PT_NEXT_ENTRY;
2942 mpctx->dvbin_reopen = 1;
2945 #endif /* CONFIG_DVBIN */
2946 break;
2948 case MP_CMD_TV_SET_CHANNEL:
2949 if (mpctx->file_format == DEMUXER_TYPE_TV) {
2950 tv_set_channel((tvi_handle_t *) (mpctx->demuxer->priv),
2951 cmd->args[0].v.s);
2952 if (tv_channel_list) {
2953 set_osd_msg(OSD_MSG_TV_CHANNEL, 1, osd_duration,
2954 _("Channel: %s"), tv_channel_current->name);
2955 //vo_osd_changed(OSDTYPE_SUBTITLE);
2958 #ifdef CONFIG_PVR
2959 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
2960 pvr_set_channel (mpctx->stream, cmd->args[0].v.s);
2961 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
2962 pvr_get_current_channelname (mpctx->stream),
2963 pvr_get_current_stationname (mpctx->stream));
2965 #endif /* CONFIG_PVR */
2966 break;
2968 #ifdef CONFIG_DVBIN
2969 case MP_CMD_DVB_SET_CHANNEL:
2970 if (mpctx->stream->type == STREAMTYPE_DVB) {
2971 mpctx->last_dvb_step = 1;
2973 if (dvb_set_channel(mpctx->stream, cmd->args[1].v.i,
2974 cmd->args[0].v.i)) {
2975 mpctx->stop_play = PT_NEXT_ENTRY;
2976 mpctx->dvbin_reopen = 1;
2979 break;
2980 #endif /* CONFIG_DVBIN */
2982 case MP_CMD_TV_LAST_CHANNEL:
2983 if (mpctx->file_format == DEMUXER_TYPE_TV) {
2984 tv_last_channel((tvi_handle_t *) (mpctx->demuxer->priv));
2985 if (tv_channel_list) {
2986 set_osd_msg(OSD_MSG_TV_CHANNEL, 1, osd_duration,
2987 _("Channel: %s"), tv_channel_current->name);
2988 //vo_osd_changed(OSDTYPE_SUBTITLE);
2991 #ifdef CONFIG_PVR
2992 else if (mpctx->stream && mpctx->stream->type == STREAMTYPE_PVR) {
2993 pvr_set_lastchannel (mpctx->stream);
2994 set_osd_msg (OSD_MSG_TV_CHANNEL, 1, osd_duration, "%s: %s",
2995 pvr_get_current_channelname (mpctx->stream),
2996 pvr_get_current_stationname (mpctx->stream));
2998 #endif /* CONFIG_PVR */
2999 break;
3001 case MP_CMD_TV_STEP_NORM:
3002 if (mpctx->file_format == DEMUXER_TYPE_TV)
3003 tv_step_norm((tvi_handle_t *) (mpctx->demuxer->priv));
3004 break;
3006 case MP_CMD_TV_STEP_CHANNEL_LIST:
3007 if (mpctx->file_format == DEMUXER_TYPE_TV)
3008 tv_step_chanlist((tvi_handle_t *) (mpctx->demuxer->priv));
3009 break;
3010 #endif /* CONFIG_TV */
3011 case MP_CMD_TV_TELETEXT_ADD_DEC:
3013 if (mpctx->demuxer->teletext)
3014 teletext_control(mpctx->demuxer->teletext,TV_VBI_CONTROL_ADD_DEC,
3015 &(cmd->args[0].v.s));
3016 break;
3018 case MP_CMD_TV_TELETEXT_GO_LINK:
3020 if (mpctx->demuxer->teletext)
3021 teletext_control(mpctx->demuxer->teletext,TV_VBI_CONTROL_GO_LINK,
3022 &(cmd->args[0].v.i));
3023 break;
3026 case MP_CMD_SUB_LOAD:
3027 if (sh_video) {
3028 int n = mpctx->set_of_sub_size;
3029 add_subtitles(mpctx, cmd->args[0].v.s, sh_video->fps, 0);
3030 if (n != mpctx->set_of_sub_size) {
3031 if (mpctx->global_sub_indices[SUB_SOURCE_SUBS] < 0)
3032 mpctx->global_sub_indices[SUB_SOURCE_SUBS] =
3033 mpctx->global_sub_size;
3034 ++mpctx->global_sub_size;
3037 break;
3039 case MP_CMD_SUB_REMOVE:
3040 if (sh_video) {
3041 int v = cmd->args[0].v.i;
3042 sub_data *subd;
3043 if (v < 0) {
3044 for (v = 0; v < mpctx->set_of_sub_size; ++v) {
3045 subd = mpctx->set_of_subtitles[v];
3046 mp_tmsg(MSGT_CPLAYER, MSGL_STATUS,
3047 "SUB: Removed subtitle file (%d): %s\n", v + 1,
3048 filename_recode(subd->filename));
3049 sub_free(subd);
3050 mpctx->set_of_subtitles[v] = NULL;
3052 mpctx->global_sub_indices[SUB_SOURCE_SUBS] = -1;
3053 mpctx->global_sub_size -= mpctx->set_of_sub_size;
3054 mpctx->set_of_sub_size = 0;
3055 if (mpctx->set_of_sub_pos >= 0) {
3056 mpctx->global_sub_pos = -2;
3057 subdata = NULL;
3058 mp_input_queue_cmd(mpctx->input,
3059 mp_input_parse_cmd("sub_select"));
3061 } else if (v < mpctx->set_of_sub_size) {
3062 subd = mpctx->set_of_subtitles[v];
3063 mp_msg(MSGT_CPLAYER, MSGL_STATUS,
3064 "SUB: Removed subtitle file (%d): %s\n", v + 1,
3065 filename_recode(subd->filename));
3066 sub_free(subd);
3067 if (mpctx->set_of_sub_pos == v) {
3068 mpctx->global_sub_pos = -2;
3069 subdata = NULL;
3070 mp_input_queue_cmd(mpctx->input,
3071 mp_input_parse_cmd("sub_select"));
3072 } else if (mpctx->set_of_sub_pos > v) {
3073 --mpctx->set_of_sub_pos;
3074 --mpctx->global_sub_pos;
3076 while (++v < mpctx->set_of_sub_size)
3077 mpctx->set_of_subtitles[v - 1] =
3078 mpctx->set_of_subtitles[v];
3079 --mpctx->set_of_sub_size;
3080 --mpctx->global_sub_size;
3081 if (mpctx->set_of_sub_size <= 0)
3082 mpctx->global_sub_indices[SUB_SOURCE_SUBS] = -1;
3083 mpctx->set_of_subtitles[mpctx->set_of_sub_size] = NULL;
3086 break;
3088 case MP_CMD_GET_SUB_VISIBILITY:
3089 if (sh_video) {
3090 mp_msg(MSGT_GLOBAL, MSGL_INFO,
3091 "ANS_SUB_VISIBILITY=%d\n", sub_visibility);
3093 break;
3095 case MP_CMD_SCREENSHOT:
3096 if (mpctx->video_out && mpctx->video_out->config_ok) {
3097 mp_msg(MSGT_CPLAYER, MSGL_INFO, "sending VFCTRL_SCREENSHOT!\n");
3098 if (CONTROL_OK !=
3099 ((vf_instance_t *) sh_video->vfilter)->
3100 control(sh_video->vfilter, VFCTRL_SCREENSHOT,
3101 &cmd->args[0].v.i))
3102 mp_msg(MSGT_CPLAYER, MSGL_INFO, "failed (forgot -vf screenshot?)\n");
3104 break;
3106 case MP_CMD_VF_CHANGE_RECTANGLE:
3107 if (!sh_video)
3108 break;
3109 set_rectangle(sh_video, cmd->args[0].v.i, cmd->args[1].v.i);
3110 break;
3112 case MP_CMD_GET_TIME_LENGTH:{
3113 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_LENGTH=%.2f\n",
3114 demuxer_get_time_length(mpctx->demuxer));
3116 break;
3118 case MP_CMD_GET_FILENAME:{
3119 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_FILENAME='%s'\n",
3120 get_metadata(mpctx, META_NAME));
3122 break;
3124 case MP_CMD_GET_VIDEO_CODEC:{
3125 char *inf = get_metadata(mpctx, META_VIDEO_CODEC);
3126 if (!inf)
3127 inf = strdup("");
3128 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_VIDEO_CODEC='%s'\n", inf);
3129 free(inf);
3131 break;
3133 case MP_CMD_GET_VIDEO_BITRATE:{
3134 char *inf = get_metadata(mpctx, META_VIDEO_BITRATE);
3135 if (!inf)
3136 inf = strdup("");
3137 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_VIDEO_BITRATE='%s'\n", inf);
3138 free(inf);
3140 break;
3142 case MP_CMD_GET_VIDEO_RESOLUTION:{
3143 char *inf = get_metadata(mpctx, META_VIDEO_RESOLUTION);
3144 if (!inf)
3145 inf = strdup("");
3146 mp_msg(MSGT_GLOBAL, MSGL_INFO,
3147 "ANS_VIDEO_RESOLUTION='%s'\n", inf);
3148 free(inf);
3150 break;
3152 case MP_CMD_GET_AUDIO_CODEC:{
3153 char *inf = get_metadata(mpctx, META_AUDIO_CODEC);
3154 if (!inf)
3155 inf = strdup("");
3156 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_AUDIO_CODEC='%s'\n", inf);
3157 free(inf);
3159 break;
3161 case MP_CMD_GET_AUDIO_BITRATE:{
3162 char *inf = get_metadata(mpctx, META_AUDIO_BITRATE);
3163 if (!inf)
3164 inf = strdup("");
3165 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_AUDIO_BITRATE='%s'\n", inf);
3166 free(inf);
3168 break;
3170 case MP_CMD_GET_AUDIO_SAMPLES:{
3171 char *inf = get_metadata(mpctx, META_AUDIO_SAMPLES);
3172 if (!inf)
3173 inf = strdup("");
3174 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_AUDIO_SAMPLES='%s'\n", inf);
3175 free(inf);
3177 break;
3179 case MP_CMD_GET_META_TITLE:{
3180 char *inf = get_metadata(mpctx, META_INFO_TITLE);
3181 if (!inf)
3182 inf = strdup("");
3183 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_TITLE='%s'\n", inf);
3184 free(inf);
3186 break;
3188 case MP_CMD_GET_META_ARTIST:{
3189 char *inf = get_metadata(mpctx, META_INFO_ARTIST);
3190 if (!inf)
3191 inf = strdup("");
3192 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_ARTIST='%s'\n", inf);
3193 free(inf);
3195 break;
3197 case MP_CMD_GET_META_ALBUM:{
3198 char *inf = get_metadata(mpctx, META_INFO_ALBUM);
3199 if (!inf)
3200 inf = strdup("");
3201 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_ALBUM='%s'\n", inf);
3202 free(inf);
3204 break;
3206 case MP_CMD_GET_META_YEAR:{
3207 char *inf = get_metadata(mpctx, META_INFO_YEAR);
3208 if (!inf)
3209 inf = strdup("");
3210 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_YEAR='%s'\n", inf);
3211 free(inf);
3213 break;
3215 case MP_CMD_GET_META_COMMENT:{
3216 char *inf = get_metadata(mpctx, META_INFO_COMMENT);
3217 if (!inf)
3218 inf = strdup("");
3219 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_COMMENT='%s'\n", inf);
3220 free(inf);
3222 break;
3224 case MP_CMD_GET_META_TRACK:{
3225 char *inf = get_metadata(mpctx, META_INFO_TRACK);
3226 if (!inf)
3227 inf = strdup("");
3228 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_TRACK='%s'\n", inf);
3229 free(inf);
3231 break;
3233 case MP_CMD_GET_META_GENRE:{
3234 char *inf = get_metadata(mpctx, META_INFO_GENRE);
3235 if (!inf)
3236 inf = strdup("");
3237 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_META_GENRE='%s'\n", inf);
3238 free(inf);
3240 break;
3242 case MP_CMD_GET_VO_FULLSCREEN:
3243 if (mpctx->video_out && mpctx->video_out->config_ok)
3244 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_VO_FULLSCREEN=%d\n", vo_fs);
3245 break;
3247 case MP_CMD_GET_PERCENT_POS:
3248 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_PERCENT_POSITION=%d\n",
3249 demuxer_get_percent_pos(mpctx->demuxer));
3250 break;
3252 case MP_CMD_GET_TIME_POS:{
3253 float pos = 0;
3254 if (sh_video)
3255 pos = sh_video->pts;
3256 else if (sh_audio && mpctx->audio_out)
3257 pos = playing_audio_pts(mpctx);
3258 mp_msg(MSGT_GLOBAL, MSGL_INFO, "ANS_TIME_POSITION=%.1f\n", pos);
3260 break;
3262 case MP_CMD_RUN:
3263 #ifndef __MINGW32__
3264 if (!fork()) {
3265 execl("/bin/sh", "sh", "-c", cmd->args[0].v.s, NULL);
3266 exit(0);
3268 #endif
3269 break;
3271 case MP_CMD_KEYDOWN_EVENTS:
3272 mplayer_put_key(mpctx->key_fifo, cmd->args[0].v.i);
3273 break;
3275 case MP_CMD_SET_MOUSE_POS:{
3276 int pointer_x, pointer_y;
3277 double dx, dy;
3278 pointer_x = cmd->args[0].v.i;
3279 pointer_y = cmd->args[1].v.i;
3280 rescale_input_coordinates(mpctx, pointer_x, pointer_y, &dx, &dy);
3281 #ifdef CONFIG_DVDNAV
3282 if (mpctx->stream->type == STREAMTYPE_DVDNAV
3283 && dx > 0.0 && dy > 0.0) {
3284 int button = -1;
3285 pointer_x = (int) (dx * (double) sh_video->disp_w);
3286 pointer_y = (int) (dy * (double) sh_video->disp_h);
3287 mp_dvdnav_update_mouse_pos(mpctx->stream,
3288 pointer_x, pointer_y, &button);
3289 if (opts->osd_level > 1 && button > 0)
3290 set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
3291 "Selected button number %d", button);
3293 #endif
3294 #ifdef CONFIG_MENU
3295 if (use_menu && dx >= 0.0 && dy >= 0.0)
3296 menu_update_mouse_pos(dx, dy);
3297 #endif
3299 break;
3301 #ifdef CONFIG_DVDNAV
3302 case MP_CMD_DVDNAV:{
3303 int button = -1;
3304 int i;
3305 mp_command_type command = 0;
3306 if (mpctx->stream->type != STREAMTYPE_DVDNAV)
3307 break;
3309 for (i = 0; mp_dvdnav_bindings[i].name; i++)
3310 if (cmd->args[0].v.s &&
3311 !strcasecmp (cmd->args[0].v.s,
3312 mp_dvdnav_bindings[i].name))
3313 command = mp_dvdnav_bindings[i].cmd;
3315 mp_dvdnav_handle_input(mpctx->stream,command,&button);
3316 if (opts->osd_level > 1 && button > 0)
3317 set_osd_msg(OSD_MSG_TEXT, 1, osd_duration,
3318 "Selected button number %d", button);
3320 break;
3322 case MP_CMD_SWITCH_TITLE:
3323 if (mpctx->stream->type == STREAMTYPE_DVDNAV)
3324 mp_dvdnav_switch_title(mpctx->stream, cmd->args[0].v.i);
3325 break;
3327 #endif
3329 default:
3330 mp_msg(MSGT_CPLAYER, MSGL_V,
3331 "Received unknown cmd %s\n", cmd->name);
3334 switch (cmd->pausing) {
3335 case 1: // "pausing"
3336 pause_player(mpctx);
3337 break;
3338 case 3: // "pausing_toggle"
3339 if (mpctx->paused)
3340 unpause_player(mpctx);
3341 else
3342 pause_player(mpctx);
3343 break;