From e66ee5491c308dfbb6f82956c567d91977d223eb Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Mon, 5 Sep 2016 09:39:08 +0100 Subject: [PATCH] aacparse: make it clear when a potential LOAS frame is not one https://bugzilla.gnome.org/show_bug.cgi?id=769278 --- gst/audioparsers/gstaacparse.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gst/audioparsers/gstaacparse.c b/gst/audioparsers/gstaacparse.c index 52cc34f..c95341c 100644 --- a/gst/audioparsers/gstaacparse.c +++ b/gst/audioparsers/gstaacparse.c @@ -745,7 +745,8 @@ gst_aac_parse_check_loas_frame (GstAacParse * aacparse, if ((data[0] == 0x56) && ((data[1] & 0xe0) == 0xe0)) { *framesize = gst_aac_parse_loas_get_frame_len (data); - GST_DEBUG_OBJECT (aacparse, "Found %u byte LOAS frame", *framesize); + GST_DEBUG_OBJECT (aacparse, "Found possible %u byte LOAS frame", + *framesize); /* In EOS mode this is enough. No need to examine the data further. We also relax the check when we have sync, on the assumption that @@ -774,6 +775,8 @@ gst_aac_parse_check_loas_frame (GstAacParse * aacparse, gst_base_parse_set_min_frame_size (GST_BASE_PARSE (aacparse), nextlen + LOAS_MAX_SIZE); return TRUE; + } else { + GST_DEBUG_OBJECT (aacparse, "That was a false positive"); } } return FALSE; -- 2.7.4