summaryrefslogtreecommitdiff
path: root/libavformat/rtspenc.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-04-08 11:36:12 +0200
committerAnton Khirnov <anton@khirnov.net>2011-04-08 16:45:40 +0200
commitc3675dfe1e345a81d704fa0dd31151b8d54589ee (patch)
tree0da28405af63bbcb44d7f66f118a8b2b506ff2f1 /libavformat/rtspenc.c
parenta9bf9d8e5349114d37cc3baf0b1e7d95197c5ef8 (diff)
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/rtspenc.c')
-rw-r--r--libavformat/rtspenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtspenc.c b/libavformat/rtspenc.c
index 684f2fe558..c1fc97ca8f 100644
--- a/libavformat/rtspenc.c
+++ b/libavformat/rtspenc.c
@@ -66,7 +66,7 @@ int ff_rtsp_setup_output_streams(AVFormatContext *s, const char *addr)
ff_url_join(sdp_ctx.filename, sizeof(sdp_ctx.filename),
"rtsp", NULL, addr, -1, NULL);
ctx_array[0] = &sdp_ctx;
- if (avf_sdp_create(ctx_array, 1, sdp, SDP_MAX_SIZE)) {
+ if (av_sdp_create(ctx_array, 1, sdp, SDP_MAX_SIZE)) {
av_free(sdp);
return AVERROR_INVALIDDATA;
}