From 59b89b983061e76000909fef29885267a97ae51a Mon Sep 17 00:00:00 2001 From: Victor Szabo Date: Tue, 4 Jun 2024 18:19:23 -0400 Subject: [PATCH] fix: clock rate import path --- vpx_rtp/received_rtp_stream_statistics.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vpx_rtp/received_rtp_stream_statistics.py b/vpx_rtp/received_rtp_stream_statistics.py index c7e1e73..a287d3d 100644 --- a/vpx_rtp/received_rtp_stream_statistics.py +++ b/vpx_rtp/received_rtp_stream_statistics.py @@ -1,4 +1,5 @@ -from vpx_rtp.rtp import RtpPacket, VIDEO_CLOCK_RATE +from vpx_rtp.codecs.vpx import VIDEO_CLOCK_RATE +from vpx_rtp.rtp import RtpPacket # From https://github.com/aiortc/aiortc/blob/22699ea879f93b6d6dd1af4a200d37b9ff560870/src/aiortc/rtcrtpreceiver.py