schro: Fix usage of adapter_masked_scan_uint32

Because *somebody* changed the API without telling me.
This commit is contained in:
David Schleef 2009-05-22 21:27:58 -07:00
parent 62002aead9
commit 27cb39b028
2 changed files with 2 additions and 2 deletions

View file

@ -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));
}

View file

@ -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));
}