mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-06 16:19:59 +00:00
flacparse: Adjust unit tests to new flacparse behaviour
Garbage after frames is now included in the frames because flacparse has no easy way to detect the real end of a frame. Decoders are expected to everything after the frame because only decoding the bitstream will reveal the real end of the frame. Fixes bug #631814.
This commit is contained in:
parent
f576c3f128
commit
e8341d2129
1 changed files with 23 additions and 0 deletions
|
@ -142,8 +142,19 @@ GST_END_TEST;
|
|||
|
||||
GST_START_TEST (test_parse_flac_drain_garbage)
|
||||
{
|
||||
/* We always output the after frame garbage too because we
|
||||
* have no way of detecting it
|
||||
*/
|
||||
#if 0
|
||||
gst_parser_test_drain_garbage (flac_frame, sizeof (flac_frame),
|
||||
garbage_frame, sizeof (garbage_frame));
|
||||
#endif
|
||||
guint8 frame[sizeof (flac_frame) + sizeof (garbage_frame)];
|
||||
|
||||
memcpy (frame, flac_frame, sizeof (flac_frame));
|
||||
memcpy (frame + sizeof (flac_frame), garbage_frame, sizeof (garbage_frame));
|
||||
|
||||
gst_parser_test_drain_single (frame, sizeof (frame));
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
@ -159,8 +170,20 @@ GST_END_TEST;
|
|||
|
||||
GST_START_TEST (test_parse_flac_skip_garbage)
|
||||
{
|
||||
/* We always include the garbage into the frame because
|
||||
* we have no easy way for finding the real end of the
|
||||
* frame. The decoder will later skip the garbage
|
||||
*/
|
||||
#if 0
|
||||
gst_parser_test_skip_garbage (flac_frame, sizeof (flac_frame),
|
||||
garbage_frame, sizeof (garbage_frame));
|
||||
#endif
|
||||
guint8 frame[sizeof (flac_frame) + sizeof (garbage_frame)];
|
||||
|
||||
memcpy (frame, flac_frame, sizeof (flac_frame));
|
||||
memcpy (frame + sizeof (flac_frame), garbage_frame, sizeof (garbage_frame));
|
||||
|
||||
gst_parser_test_normal (frame, sizeof (frame));
|
||||
}
|
||||
|
||||
GST_END_TEST;
|
||||
|
|
Loading…
Reference in a new issue