lavf/avio: rename url_feof() to avio_feof()
It's a public function and should use the avio_ namespace Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
f1e626a357
commit
5c3c67126f
@ -15,6 +15,9 @@ libavutil: 2012-10-22
|
|||||||
|
|
||||||
API changes, most recent first:
|
API changes, most recent first:
|
||||||
|
|
||||||
|
2014-08-xx - xxxxxxx - lavf 55.53.100 - avio.h
|
||||||
|
Add avio_feof() and deprecate url_feof().
|
||||||
|
|
||||||
2014-08-xx - xxxxxxx - lsws 2.1.3 - swscale.h
|
2014-08-xx - xxxxxxx - lsws 2.1.3 - swscale.h
|
||||||
sws_getContext is not going to be removed in the future.
|
sws_getContext is not going to be removed in the future.
|
||||||
|
|
||||||
|
@ -276,7 +276,14 @@ int64_t avio_size(AVIOContext *s);
|
|||||||
* feof() equivalent for AVIOContext.
|
* feof() equivalent for AVIOContext.
|
||||||
* @return non zero if and only if end of file
|
* @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);
|
int url_feof(AVIOContext *s);
|
||||||
|
#endif
|
||||||
|
|
||||||
/** @warning currently size is limited */
|
/** @warning currently size is limited */
|
||||||
int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);
|
int avio_printf(AVIOContext *s, const char *fmt, ...) av_printf_format(2, 3);
|
||||||
|
@ -292,7 +292,7 @@ int64_t avio_size(AVIOContext *s)
|
|||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
|
|
||||||
int url_feof(AVIOContext *s)
|
int avio_feof(AVIOContext *s)
|
||||||
{
|
{
|
||||||
if(!s)
|
if(!s)
|
||||||
return 0;
|
return 0;
|
||||||
@ -303,6 +303,13 @@ int url_feof(AVIOContext *s)
|
|||||||
return s->eof_reached;
|
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)
|
void avio_wl32(AVIOContext *s, unsigned int val)
|
||||||
{
|
{
|
||||||
avio_w8(s, (uint8_t) val );
|
avio_w8(s, (uint8_t) val );
|
||||||
|
@ -19,7 +19,7 @@ LIBAVFORMAT_$MAJOR {
|
|||||||
ffurl_write;
|
ffurl_write;
|
||||||
ffurl_protocol_next;
|
ffurl_protocol_next;
|
||||||
#those are deprecated, remove on next bump
|
#those are deprecated, remove on next bump
|
||||||
url_*;
|
url_feof;
|
||||||
get_*;
|
get_*;
|
||||||
ff_codec_get_id;
|
ff_codec_get_id;
|
||||||
local: *;
|
local: *;
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
#define LIBAVFORMAT_VERSION_MAJOR 55
|
#define LIBAVFORMAT_VERSION_MAJOR 55
|
||||||
|
|
||||||
#define LIBAVFORMAT_VERSION_MINOR 52
|
#define LIBAVFORMAT_VERSION_MINOR 53
|
||||||
#define LIBAVFORMAT_VERSION_MICRO 100
|
#define LIBAVFORMAT_VERSION_MICRO 100
|
||||||
|
|
||||||
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
|
#define LIBAVFORMAT_VERSION_INT AV_VERSION_INT(LIBAVFORMAT_VERSION_MAJOR, \
|
||||||
@ -61,6 +61,9 @@
|
|||||||
#ifndef FF_API_LAVF_CODEC_TB
|
#ifndef FF_API_LAVF_CODEC_TB
|
||||||
#define FF_API_LAVF_CODEC_TB (LIBAVFORMAT_VERSION_MAJOR < 57)
|
#define FF_API_LAVF_CODEC_TB (LIBAVFORMAT_VERSION_MAJOR < 57)
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef FF_API_URL_FEOF
|
||||||
|
#define FF_API_URL_FEOF (LIBAVFORMAT_VERSION_MAJOR < 57)
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef FF_API_ALLOC_OUTPUT_CONTEXT
|
#ifndef FF_API_ALLOC_OUTPUT_CONTEXT
|
||||||
#define FF_API_ALLOC_OUTPUT_CONTEXT (LIBAVFORMAT_VERSION_MAJOR < 56)
|
#define FF_API_ALLOC_OUTPUT_CONTEXT (LIBAVFORMAT_VERSION_MAJOR < 56)
|
||||||
|
Loading…
Reference in New Issue
Block a user