diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-03-17 08:13:34 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-03 22:46:56 +0200 |
commit | b92c5452822f9f58d33daf933a0d2a5516866bc1 (patch) | |
tree | 8e837202fc801d8f0de5e8be08b691a7d357cde9 /libavformat/avc.c | |
parent | 8978fedaeefdff50ed4deefbfe822ad07f19f616 (diff) | |
download | ffmpeg-b92c5452822f9f58d33daf933a0d2a5516866bc1.tar.gz |
avio: avio_ prefix for url_open_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 3b990015fe..274b490cf5 100644 --- a/libavformat/avc.c +++ b/libavformat/avc.c @@ -89,7 +89,7 @@ int ff_avc_parse_nal_units(AVIOContext *pb, const uint8_t *buf_in, int size) int ff_avc_parse_nal_units_buf(const uint8_t *buf_in, uint8_t **buf, int *size) { AVIOContext *pb; - int ret = url_open_dyn_buf(&pb); + int ret = avio_open_dyn_buf(&pb); if(ret < 0) return ret; |