summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
Diffstat (limited to 'player')
-rw-r--r--player/command.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/player/command.c b/player/command.c
index 1bcf0c47e3..79e522c1d9 100644
--- a/player/command.c
+++ b/player/command.c
@@ -3093,6 +3093,8 @@ static int mp_property_packet_bitrate(void *ctx, struct m_property *prop,
double r[STREAM_TYPE_COUNT];
if (demux_control(mpctx->demuxer, DEMUXER_CTRL_GET_BITRATE_STATS, &r) < 1)
return M_PROPERTY_UNAVAILABLE;
+ if (r[type] < 0)
+ return M_PROPERTY_UNAVAILABLE;
// r[type] is in bytes/second -> bits
double rate = r[type] * 8;