mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-10 10:33:29 -05:00
LimeSDR: removed sampleRate from MsgGetStreamInfo as it has been removed from lms_stream_status_t and is not used actually
This commit is contained in:
parent
2beba446f3
commit
8a6ef95903
@ -629,7 +629,6 @@ bool LimeSDROutput::handleMessage(const Message& message)
|
||||
status.underrun,
|
||||
status.overrun,
|
||||
status.droppedPackets,
|
||||
status.sampleRate,
|
||||
status.linkRate,
|
||||
status.timestamp);
|
||||
m_deviceAPI->getSampleSinkGUIMessageQueue()->push(report);
|
||||
@ -647,7 +646,6 @@ bool LimeSDROutput::handleMessage(const Message& message)
|
||||
0, // status.underrun,
|
||||
0, // status.overrun,
|
||||
0, // status.droppedPackets,
|
||||
0, // status.sampleRate,
|
||||
0, // status.linkRate,
|
||||
0); // status.timestamp);
|
||||
m_deviceAPI->getSampleSinkGUIMessageQueue()->push(report);
|
||||
|
@ -114,7 +114,6 @@ public:
|
||||
uint32_t getUnderrun() const { return m_underrun; }
|
||||
uint32_t getOverrun() const { return m_overrun; }
|
||||
uint32_t getDroppedPackets() const { return m_droppedPackets; }
|
||||
float getSampleRate() const { return m_sampleRate; }
|
||||
float getLinkRate() const { return m_linkRate; }
|
||||
uint64_t getTimestamp() const { return m_timestamp; }
|
||||
|
||||
@ -126,7 +125,6 @@ public:
|
||||
uint32_t underrun,
|
||||
uint32_t overrun,
|
||||
uint32_t droppedPackets,
|
||||
float sampleRate,
|
||||
float linkRate,
|
||||
uint64_t timestamp
|
||||
)
|
||||
@ -139,7 +137,6 @@ public:
|
||||
underrun,
|
||||
overrun,
|
||||
droppedPackets,
|
||||
sampleRate,
|
||||
linkRate,
|
||||
timestamp
|
||||
);
|
||||
@ -154,7 +151,6 @@ public:
|
||||
uint32_t m_underrun; //!< FIFO underrun count
|
||||
uint32_t m_overrun; //!< FIFO overrun count
|
||||
uint32_t m_droppedPackets; //!< Number of dropped packets by HW
|
||||
float m_sampleRate; //!< Sampling rate of the stream
|
||||
float m_linkRate; //!< Combined data rate of all stream of the same direction (TX or RX)
|
||||
uint64_t m_timestamp; //!< Current HW timestamp
|
||||
|
||||
@ -166,7 +162,6 @@ public:
|
||||
uint32_t underrun,
|
||||
uint32_t overrun,
|
||||
uint32_t droppedPackets,
|
||||
float sampleRate,
|
||||
float linkRate,
|
||||
uint64_t timestamp
|
||||
) :
|
||||
@ -178,7 +173,6 @@ public:
|
||||
m_underrun(underrun),
|
||||
m_overrun(overrun),
|
||||
m_droppedPackets(droppedPackets),
|
||||
m_sampleRate(sampleRate),
|
||||
m_linkRate(linkRate),
|
||||
m_timestamp(timestamp)
|
||||
{ }
|
||||
|
@ -628,7 +628,6 @@ bool LimeSDRInput::handleMessage(const Message& message)
|
||||
status.underrun,
|
||||
status.overrun,
|
||||
status.droppedPackets,
|
||||
status.sampleRate,
|
||||
status.linkRate,
|
||||
status.timestamp);
|
||||
m_deviceAPI->getSampleSourceGUIMessageQueue()->push(report);
|
||||
@ -646,7 +645,6 @@ bool LimeSDRInput::handleMessage(const Message& message)
|
||||
0, // status.underrun,
|
||||
0, // status.overrun,
|
||||
0, // status.droppedPackets,
|
||||
0, // status.sampleRate,
|
||||
0, // status.linkRate,
|
||||
0); // status.timestamp);
|
||||
m_deviceAPI->getSampleSourceGUIMessageQueue()->push(report);
|
||||
|
@ -97,7 +97,6 @@ public:
|
||||
uint32_t getUnderrun() const { return m_underrun; }
|
||||
uint32_t getOverrun() const { return m_overrun; }
|
||||
uint32_t getDroppedPackets() const { return m_droppedPackets; }
|
||||
float getSampleRate() const { return m_sampleRate; }
|
||||
float getLinkRate() const { return m_linkRate; }
|
||||
uint64_t getTimestamp() const { return m_timestamp; }
|
||||
|
||||
@ -109,7 +108,6 @@ public:
|
||||
uint32_t underrun,
|
||||
uint32_t overrun,
|
||||
uint32_t droppedPackets,
|
||||
float sampleRate,
|
||||
float linkRate,
|
||||
uint64_t timestamp
|
||||
)
|
||||
@ -122,7 +120,6 @@ public:
|
||||
underrun,
|
||||
overrun,
|
||||
droppedPackets,
|
||||
sampleRate,
|
||||
linkRate,
|
||||
timestamp
|
||||
);
|
||||
@ -137,7 +134,6 @@ public:
|
||||
uint32_t m_underrun; //!< FIFO underrun count
|
||||
uint32_t m_overrun; //!< FIFO overrun count
|
||||
uint32_t m_droppedPackets; //!< Number of dropped packets by HW
|
||||
float m_sampleRate; //!< Sampling rate of the stream
|
||||
float m_linkRate; //!< Combined data rate of all stream of the same direction (TX or RX)
|
||||
uint64_t m_timestamp; //!< Current HW timestamp
|
||||
|
||||
@ -149,7 +145,6 @@ public:
|
||||
uint32_t underrun,
|
||||
uint32_t overrun,
|
||||
uint32_t droppedPackets,
|
||||
float sampleRate,
|
||||
float linkRate,
|
||||
uint64_t timestamp
|
||||
) :
|
||||
@ -161,7 +156,6 @@ public:
|
||||
m_underrun(underrun),
|
||||
m_overrun(overrun),
|
||||
m_droppedPackets(droppedPackets),
|
||||
m_sampleRate(sampleRate),
|
||||
m_linkRate(linkRate),
|
||||
m_timestamp(timestamp)
|
||||
{ }
|
||||
|
Loading…
Reference in New Issue
Block a user