diff options
author | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-08-31 18:31:05 +0000 |
---|---|---|
committer | arpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2002-08-31 18:31:05 +0000 |
commit | 47886158275251c7d5b74f9d475c003439d36d9b (patch) | |
tree | 012eec27c7996f893ed756a1f4a36610419c4ab8 | |
parent | 250521d437eb1b809792567c394072e0e9612bdf (diff) |
user-data moved one -v up
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7209 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libmpdemux/video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/video.c b/libmpdemux/video.c index fbd9a2a012..0a8cf2700d 100644 --- a/libmpdemux/video.c +++ b/libmpdemux/video.c @@ -199,7 +199,7 @@ static void process_userdata(unsigned char* buf,int len){ // mp_msg(MSGT_DECVIDEO,MSGL_DBG2,"video.c: process_userdata() detected Closed Captions!\n"); if(subcc_enabled) subcc_process_data(buf+2,len-2); } - if(!verbose) return; + if(verbose<2) return; printf( "user_data: len=%3d %02X %02X %02X %02X '", len, buf[0], buf[1], buf[2], buf[3]); for(i=0;i<len;i++) |