From: Vincent Penquerc'h Date: Mon, 5 Sep 2016 08:38:26 +0000 (+0100) Subject: aacparse: add a few comments to anchor parsing to the spec X-Git-Tag: 1.10.4~184 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b0f20bacfd66d0c5d04861ec2846ebb9a76d2ad9;p=platform%2Fupstream%2Fgst-plugins-good.git aacparse: add a few comments to anchor parsing to the spec https://bugzilla.gnome.org/show_bug.cgi?id=769278 --- diff --git a/gst/audioparsers/gstaacparse.c b/gst/audioparsers/gstaacparse.c index 3b5d6f0..52cc34f 100644 --- a/gst/audioparsers/gstaacparse.c +++ b/gst/audioparsers/gstaacparse.c @@ -612,9 +612,11 @@ gst_aac_parse_read_loas_config (GstAacParse * aacparse, const guint8 * data, GST_DEBUG_OBJECT (aacparse, "Frame contains new config"); + /* audioMuxVersion */ if (!gst_bit_reader_get_bits_uint8 (&br, &v, 1)) return FALSE; if (v) { + /* audioMuxVersionA */ if (!gst_bit_reader_get_bits_uint8 (&br, &vA, 1)) return FALSE; } else @@ -625,6 +627,7 @@ gst_aac_parse_read_loas_config (GstAacParse * aacparse, const guint8 * data, guint8 same_time, subframes, num_program, prog; if (v == 1) { guint32 value; + /* taraBufferFullness */ if (!gst_aac_parse_latm_get_value (aacparse, &br, &value)) return FALSE; }