fftools/ffmpeg_mux: move muxing queue fields from OutputStream to MuxStream

They are private to the muxer and do not need to be visible outside of
it.
This commit is contained in:
Anton Khirnov
2022-10-14 11:34:26 +02:00
parent f0cd68eea0
commit c5d7b6f49b
4 changed files with 11 additions and 11 deletions

View File

@@ -48,6 +48,11 @@ typedef struct MuxStream {
*/
size_t muxing_queue_data_size;
int max_muxing_queue_size;
/* Threshold after which max_muxing_queue_size will be in effect */
size_t muxing_queue_data_threshold;
/* dts of the last packet sent to the muxer, in the stream timebase
* used for making up missing dts values */
int64_t last_mux_dts;