summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2001-07-22 11:29:56 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2001-07-22 11:29:56 +0000
commit8ea37e8529b8ac9612ee1c18376e0c0ba5752a0e (patch)
treedcf0f102b77690f1f83e38e9bd674c009ed196e3
parenteb2e31af661b9d1d81891f88b6fa8faf648d60d1 (diff)
downloadxine-lib-8ea37e8529b8ac9612ee1c18376e0c0ba5752a0e.tar.gz
xine-lib-8ea37e8529b8ac9612ee1c18376e0c0ba5752a0e.tar.bz2
moved this message to xprintf as well
CVS patchset: 322 CVS date: 2001/07/22 11:29:56
-rw-r--r--src/xine-engine/video_out.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/xine-engine/video_out.c b/src/xine-engine/video_out.c
index 4a07aaeb2..0f59e0d6c 100644
--- a/src/xine-engine/video_out.c
+++ b/src/xine-engine/video_out.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out.c,v 1.34 2001/07/11 23:31:45 guenter Exp $
+ * $Id: video_out.c,v 1.35 2001/07/22 11:29:56 guenter Exp $
*
*/
@@ -212,16 +212,16 @@ static void *video_out_loop (void *this_gen) {
if (diff >this->pts_per_half_frame) {
+ xprintf (VERBOSE|VIDEO, "video_out : throwing away image with pts %d because "
+ "it's too old (diff : %d > %d).\n",pts,diff,
+ this->pts_per_half_frame);
+
/*
- xprintf (VERBOSE|VIDEO, "video_out : throwing away image with pts %d because "
- "it's too old (diff : %d > %d).\n",pts,diff,
- this->pts_per_half_frame);
- */
-
fprintf (stderr,
"video_out : throwing away image with pts %d because "
"it's too old (diff : %d > %d).\n",pts,diff,
this->pts_per_half_frame);
+ */
this->num_frames_discarded++;
@@ -362,7 +362,7 @@ static uint32_t vo_get_capabilities (vo_instance_t *this) {
}
static void vo_open (vo_instance_t *this) {
- printf("vo_open\n");
+
if (!this->video_loop_running) {
this->video_loop_running = 1;
if(this->first_overlay) {