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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-04-08 14:22:39 +0400
committerAnton Khirnov <anton@khirnov.net>2011-04-08 18:45:41 +0400
commitc234d40bd9c98fc8c5540135cd5055c12e603a0f (patch)
tree6d749fe7ef00820410d470890b317efe8cca5d6a /libavformat/avformat.h
parentc3675dfe1e345a81d704fa0dd31151b8d54589ee (diff)
lavf: rename a parameter of av_sdp_create from buff->buf
This is more consistent with the rest of the API.
Diffstat (limited to 'libavformat/avformat.h')
-rw-r--r--libavformat/avformat.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index 26fca88ca6..8e18a6131d 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -1553,12 +1553,12 @@ int av_filename_number_test(const char *filename);
* all the contexts in the array (an AVCodecContext per RTP stream)
* must contain only one AVStream.
* @param n_files number of AVCodecContexts contained in ac
- * @param buff buffer where the SDP will be stored (must be allocated by
- * the caller)
+ * @param buf buffer where the SDP will be stored (must be allocated by
+ * the caller)
* @param size the size of the buffer
* @return 0 if OK, AVERROR_xxx on error
*/
-int av_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size);
+int av_sdp_create(AVFormatContext *ac[], int n_files, char *buf, int size);
#if FF_API_SDP_CREATE
attribute_deprecated int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size);