mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
avc: Cycle and packet are unsigned
This commit is contained in:
parent
9f221469ec
commit
7ac4cd7ef5
1 changed files with 2 additions and 2 deletions
|
@ -224,8 +224,8 @@ MyStructuredDataPushProc (UInt32 CycleDataCount,
|
|||
GstAVCSrc *avcsrc = GST_AVC_SRC (pRefCon);
|
||||
|
||||
if (avcsrc) {
|
||||
for (int cycle = 0; cycle < CycleDataCount; cycle++) {
|
||||
for (int sourcePacket = 0; sourcePacket < pCycleData[cycle].tsPacketCount;
|
||||
for (UInt32 cycle = 0; cycle < CycleDataCount; cycle++) {
|
||||
for (UInt32 sourcePacket = 0; sourcePacket < pCycleData[cycle].tsPacketCount;
|
||||
sourcePacket++) {
|
||||
GstBuffer *buffer;
|
||||
|
||||
|
|
Loading…
Reference in a new issue