From 48bd03dd912321b8bfa12b8b201d2f0b3aa43ae0 Mon Sep 17 00:00:00 2001 From: Martin Herkt Date: Thu, 24 Apr 2014 18:44:46 +0200 Subject: options: remove deprecated --identify Also remove MSGL_SMODE and friends. Note: The indent in options.rst was added to work around a bug in ReportLab that causes the PDF manual build to fail. --- player/loadfile.c | 26 -------------------------- player/playloop.c | 3 --- 2 files changed, 29 deletions(-) (limited to 'player') diff --git a/player/loadfile.c b/player/loadfile.c index f750d8917c..6319d092ce 100644 --- a/player/loadfile.c +++ b/player/loadfile.c @@ -221,36 +221,10 @@ static void print_stream(struct MPContext *mpctx, struct track *t) // legacy compatibility if (!iid) return; - int id = t->user_tid; - MP_SMODE(mpctx, "ID_%s_ID=%d\n", iid, id); - if (t->title) - MP_SMODE(mpctx, "ID_%s_%d_NAME=%s\n", iid, id, t->title); - if (t->lang) - MP_SMODE(mpctx, "ID_%s_%d_LANG=%s\n", iid, id, t->lang); } static void print_file_properties(struct MPContext *mpctx) { - MP_SMODE(mpctx, "ID_FILENAME=%s\n", mpctx->filename); - MP_SMODE(mpctx, - "ID_LENGTH=%.2f\n", get_time_length(mpctx)); - int chapter_count = get_chapter_count(mpctx); - if (chapter_count >= 0) { - MP_SMODE(mpctx, "ID_CHAPTERS=%d\n", chapter_count); - for (int i = 0; i < chapter_count; i++) { - MP_SMODE(mpctx, "ID_CHAPTER_ID=%d\n", i); - // print in milliseconds - double time = chapter_start_time(mpctx, i) * 1000.0; - MP_SMODE(mpctx, "ID_CHAPTER_%d_START=%"PRId64"\n", - i, (int64_t)(time < 0 ? -1 : time)); - char *name = chapter_name(mpctx, i); - if (name) { - MP_SMODE(mpctx, "ID_CHAPTER_%d_NAME=%s\n", i, - name); - talloc_free(name); - } - } - } struct demuxer *demuxer = mpctx->master_demuxer; if (demuxer->num_editions > 1) { for (int n = 0; n < demuxer->num_editions; n++) { diff --git a/player/playloop.c b/player/playloop.c index 67da087475..16d79ea09d 100644 --- a/player/playloop.c +++ b/player/playloop.c @@ -103,9 +103,6 @@ void pause_player(struct MPContext *mpctx) if (mpctx->num_sources) print_status(mpctx); - if (!mpctx->opts->quiet) - MP_SMODE(mpctx, "ID_PAUSED\n"); - end: mp_notify(mpctx, mpctx->opts->pause ? MPV_EVENT_PAUSE : MPV_EVENT_UNPAUSE, 0); } -- cgit v1.2.3