mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 23:22:54 +00:00
schro: Fix usage of adapter_masked_scan_uint32
Because *somebody* changed the API without telling me.
This commit is contained in:
parent
62002aead9
commit
27cb39b028
2 changed files with 2 additions and 2 deletions
|
@ -558,7 +558,7 @@ gst_schro_dec_scan_for_sync (GstBaseVideoDecoder * base_video_decoder,
|
|||
|
||||
n_available -= 3;
|
||||
|
||||
return gst_adapter_masked_scan_uint32 (adapter, 0x42424344, 0xffffffff,
|
||||
return gst_adapter_masked_scan_uint32 (adapter, 0xffffffff, 0x42424344,
|
||||
offset, MIN (n, n_available - 3));
|
||||
}
|
||||
|
||||
|
|
|
@ -311,7 +311,7 @@ gst_schro_parse_scan_for_sync (GstAdapter * adapter, gboolean at_eos,
|
|||
|
||||
n_available -= 3;
|
||||
|
||||
return gst_adapter_masked_scan_uint32 (adapter, 0x42424344, 0xffffffff,
|
||||
return gst_adapter_masked_scan_uint32 (adapter, 0xffffffff, 0x42424344,
|
||||
offset, MIN (n, n_available - 3));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue