summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2009-10-29 15:19:35 +0100
committerMark Nauwelaerts <mark.nauwelaerts@collabora.co.uk>2009-12-08 16:05:26 +0100
commitd4c89e249205ef1d5f8f5966828c4560f8984bbe (patch)
tree59ea2a28606da6592e56af9e12600a277d82dbae
parent48f7d4e0c95528d1267a7856fba5b3b200716207 (diff)
aacparse: fixup comments to C-style
-rw-r--r--gst/aacparse/gstaacparse.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/gst/aacparse/gstaacparse.c b/gst/aacparse/gstaacparse.c
index 9bb5c1003..1b4fca55f 100644
--- a/gst/aacparse/gstaacparse.c
+++ b/gst/aacparse/gstaacparse.c
@@ -261,9 +261,9 @@ gst_aacparse_sink_setcaps (GstBaseParse * parse, GstCaps * caps)
GST_DEBUG_OBJECT (aacparse, "setcaps: %s", caps_str);
g_free (caps_str);
- // This is needed at least in case of RTP
- // Parses the codec_data information to get ObjectType,
- // number of channels and samplerate
+ /* This is needed at least in case of RTP
+ * Parses the codec_data information to get ObjectType,
+ * number of channels and samplerate */
if (gst_structure_has_field (structure, "codec_data")) {
const GValue *value = gst_structure_get_value (structure, "codec_data");
@@ -311,7 +311,6 @@ gst_aacparse_update_duration (GstAacParse * aacparse)
if (!aacparse->framecount || !aacparse->frames_per_sec) {
return;
}
- // info->length = (int)((filelength_filestream(file)/(((info->bitrate*8)/1024)*16))*1000);
peer = gst_pad_get_peer (parse->sinkpad);
if (peer) {
@@ -511,7 +510,7 @@ gst_aacparse_detect_stream (GstAacParse * aacparse,
aacparse->header_type = DSPAAC_HEADER_ADIF;
aacparse->mpegversion = 4;
- // Skip the "ADIF" bytes
+ /* Skip the "ADIF" bytes */
adif = data + i + 4;
/* copyright string */
@@ -560,7 +559,7 @@ gst_aacparse_detect_stream (GstAacParse * aacparse,
aacparse->frames_per_sec = aacparse->sample_rate / 1024.f;
GST_INFO ("ADIF fps: %f", aacparse->frames_per_sec);
- // FIXME: Can we assume this?
+ /* FIXME: Can we assume this? */
aacparse->channels = 2;
GST_INFO ("ADIF: br=%d, samplerate=%d, objtype=%d",