diff options
author | James Almer <jamrial@gmail.com> | 2017-10-21 22:08:08 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2017-10-21 22:08:08 -0300 |
commit | d4d2e9fe4e1e93d37fd543092e45041f58fa8c00 (patch) | |
tree | 9e81bfa40c4cd9c7d3cb7bab8644b32be22b59ed /libavformat/aviobuf.c | |
parent | 88e2e31d3460c88fefe17f30d585ec079883f42e (diff) | |
download | ffmpeg-d4d2e9fe4e1e93d37fd543092e45041f58fa8c00.tar.gz |
avformat: Drop deprecated feof() AVIO fuction
Deprecated in 08/2014.
Diffstat (limited to 'libavformat/aviobuf.c')
-rw-r--r-- | libavformat/aviobuf.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index 0d4eb051e1..3e9d774a13 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -364,13 +364,6 @@ int avio_feof(AVIOContext *s) return s->eof_reached; } -#if FF_API_URL_FEOF -int url_feof(AVIOContext *s) -{ - return avio_feof(s); -} -#endif - void avio_wl32(AVIOContext *s, unsigned int val) { avio_w8(s, (uint8_t) val ); |