summaryrefslogtreecommitdiff
path: root/src/xine-engine/video_decoder.c
diff options
context:
space:
mode:
authorGuenter Bartsch <guenter@users.sourceforge.net>2002-10-27 01:52:15 +0000
committerGuenter Bartsch <guenter@users.sourceforge.net>2002-10-27 01:52:15 +0000
commitb7dd962b658dd71ac94dda89110140bfd3dd63d2 (patch)
tree104f69f94383c1014b446f8a8f1ca6429d9b12b5 /src/xine-engine/video_decoder.c
parent01fe9e47e5c03c959dd0428d439db3cc74e5a741 (diff)
downloadxine-lib-b7dd962b658dd71ac94dda89110140bfd3dd63d2.tar.gz
xine-lib-b7dd962b658dd71ac94dda89110140bfd3dd63d2.tar.bz2
return of ogg and vorbis, began implementing verbosity parameter
CVS patchset: 3034 CVS date: 2002/10/27 01:52:15
Diffstat (limited to 'src/xine-engine/video_decoder.c')
-rw-r--r--src/xine-engine/video_decoder.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/xine-engine/video_decoder.c b/src/xine-engine/video_decoder.c
index a7dcddfdf..90915ef3d 100644
--- a/src/xine-engine/video_decoder.c
+++ b/src/xine-engine/video_decoder.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_decoder.c,v 1.104 2002/10/26 02:12:27 jcdutton Exp $
+ * $Id: video_decoder.c,v 1.105 2002/10/27 01:52:15 guenter Exp $
*
*/
@@ -183,8 +183,10 @@ void *video_decoder_loop (void *stream_gen) {
stream->finished_count_video++;
+#ifdef LOG
printf ("video_decoder: reached end marker # %d\n",
stream->finished_count_video);
+#endif
pthread_cond_broadcast (&stream->counter_changed);
@@ -229,7 +231,9 @@ void *video_decoder_loop (void *stream_gen) {
break;
case BUF_CONTROL_DISCONTINUITY:
+#ifdef LOG
printf ("video_decoder: discontinuity ahead\n");
+#endif
stream->video_in_discontinuity = 1;
@@ -239,7 +243,9 @@ void *video_decoder_loop (void *stream_gen) {
break;
case BUF_CONTROL_NEWPTS:
+#ifdef LOG
printf ("video_decoder: new pts %lld\n", buf->disc_off);
+#endif
stream->video_in_discontinuity = 1;