[SCM] libav/experimental: Try to more completely update time variables on unpause. Could not notice a differenc in behavior.

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:59:14 UTC 2013


The following commit has been merged in the experimental branch:
commit f5668147cb39a67f8c3f97df5993aaf7653c0f62
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Mon Feb 1 10:32:17 2010 +0000

    Try to more completely update time variables on unpause.
    Could not notice a differenc in behavior.
    
    Originally committed as revision 21584 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/ffplay.c b/ffplay.c
index 097a82c..9fc8f38 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -115,6 +115,7 @@ typedef struct VideoState {
     int seek_flags;
     int64_t seek_pos;
     int64_t seek_rel;
+    int read_pause_return;
     AVFormatContext *ic;
     int dtg_active_format;
 
@@ -991,8 +992,12 @@ static void stream_pause(VideoState *is)
 {
     is->paused = !is->paused;
     if (!is->paused) {
-        is->video_current_pts = get_video_clock(is);
+        if(is->read_pause_return != AVERROR(ENOSYS)){
+            is->video_current_pts = get_video_clock(is);
+        }
+
         is->frame_timer += (av_gettime() - is->video_current_pts_time) / 1000000.0;
+        is->video_current_pts_time= av_gettime();
     }
 }
 
@@ -2007,7 +2012,7 @@ static int decode_thread(void *arg)
         if (is->paused != is->last_paused) {
             is->last_paused = is->paused;
             if (is->paused)
-                av_read_pause(ic);
+                is->read_pause_return= av_read_pause(ic);
             else
                 av_read_play(ic);
         }

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list