lavf: move AVStream.{nb_decoded_frames,mux_ts_offset} to AVStreamInternal

Those are private fields, no reason to have them exposed in a public
header.
This commit is contained in:
Anton Khirnov
2020-10-09 09:22:36 +02:00
parent 323c9a8c52
commit cb46a6bcbc
4 changed files with 19 additions and 19 deletions

View File

@@ -1151,17 +1151,6 @@ typedef struct AVStream {
*/
int64_t last_discard_sample;
/**
* Number of internally decoded frames, used internally in libavformat, do not access
* its lifetime differs from info which is why it is not in that structure.
*/
int nb_decoded_frames;
/**
* Timestamp offset added to timestamps before muxing
*/
int64_t mux_ts_offset;
/**
* An opaque field for libavformat internal usage.
* Must not be accessed in any way by callers.