fftools/ffmpeg_mux: make data_size_mux private to ffmpeg_mux

It is no longer used outside of this file.
This commit is contained in:
Anton Khirnov 2023-03-28 11:24:42 +02:00
parent 37b118096a
commit 0288951174
3 changed files with 6 additions and 4 deletions

View File

@ -649,8 +649,6 @@ typedef struct OutputStream {
int keep_pix_fmt;
/* stats */
// combined size of all the packets sent to the muxer
uint64_t data_size_mux;
// combined size of all the packets received from the encoder
uint64_t data_size_enc;
// number of packets send to the muxer

View File

@ -128,7 +128,7 @@ static int write_packet(Muxer *mux, OutputStream *ost, AVPacket *pkt)
}
ms->last_mux_dts = pkt->dts;
ost->data_size_mux += pkt->size;
ms->data_size_mux += pkt->size;
frame_num = atomic_fetch_add(&ost->packets_written, 1);
pkt->stream_index = ost->index;
@ -652,9 +652,10 @@ static void mux_final_stats(Muxer *mux)
for (int j = 0; j < of->nb_streams; j++) {
OutputStream *ost = of->streams[j];
MuxStream *ms = ms_from_ost(ost);
const AVCodecParameters *par = ost->st->codecpar;
const enum AVMediaType type = par->codec_type;
const uint64_t s = ost->data_size_mux;
const uint64_t s = ms->data_size_mux;
switch (type) {
case AVMEDIA_TYPE_VIDEO: video_size += s; break;

View File

@ -63,6 +63,9 @@ typedef struct MuxStream {
/* 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;
// combined size of all the packets sent to the muxer
uint64_t data_size_mux;
} MuxStream;
typedef struct Muxer {