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/sapenc.c | |
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/sapenc.c')
-rw-r--r-- | libavformat/sapenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/sapenc.c b/libavformat/sapenc.c index e675986b7d..455e65341f 100644 --- a/libavformat/sapenc.c +++ b/libavformat/sapenc.c @@ -208,7 +208,7 @@ static int sap_write_header(AVFormatContext *s) av_strlcpy(&sap->ann[pos], "application/sdp", sap->ann_size - pos); pos += strlen(&sap->ann[pos]) + 1; - if (avf_sdp_create(contexts, s->nb_streams, &sap->ann[pos], + if (av_sdp_create(contexts, s->nb_streams, &sap->ann[pos], sap->ann_size - pos)) { ret = AVERROR_INVALIDDATA; goto fail; |