summaryrefslogtreecommitdiffstats
path: root/player/command.c
diff options
context:
space:
mode:
Diffstat (limited to 'player/command.c')
-rw-r--r--player/command.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/player/command.c b/player/command.c
index dacdbed3f8..3621fae90c 100644
--- a/player/command.c
+++ b/player/command.c
@@ -557,9 +557,7 @@ static int mp_property_file_size(void *ctx, struct m_property *prop,
if (!mpctx->demuxer)
return M_PROPERTY_UNAVAILABLE;
- int64_t size;
- if (demux_stream_control(mpctx->demuxer, STREAM_CTRL_GET_SIZE, &size) < 1)
- return M_PROPERTY_UNAVAILABLE;
+ int64_t size = mpctx->demuxer->filesize;
if (action == M_PROPERTY_PRINT) {
*(char **)arg = format_file_size(size);