aboutsummaryrefslogtreecommitdiffstats
path: root/fftools/sync_queue.h
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2023-03-21 12:36:03 +0100
committerAnton Khirnov <anton@khirnov.net>2023-04-09 15:47:45 +0200
commit090950f8327c01b1775615b1da723dc6cc8a30a0 (patch)
treef0970c60181867c6111d71d7fd42fc60e3d5bbc7 /fftools/sync_queue.h
parent87e9f5ad3c119b1058c66bcc5747f1417e0fbddc (diff)
downloadffmpeg-090950f8327c01b1775615b1da723dc6cc8a30a0.tar.gz
fftools/sync_queue: use timebase from input frames/packets
They are always properly set now. Avoid a separate timebase-setting call, which duplicates the knowledge of the timebase being used.
Diffstat (limited to 'fftools/sync_queue.h')
-rw-r--r--fftools/sync_queue.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/fftools/sync_queue.h b/fftools/sync_queue.h
index 3f823ff0d9..17d282c38c 100644
--- a/fftools/sync_queue.h
+++ b/fftools/sync_queue.h
@@ -60,12 +60,6 @@ void sq_free(SyncQueue **sq);
int sq_add_stream(SyncQueue *sq, int limiting);
/**
- * Set the timebase for the stream with index stream_idx. Should be called
- * before sending any frames for this stream.
- */
-void sq_set_tb(SyncQueue *sq, unsigned int stream_idx, AVRational tb);
-
-/**
* Limit the number of output frames for stream with index stream_idx
* to max_frames.
*/