mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 12:32:29 +00:00
qtdemux: Use signed integer type to be able to check for negative subtraction results
CID 1315829
This commit is contained in:
parent
1aee15050c
commit
e9aa4c7467
1 changed files with 1 additions and 1 deletions
|
@ -4882,7 +4882,7 @@ gst_qtdemux_decorate_and_push_buffer (GstQTDemux * qtdemux,
|
||||||
GstStructure *crypto_info;
|
GstStructure *crypto_info;
|
||||||
QtDemuxCencSampleSetInfo *info =
|
QtDemuxCencSampleSetInfo *info =
|
||||||
(QtDemuxCencSampleSetInfo *) stream->protection_scheme_info;
|
(QtDemuxCencSampleSetInfo *) stream->protection_scheme_info;
|
||||||
guint index;
|
gint index;
|
||||||
GstEvent *event;
|
GstEvent *event;
|
||||||
|
|
||||||
while ((event = g_queue_pop_head (&stream->protection_scheme_event_queue))) {
|
while ((event = g_queue_pop_head (&stream->protection_scheme_event_queue))) {
|
||||||
|
|
Loading…
Reference in a new issue