comparison avformat.h @ 6084:791d91ad79f5 libavformat

metadata: mention how to remove tags. Patch by Anton Khirnov, wyskas at gmail
author mstorsjo
date Fri, 04 Jun 2010 13:52:45 +0000
parents 817a86ec7ad2
children ad41f9ce1fe9
comparison
equal deleted inserted replaced
6083:5ec1f78c30fe 6084:791d91ad79f5
151 #endif 151 #endif
152 152
153 /** 153 /**
154 * Sets the given tag in m, overwriting an existing tag. 154 * Sets the given tag in m, overwriting an existing tag.
155 * @param key tag key to add to m (will be av_strduped depending on flags) 155 * @param key tag key to add to m (will be av_strduped depending on flags)
156 * @param value tag value to add to m (will be av_strduped depending on flags) 156 * @param value tag value to add to m (will be av_strduped depending on flags).
157 * Passing a NULL value will cause an existing tag to be deleted.
157 * @return >= 0 on success otherwise an error code <0 158 * @return >= 0 on success otherwise an error code <0
158 */ 159 */
159 int av_metadata_set2(AVMetadata **pm, const char *key, const char *value, int flags); 160 int av_metadata_set2(AVMetadata **pm, const char *key, const char *value, int flags);
160 161
161 /** 162 /**