diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-08 11:36:12 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-08 16:45:40 +0200 |
commit | c3675dfe1e345a81d704fa0dd31151b8d54589ee (patch) | |
tree | 0da28405af63bbcb44d7f66f118a8b2b506ff2f1 /libavformat/avformat.h | |
parent | a9bf9d8e5349114d37cc3baf0b1e7d95197c5ef8 (diff) | |
download | ffmpeg-c3675dfe1e345a81d704fa0dd31151b8d54589ee.tar.gz |
lavf: rename avf_sdp_create to av_sdp_create.
The new name 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, 5 insertions, 1 deletions
diff --git a/libavformat/avformat.h b/libavformat/avformat.h index 37ec8a9bee..26fca88ca6 100644 --- a/libavformat/avformat.h +++ b/libavformat/avformat.h @@ -1558,7 +1558,11 @@ int av_filename_number_test(const char *filename); * @param size the size of the buffer * @return 0 if OK, AVERROR_xxx on error */ -int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size); +int av_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size); + +#if FF_API_SDP_CREATE +attribute_deprecated int avf_sdp_create(AVFormatContext *ac[], int n_files, char *buff, int size); +#endif /** * Return a positive value if the given filename has one of the given |