diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-04-01 09:02:43 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-04-01 09:02:43 +0000 |
commit | 03354e69c37615084a4fbadc62a66243198c29f3 (patch) | |
tree | ca2485e88076dbcf3974ca9306feb29d978aac0c | |
parent | 57f6ea4f4016e3457cc24d52c82ba7eca5e36a14 (diff) | |
download | xine-lib-03354e69c37615084a4fbadc62a66243198c29f3.tar.gz xine-lib-03354e69c37615084a4fbadc62a66243198c29f3.tar.bz2 |
Get libdvdnav to build in DEBUG and TRACE mode.
CVS patchset: 4526
CVS date: 2003/04/01 09:02:43
-rw-r--r-- | src/input/libdvdnav/dvdnav.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/input/libdvdnav/dvdnav.c b/src/input/libdvdnav/dvdnav.c index b56d6519e..5cbc17615 100644 --- a/src/input/libdvdnav/dvdnav.c +++ b/src/input/libdvdnav/dvdnav.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: dvdnav.c,v 1.20 2003/03/27 13:46:47 mroi Exp $ + * $Id: dvdnav.c,v 1.21 2003/04/01 09:02:43 jcdutton Exp $ * */ @@ -651,9 +651,9 @@ dvdnav_status_t dvdnav_get_next_cache_block(dvdnav_t *this, unsigned char **buf, stream_change->physical_pan_scan = vm_get_subp_active_stream(this->vm, 2); this->position_current.spu_channel = this->position_next.spu_channel; #ifdef LOG_DEBUG - fprintf(MSG_OUT, "libdvdnav: SPU_STREAM_CHANGE stream_id_wide=%d\n",stream_change.physical_wide); - fprintf(MSG_OUT, "libdvdnav: SPU_STREAM_CHANGE stream_id_letterbox=%d\n",stream_change.physical_letterbox); - fprintf(MSG_OUT, "libdvdnav: SPU_STREAM_CHANGE stream_id_pan_scan=%d\n",stream_change.physical_pan_scan); + fprintf(MSG_OUT, "libdvdnav: SPU_STREAM_CHANGE stream_id_wide=%d\n",stream_change->physical_wide); + fprintf(MSG_OUT, "libdvdnav: SPU_STREAM_CHANGE stream_id_letterbox=%d\n",stream_change->physical_letterbox); + fprintf(MSG_OUT, "libdvdnav: SPU_STREAM_CHANGE stream_id_pan_scan=%d\n",stream_change->physical_pan_scan); #endif if (stream_change->physical_wide != -1 && stream_change->physical_letterbox != -1 && @@ -678,7 +678,7 @@ dvdnav_status_t dvdnav_get_next_cache_block(dvdnav_t *this, unsigned char **buf, stream_change->physical = vm_get_audio_active_stream( this->vm ); this->position_current.audio_channel = this->position_next.audio_channel; #ifdef LOG_DEBUG - fprintf(MSG_OUT, "libdvdnav: AUDIO_STREAM_CHANGE stream_id=%d returning S_OK\n",stream_change.physical); + fprintf(MSG_OUT, "libdvdnav: AUDIO_STREAM_CHANGE stream_id=%d returning S_OK\n",stream_change->physical); #endif pthread_mutex_unlock(&this->vm_lock); return S_OK; @@ -1018,6 +1018,9 @@ uint32_t dvdnav_get_next_still_flag(dvdnav_t *this) { /* * $Log: dvdnav.c,v $ + * Revision 1.21 2003/04/01 09:02:43 jcdutton + * Get libdvdnav to build in DEBUG and TRACE mode. + * * Revision 1.20 2003/03/27 13:46:47 mroi * sync to libdvdnav cvs * * fix conversion of dvd_time_t (I do know BCD, I just did it wrong...) |