summaryrefslogtreecommitdiff
path: root/libavformat/avformat.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-11 09:13:53 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-08-11 09:13:53 +0000
commit26cc5310f68ac78b9cfe5837057c09a56ce67853 (patch)
tree6fa9a8d645ab1244ae653bbb6179646afc634a70 /libavformat/avformat.h
parentaa93c52c21f90d1c7e7ab894280a35d64dd54f9c (diff)
Add empty newlines between function descriptions and @params, improve
readability. Originally committed as revision 24761 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 9f489ec108..399f83e9d5 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -131,6 +131,7 @@ typedef struct AVMetadataConv AVMetadataConv;
/**
* 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 @@ av_metadata_get(AVMetadata *m, const char *key, const AVMetadataTag *prev, int f
#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 @@ attribute_deprecated int av_metadata_set(AVMetadata **pm, const char *key, const
/**
* 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 @@ int av_metadata_set2(AVMetadata **pm, const char *key, const char *value, int fl
* 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
*/