[FFmpeg-devel] [PATCH v1] ffplay: remove unused code
Jun Li
junli1026 at gmail.com
Thu Sep 10 04:03:44 EEST 2020
Signed-off-by: Jun Li <junli1026 at gmail.com>
---
fftools/ffplay.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fftools/ffplay.c b/fftools/ffplay.c
index 9ff0425163..04cbcfe0e3 100644
--- a/fftools/ffplay.c
+++ b/fftools/ffplay.c
@@ -1568,7 +1568,7 @@ static double vp_duration(VideoState *is, Frame *vp, Frame *nextvp) {
}
}
-static void update_video_pts(VideoState *is, double pts, int64_t pos, int serial) {
+static void update_video_pts(VideoState *is, double pts, int serial) {
/* update current video pts */
set_clock(&is->vidclk, pts, serial);
sync_clock_to_slave(&is->extclk, &is->vidclk);
@@ -1633,7 +1633,7 @@ retry:
SDL_LockMutex(is->pictq.mutex);
if (!isnan(vp->pts))
- update_video_pts(is, vp->pts, vp->pos, vp->serial);
+ update_video_pts(is, vp->pts, vp->serial);
SDL_UnlockMutex(is->pictq.mutex);
if (frame_queue_nb_remaining(&is->pictq) > 1) {
--
2.17.1
More information about the ffmpeg-devel
mailing list