diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-08 12:22:39 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-08 16:45:41 +0200 |
commit | c234d40bd9c98fc8c5540135cd5055c12e603a0f (patch) | |
tree | 6d749fe7ef00820410d470890b317efe8cca5d6a /libavformat/avformat.h | |
parent | c3675dfe1e345a81d704fa0dd31151b8d54589ee (diff) | |
download | ffmpeg-c234d40bd9c98fc8c5540135cd5055c12e603a0f.tar.gz |
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.h | 6 |
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); |