Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/gst-plugins-good.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Sauer <ensonic@users.sf.net>2015-07-07 17:59:20 +0300
committerStefan Sauer <ensonic@users.sf.net>2015-07-07 18:12:02 +0300
commit12930c2f8c2f6382fea7ddf7d756284802d53f65 (patch)
tree7ac8af32d570b4fe5c539c44de76157a609f6c81
parent093e8f8a756129f2d8fbee9a45a054c3775907b3 (diff)
docs: fix "Symbol name not found at the start of the comment block"
Add symbols or change comment into a regular comment.
-rw-r--r--gst/isomp4/atoms.c4
-rw-r--r--gst/isomp4/atoms.h2
-rw-r--r--gst/isomp4/atomsrecovery.c12
-rw-r--r--gst/isomp4/properties.h2
-rw-r--r--gst/matroska/matroska-mux.c2
-rw-r--r--gst/rtpmanager/rtpsource.c2
6 files changed, 13 insertions, 11 deletions
diff --git a/gst/isomp4/atoms.c b/gst/isomp4/atoms.c
index 45e668d9a..267c4f092 100644
--- a/gst/isomp4/atoms.c
+++ b/gst/isomp4/atoms.c
@@ -50,7 +50,7 @@
#include <gst/tag/tag.h>
#include <gst/video/video.h>
-/**
+/*
* Creates a new AtomsContext for the given flavor.
*/
AtomsContext *
@@ -61,7 +61,7 @@ atoms_context_new (AtomsTreeFlavor flavor)
return context;
}
-/**
+/*
* Frees an AtomsContext and all memory associated with it
*/
void
diff --git a/gst/isomp4/atoms.h b/gst/isomp4/atoms.h
index b2073c693..1f0c59d1d 100644
--- a/gst/isomp4/atoms.h
+++ b/gst/isomp4/atoms.h
@@ -112,7 +112,7 @@ void atoms_context_free (AtomsContext *context);
/* atom defs and functions */
-/**
+/*
* Used for storing time related values for some atoms.
*/
typedef struct _TimeInfo
diff --git a/gst/isomp4/atomsrecovery.c b/gst/isomp4/atomsrecovery.c
index 83ee37206..b21ee9cbe 100644
--- a/gst/isomp4/atomsrecovery.c
+++ b/gst/isomp4/atomsrecovery.c
@@ -40,7 +40,7 @@
* SOFTWARE.
*/
-/**
+/*
* This module contains functions for serializing partial information from
* a mux in progress (by qtmux elements). This enables reconstruction of the
* moov box if a crash happens and thus recovering the movie file.
@@ -128,7 +128,7 @@ atoms_recov_write_ftyp_info (FILE * f, AtomFTYP * ftyp, GstBuffer * prefix)
return TRUE;
}
-/**
+/*
* Writes important info on the 'moov' atom (non-trak related)
* to be able to recover the moov structure after a crash.
*
@@ -153,7 +153,7 @@ atoms_recov_write_moov_info (FILE * f, AtomMOOV * moov)
return atom_size > 0 && writen == atom_size;
}
-/**
+/*
* Writes the number of traks to the file.
* This simply writes a guint32 in BE.
*/
@@ -165,7 +165,7 @@ atoms_recov_write_traks_number (FILE * f, guint32 traks)
return fwrite (data, 4, 1, f) == 1;
}
-/**
+/*
* Writes the moov's timescale to the file
* This simply writes a guint32 in BE.
*/
@@ -177,7 +177,7 @@ atoms_recov_write_moov_timescale (FILE * f, guint32 timescale)
return fwrite (data, 4, 1, f) == 1;
}
-/**
+/*
* Writes the trak atom to the file.
*/
gboolean
@@ -778,7 +778,7 @@ trak_recov_data_add_sample (TrakRecovData * trak, TrakBufferEntryInfo * b)
b->chunk_offset, b->sync, b->pts_offset);
}
-/**
+/*
* Parses the buffer entries in the MoovRecovFile and matches the inputs
* with the data in the MdatRecovFile. Whenever a buffer entry of that
* represents 'x' bytes of data, the same amount of data is 'validated' in
diff --git a/gst/isomp4/properties.h b/gst/isomp4/properties.h
index 443288c54..c36fe4876 100644
--- a/gst/isomp4/properties.h
+++ b/gst/isomp4/properties.h
@@ -46,7 +46,7 @@
#include <glib.h>
#include <string.h>
-/**
+/*
* Functions for copying atoms properties.
*
* All of them receive, as the input, the property to be copied, the destination
diff --git a/gst/matroska/matroska-mux.c b/gst/matroska/matroska-mux.c
index f555f0df9..f72cd9999 100644
--- a/gst/matroska/matroska-mux.c
+++ b/gst/matroska/matroska-mux.c
@@ -341,7 +341,7 @@ gst_matroska_mux_class_init (GstMatroskaMuxClass * klass)
parent_class = g_type_class_peek_parent (klass);
}
-/**
+/*
* Start of pad option handler code
*/
#define DEFAULT_PAD_FRAME_DURATION TRUE
diff --git a/gst/rtpmanager/rtpsource.c b/gst/rtpmanager/rtpsource.c
index e26817b55..5aabe4146 100644
--- a/gst/rtpmanager/rtpsource.c
+++ b/gst/rtpmanager/rtpsource.c
@@ -1803,6 +1803,7 @@ rtp_source_has_retained (RTPSource * src, GCompareFunc func, gconstpointer data)
}
/**
+ * rtp_source_register_nack:
* @src: The #RTPSource
* @seqnum: a seqnum
*
@@ -1850,6 +1851,7 @@ rtp_source_register_nack (RTPSource * src, guint16 seqnum)
}
/**
+ * rtp_source_get_nacks:
* @src: The #RTPSource
* @n_nacks: result number of nacks
*