Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2011-04-22 13:25:54 +0400
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2011-04-27 13:26:53 +0400
commit4a22ea4da1a81c2b4bc289fb8580ec763f85c62b (patch)
tree8a202fe1cd801f740c76f8162ef888fc7cb02197 /ffplay.c
parent8adf9bb2cb5fb9179cac5c33fd2adf847a8b4c71 (diff)
ffplay: rename video_refresh_timer() to video_refresh()
The new name is shorter and less confusing.
Diffstat (limited to 'ffplay.c')
-rw-r--r--ffplay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ffplay.c b/ffplay.c
index 3377243f5c..7a6b72a43c 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -1117,7 +1117,7 @@ static double compute_target_time(double frame_current_pts, VideoState *is)
}
/* called to display each frame */
-static void video_refresh_timer(void *opaque)
+static void video_refresh(void *opaque)
{
VideoState *is = opaque;
VideoPicture *vp;
@@ -2872,7 +2872,7 @@ static void event_loop(void)
alloc_picture(event.user.data1);
break;
case FF_REFRESH_EVENT:
- video_refresh_timer(event.user.data1);
+ video_refresh(event.user.data1);
cur_stream->refresh=0;
break;
default: