mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
avformat: remove FF_API_AVIOCONTEXT_WRITTEN
Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
add33e370d
commit
9b8a398930
@ -295,16 +295,6 @@ typedef struct AVIOContext {
|
||||
*/
|
||||
int ignore_boundary_point;
|
||||
|
||||
#if FF_API_AVIOCONTEXT_WRITTEN
|
||||
/**
|
||||
* @deprecated field utilized privately by libavformat. For a public
|
||||
* statistic of how many bytes were written out, see
|
||||
* AVIOContext::bytes_written.
|
||||
*/
|
||||
attribute_deprecated
|
||||
int64_t written;
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Maximum reached position before a backward seek in the write buffer,
|
||||
* used keeping track of already written data for a later flush.
|
||||
|
@ -125,11 +125,6 @@ void ffio_init_context(FFIOContext *ctx,
|
||||
ctx->current_type = AVIO_DATA_MARKER_UNKNOWN;
|
||||
ctx->last_time = AV_NOPTS_VALUE;
|
||||
ctx->short_seek_get = NULL;
|
||||
#if FF_API_AVIOCONTEXT_WRITTEN
|
||||
FF_DISABLE_DEPRECATION_WARNINGS
|
||||
s->written = 0;
|
||||
FF_ENABLE_DEPRECATION_WARNINGS
|
||||
#endif
|
||||
}
|
||||
|
||||
AVIOContext *avio_alloc_context(
|
||||
@ -174,11 +169,6 @@ static void writeout(AVIOContext *s, const uint8_t *data, int len)
|
||||
|
||||
if (s->pos + len > ctx->written_output_size) {
|
||||
ctx->written_output_size = s->pos + len;
|
||||
#if FF_API_AVIOCONTEXT_WRITTEN
|
||||
FF_DISABLE_DEPRECATION_WARNINGS
|
||||
s->written = ctx->written_output_size;
|
||||
FF_ENABLE_DEPRECATION_WARNINGS
|
||||
#endif
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -42,7 +42,6 @@
|
||||
*
|
||||
*/
|
||||
#define FF_API_COMPUTE_PKT_FIELDS2 (LIBAVFORMAT_VERSION_MAJOR < 60)
|
||||
#define FF_API_AVIOCONTEXT_WRITTEN (LIBAVFORMAT_VERSION_MAJOR < 60)
|
||||
#define FF_HLS_TS_OPTIONS (LIBAVFORMAT_VERSION_MAJOR < 60)
|
||||
#define FF_API_AVSTREAM_CLASS (LIBAVFORMAT_VERSION_MAJOR > 59)
|
||||
#define FF_API_GET_END_PTS (LIBAVFORMAT_VERSION_MAJOR < 60)
|
||||
|
Loading…
x
Reference in New Issue
Block a user