You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-16 22:42:38 +02:00
fftools/ffmpeg: drop OutputFile.sq_encode
It is unused since d119ae2fd8
This commit is contained in:
@ -612,8 +612,6 @@ typedef struct OutputFile {
|
|||||||
OutputStream **streams;
|
OutputStream **streams;
|
||||||
int nb_streams;
|
int nb_streams;
|
||||||
|
|
||||||
SyncQueue *sq_encode;
|
|
||||||
|
|
||||||
int64_t recording_time; ///< desired length of the resulting file in microseconds == AV_TIME_BASE units
|
int64_t recording_time; ///< desired length of the resulting file in microseconds == AV_TIME_BASE units
|
||||||
int64_t start_time; ///< start time in microseconds == AV_TIME_BASE units
|
int64_t start_time; ///< start time in microseconds == AV_TIME_BASE units
|
||||||
|
|
||||||
|
@ -845,7 +845,6 @@ void of_free(OutputFile **pof)
|
|||||||
return;
|
return;
|
||||||
mux = mux_from_of(of);
|
mux = mux_from_of(of);
|
||||||
|
|
||||||
sq_free(&of->sq_encode);
|
|
||||||
sq_free(&mux->sq_mux);
|
sq_free(&mux->sq_mux);
|
||||||
|
|
||||||
for (int i = 0; i < of->nb_streams; i++)
|
for (int i = 0; i < of->nb_streams; i++)
|
||||||
|
Reference in New Issue
Block a user