summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
authorAndrey Morozov <morozov.andrey.vmk@gmail.com>2014-07-02 02:14:30 +0400
committerwm4 <wm4@nowhere>2014-07-02 01:28:11 +0200
commitb1969c0ebabac517ec2b428cd5374186e461ff10 (patch)
treeede602f321aa94f5a738e1777a748427471e4190 /player/command.c
parent9fee8fd3b3b319908861d8f41c4342d746aecc04 (diff)
downloadmpv-b1969c0ebabac517ec2b428cd5374186e461ff10.tar.bz2
mpv-b1969c0ebabac517ec2b428cd5374186e461ff10.tar.xz
command: change cache perentage to float, add cache-free and cache-used
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c99
1 files changed, 97 insertions, 2 deletions
diff --git a/player/command.c b/player/command.c
index 6edb9115d3..a2f9e53a79 100644
--- a/player/command.c
+++ b/player/command.c
@@ -1086,10 +1086,11 @@ static int mp_property_cache(void *ctx, struct m_property *prop,
int action, void *arg)
{
MPContext *mpctx = ctx;
- int cache = mp_get_cache_percent(mpctx);
+ float cache = mp_get_cache_percent(mpctx);
if (cache < 0)
return M_PROPERTY_UNAVAILABLE;
- return m_property_int_ro(action, arg, cache);
+
+ return m_property_float_ro(action, arg, cache);
}
static int mp_property_cache_size(void *ctx, struct m_property *prop,
@@ -1123,10 +1124,102 @@ static int mp_property_cache_size(void *ctx, struct m_property *prop,
return M_PROPERTY_OK;
return M_PROPERTY_ERROR;
}
+ case M_PROPERTY_PRINT: {
+ int64_t size = -1;
+ stream_control(mpctx->stream, STREAM_CTRL_GET_CACHE_SIZE, &size);
+ if (size <= 0)
+ break;
+ *(char **)arg = format_file_size(size);
+ return M_PROPERTY_OK;
+ }
+
}
return M_PROPERTY_NOT_IMPLEMENTED;
}
+static int mp_property_cache_used(void *ctx, struct m_property *prop,
+ int action, void *arg)
+{
+ MPContext *mpctx = ctx;
+ if (!mpctx->stream)
+ return M_PROPERTY_UNAVAILABLE;
+ switch (action) {
+ case M_PROPERTY_GET: {
+ int64_t size = -1;
+ stream_control(mpctx->stream, STREAM_CTRL_GET_CACHE_FILL, &size);
+ if (size <= 0)
+ break;
+ *(int *)arg = size / 1024;
+ return M_PROPERTY_OK;
+ }
+ case M_PROPERTY_GET_TYPE:
+ *(struct m_option *)arg = (struct m_option){
+ .type = CONF_TYPE_INT,
+ .flags = M_OPT_MIN,
+ .min = 0,
+ };
+ return M_PROPERTY_OK;
+ case M_PROPERTY_PRINT: {
+ int64_t size = -1;
+ stream_control(mpctx->stream, STREAM_CTRL_GET_CACHE_FILL, &size);
+ if (size <= 0)
+ break;
+ *(char **)arg = format_file_size(size);
+ return M_PROPERTY_OK;
+ }
+
+ }
+ return M_PROPERTY_NOT_IMPLEMENTED;
+}
+
+static int mp_property_cache_free(void *ctx, struct m_property *prop,
+ int action, void *arg)
+{
+ MPContext *mpctx = ctx;
+ if (!mpctx->stream)
+ return M_PROPERTY_UNAVAILABLE;
+ switch (action) {
+ case M_PROPERTY_GET: {
+ int64_t size_used = -1;
+ stream_control(mpctx->stream, STREAM_CTRL_GET_CACHE_FILL, &size_used);
+ if (size_used <= 0)
+ break;
+
+ int64_t size = -1;
+ stream_control(mpctx->stream, STREAM_CTRL_GET_CACHE_SIZE, &size);
+ if (size <= 0)
+ break;
+
+ *(int *)arg = (size - size_used) / 1024;
+ return M_PROPERTY_OK;
+ }
+ case M_PROPERTY_GET_TYPE:
+ *(struct m_option *)arg = (struct m_option){
+ .type = CONF_TYPE_INT,
+ .flags = M_OPT_MIN,
+ .min = 0,
+ };
+ return M_PROPERTY_OK;
+ case M_PROPERTY_PRINT: {
+ int64_t size_used = -1;
+ stream_control(mpctx->stream, STREAM_CTRL_GET_CACHE_FILL, &size_used);
+ if (size_used <= 0)
+ break;
+
+ int64_t size = -1;
+ stream_control(mpctx->stream, STREAM_CTRL_GET_CACHE_SIZE, &size);
+ if (size <= 0)
+ break;
+
+ *(char **)arg = format_file_size(size - size_used);
+ return M_PROPERTY_OK;
+ }
+
+ }
+ return M_PROPERTY_NOT_IMPLEMENTED;
+}
+
+
static int mp_property_paused_for_cache(void *ctx, struct m_property *prop,
int action, void *arg)
{
@@ -2620,6 +2713,8 @@ static const struct m_property mp_properties[] = {
{"core-idle", mp_property_core_idle},
{"eof-reached", mp_property_eof_reached},
{"cache", mp_property_cache},
+ {"cache-free", mp_property_cache_free},
+ {"cache-used", mp_property_cache_used},
{"cache-size", mp_property_cache_size},
{"paused-for-cache", mp_property_paused_for_cache},
{"pts-association-mode", mp_property_generic_option},