diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-17 08:16:07 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-03 22:47:05 +0200 |
commit | 6dc7d80de7236d04a6ee30f0e4cd03f055893bcf (patch) | |
tree | 77a8c7064de540bb0d7828410b727e74749a604f /libavformat/avc.c | |
parent | b92c5452822f9f58d33daf933a0d2a5516866bc1 (diff) | |
download | ffmpeg-6dc7d80de7236d04a6ee30f0e4cd03f055893bcf.tar.gz |
avio: avio_ prefix for url_close_dyn_buf
Diffstat (limited to 'libavformat/avc.c')
-rw-r--r-- | libavformat/avc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/avc.c b/libavformat/avc.c index 274b490cf5..70a05ec5bc 100644 --- a/libavformat/avc.c +++ b/libavformat/avc.c @@ -96,7 +96,7 @@ int ff_avc_parse_nal_units_buf(const uint8_t *buf_in, uint8_t **buf, int *size) ff_avc_parse_nal_units(pb, buf_in, *size); av_freep(buf); - *size = url_close_dyn_buf(pb, buf); + *size = avio_close_dyn_buf(pb, buf); return 0; } |