Browse Source

avformat: Drop deprecated feof() AVIO fuction

Deprecated in 08/2014.
tags/n4.0
James Almer 8 years ago
parent
commit
d4d2e9fe4e
4 changed files with 0 additions and 19 deletions
  1. +0
    -7
      libavformat/avio.h
  2. +0
    -7
      libavformat/aviobuf.c
  3. +0
    -2
      libavformat/libavformat.v
  4. +0
    -3
      libavformat/version.h

+ 0
- 7
libavformat/avio.h View File

@@ -569,13 +569,6 @@ int64_t avio_size(AVIOContext *s);
* @return non zero if and only if end of file
*/
int avio_feof(AVIOContext *s);
#if FF_API_URL_FEOF
/**
* @deprecated use avio_feof()
*/
attribute_deprecated
int url_feof(AVIOContext *s);
#endif

/** @warning Writes up to 4 KiB per call */
int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);


+ 0
- 7
libavformat/aviobuf.c View File

@@ -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 );


+ 0
- 2
libavformat/libavformat.v View File

@@ -12,8 +12,6 @@ LIBAVFORMAT_MAJOR {
ffurl_close;
ffurl_open;
ffurl_write;
#those are deprecated, remove on next bump
url_feof;
local:
*;
};

+ 0
- 3
libavformat/version.h View File

@@ -55,9 +55,6 @@
* at once through the bump. This improves the git bisect-ability of the change.
*
*/
#ifndef FF_API_URL_FEOF
#define FF_API_URL_FEOF (LIBAVFORMAT_VERSION_MAJOR < 58)
#endif
#ifndef FF_API_LAVF_FMT_RAWPICTURE
#define FF_API_LAVF_FMT_RAWPICTURE (LIBAVFORMAT_VERSION_MAJOR < 58)
#endif


Loading…
Cancel
Save