avutil: remove deprecated FF_API_AV_FOPEN_UTF8
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
65ddc74988
commit
4c92fc02f8
5 changed files with 0 additions and 44 deletions
|
|
@ -335,19 +335,6 @@ unsigned av_int_list_length_for_size(unsigned elsize,
|
||||||
#define av_int_list_length(list, term) \
|
#define av_int_list_length(list, term) \
|
||||||
av_int_list_length_for_size(sizeof(*(list)), list, term)
|
av_int_list_length_for_size(sizeof(*(list)), list, term)
|
||||||
|
|
||||||
#if FF_API_AV_FOPEN_UTF8
|
|
||||||
/**
|
|
||||||
* Open a file using a UTF-8 filename.
|
|
||||||
* The API of this function matches POSIX fopen(), errors are returned through
|
|
||||||
* errno.
|
|
||||||
* @deprecated Avoid using it, as on Windows, the FILE* allocated by this
|
|
||||||
* function may be allocated with a different CRT than the caller
|
|
||||||
* who uses the FILE*. No replacement provided in public API.
|
|
||||||
*/
|
|
||||||
attribute_deprecated
|
|
||||||
FILE *av_fopen_utf8(const char *path, const char *mode);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the fractional representation of the internal time base.
|
* Return the fractional representation of the internal time base.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -155,9 +155,3 @@ void av_file_unmap(uint8_t *bufptr, size_t size)
|
||||||
av_free(bufptr);
|
av_free(bufptr);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#if FF_API_AV_FOPEN_UTF8
|
|
||||||
int av_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx) {
|
|
||||||
return avpriv_tempfile(prefix, filename, log_offset, log_ctx);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
|
||||||
|
|
@ -60,21 +60,4 @@ int av_file_map(const char *filename, uint8_t **bufptr, size_t *size,
|
||||||
*/
|
*/
|
||||||
void av_file_unmap(uint8_t *bufptr, size_t size);
|
void av_file_unmap(uint8_t *bufptr, size_t size);
|
||||||
|
|
||||||
#if FF_API_AV_FOPEN_UTF8
|
|
||||||
/**
|
|
||||||
* Wrapper to work around the lack of mkstemp() on mingw.
|
|
||||||
* Also, tries to create file in /tmp first, if possible.
|
|
||||||
* *prefix can be a character constant; *filename will be allocated internally.
|
|
||||||
* @return file descriptor of opened file (or negative value corresponding to an
|
|
||||||
* AVERROR code on error)
|
|
||||||
* and opened file name in **filename.
|
|
||||||
* @note On very old libcs it is necessary to set a secure umask before
|
|
||||||
* calling this, av_tempfile() can't call umask itself as it is used in
|
|
||||||
* libraries and could interfere with the calling application.
|
|
||||||
* @deprecated as fd numbers cannot be passed saftely between libs on some platforms
|
|
||||||
*/
|
|
||||||
attribute_deprecated
|
|
||||||
int av_tempfile(const char *prefix, char **filename, int log_offset, void *log_ctx);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* AVUTIL_FILE_H */
|
#endif /* AVUTIL_FILE_H */
|
||||||
|
|
|
||||||
|
|
@ -189,10 +189,3 @@ FILE *avpriv_fopen_utf8(const char *path, const char *mode)
|
||||||
return NULL;
|
return NULL;
|
||||||
return fdopen(fd, mode);
|
return fdopen(fd, mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if FF_API_AV_FOPEN_UTF8
|
|
||||||
FILE *av_fopen_utf8(const char *path, const char *mode)
|
|
||||||
{
|
|
||||||
return avpriv_fopen_utf8(path, mode);
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
|
|
||||||
|
|
@ -105,7 +105,6 @@
|
||||||
* @{
|
* @{
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define FF_API_AV_FOPEN_UTF8 (LIBAVUTIL_VERSION_MAJOR < 59)
|
|
||||||
#define FF_API_PKT_DURATION (LIBAVUTIL_VERSION_MAJOR < 59)
|
#define FF_API_PKT_DURATION (LIBAVUTIL_VERSION_MAJOR < 59)
|
||||||
#define FF_API_REORDERED_OPAQUE (LIBAVUTIL_VERSION_MAJOR < 59)
|
#define FF_API_REORDERED_OPAQUE (LIBAVUTIL_VERSION_MAJOR < 59)
|
||||||
#define FF_API_FRAME_PICTURE_NUMBER (LIBAVUTIL_VERSION_MAJOR < 59)
|
#define FF_API_FRAME_PICTURE_NUMBER (LIBAVUTIL_VERSION_MAJOR < 59)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue