diff options
author | Alexis Ballier <aballier@gentoo.org> | 2013-01-18 23:20:46 -0300 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2013-01-18 23:20:46 -0300 |
commit | 1d79ea6632988e69e24ee3c7bf8896f593977469 (patch) | |
tree | d6e80697511635bceb62a74ae94bec57fb6fd584 /lib/DllAvFormat.h | |
parent | bcd130302c5814b6f92e8266fb033d385d318876 (diff) |
DllAvFormat: drop mapping of url_feof, it is unused in xbmc code and not present in libav.
Diffstat (limited to 'lib/DllAvFormat.h')
-rw-r--r-- | lib/DllAvFormat.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/DllAvFormat.h b/lib/DllAvFormat.h index 9bda3f34b1..2002598e8f 100644 --- a/lib/DllAvFormat.h +++ b/lib/DllAvFormat.h @@ -62,7 +62,6 @@ public: virtual ~DllAvFormatInterface() {} virtual void av_register_all_dont_call(void)=0; virtual AVInputFormat *av_find_input_format(const char *short_name)=0; - virtual int url_feof(AVIOContext *s)=0; virtual void avformat_close_input(AVFormatContext **s)=0; virtual int av_read_frame(AVFormatContext *s, AVPacket *pkt)=0; virtual void av_read_frame_flush(AVFormatContext *s)=0; @@ -114,7 +113,6 @@ public: } virtual void av_register_all_dont_call() { *(volatile int* )0x0 = 0; } virtual AVInputFormat *av_find_input_format(const char *short_name) { return ::av_find_input_format(short_name); } - virtual int url_feof(AVIOContext *s) { return ::url_feof(s); } virtual void avformat_close_input(AVFormatContext **s) { ::avformat_close_input(s); } virtual int av_read_frame(AVFormatContext *s, AVPacket *pkt) { return ::av_read_frame(s, pkt); } virtual void av_read_frame_flush(AVFormatContext *s) { ::av_read_frame_flush(s); } @@ -175,7 +173,6 @@ class DllAvFormat : public DllDynamic, DllAvFormatInterface DEFINE_METHOD0(void, av_register_all_dont_call) DEFINE_METHOD1(AVInputFormat*, av_find_input_format, (const char *p1)) - DEFINE_METHOD1(int, url_feof, (AVIOContext *p1)) DEFINE_METHOD1(void, avformat_close_input, (AVFormatContext **p1)) DEFINE_METHOD1(int, av_read_play, (AVFormatContext *p1)) DEFINE_METHOD1(int, av_read_pause, (AVFormatContext *p1)) @@ -212,7 +209,6 @@ class DllAvFormat : public DllDynamic, DllAvFormatInterface BEGIN_METHOD_RESOLVE() RESOLVE_METHOD_RENAME(av_register_all, av_register_all_dont_call) RESOLVE_METHOD(av_find_input_format) - RESOLVE_METHOD(url_feof) RESOLVE_METHOD(avformat_close_input) RESOLVE_METHOD(av_read_frame) RESOLVE_METHOD(av_read_play) |