changeset 6362:38df997e4331 libavformat

Add empty newlines between function descriptions and @params, improve readability.
author stefano
date Wed, 11 Aug 2010 09:13:53 +0000
parents 34df2b405550
children c22c9c5b1588
files avformat.h
diffstat 1 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/avformat.h	Tue Aug 10 17:27:22 2010 +0000
+++ b/avformat.h	Wed Aug 11 09:13:53 2010 +0000
@@ -131,6 +131,7 @@
 
 /**
  * Get a metadata element with matching key.
+ *
  * @param prev Set to the previous matching element to find the next.
  *             If set to NULL the first matching element is returned.
  * @param flags Allows case as well as suffix-insensitive comparisons.
@@ -142,6 +143,7 @@
 #if LIBAVFORMAT_VERSION_MAJOR == 52
 /**
  * Set the given tag in m, overwriting an existing tag.
+ *
  * @param key tag key to add to m (will be av_strduped)
  * @param value tag value to add to m (will be av_strduped)
  * @return >= 0 on success otherwise an error code <0
@@ -152,6 +154,7 @@
 
 /**
  * Set the given tag in m, overwriting an existing tag.
+ *
  * @param key tag key to add to m (will be av_strduped depending on flags)
  * @param value tag value to add to m (will be av_strduped depending on flags).
  *        Passing a NULL value will cause an existing tag to be deleted.
@@ -163,6 +166,7 @@
  * Convert all the metadata sets from ctx according to the source and
  * destination conversion tables. If one of the tables is NULL, then
  * tags are converted to/from ffmpeg generic tag names.
+ *
  * @param d_conv destination tags format conversion table
  * @param s_conv source tags format conversion table
  */