summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-19 21:43:02 +0000
committernicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2>2006-06-19 21:43:02 +0000
commitffd83d3e2a4be09ba98c3730a036644596c62079 (patch)
treee1dd0322a57766cfd89b7f9f2eafa17b5ad519a5
parent30954ab7f1161a0db1ae61c6765dfe1f18a7ec1a (diff)
downloadmpv-ffd83d3e2a4be09ba98c3730a036644596c62079.tar.bz2
mpv-ffd83d3e2a4be09ba98c3730a036644596c62079.tar.xz
Remove misleading Encrypted VOB message; patch by Ismail Donmez (ismail ab pardus punctum org puntum tr)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@18761 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--help/help_mp-en.h2
-rw-r--r--libmpdemux/demux_mpg.c3
2 files changed, 0 insertions, 5 deletions
diff --git a/help/help_mp-en.h b/help/help_mp-en.h
index 7f76b2c83f..af90d9eacd 100644
--- a/help/help_mp-en.h
+++ b/help/help_mp-en.h
@@ -584,8 +584,6 @@ static char help_text[]=
#define MSGTR_CantSeekRawAVI "Cannot seek in raw AVI streams. (Index required, try with the -idx switch.)\n"
#define MSGTR_CantSeekFile "Cannot seek in this file.\n"
-#define MSGTR_EncryptedVOB "Encrypted VOB file! Read DOCS/HTML/en/cd-dvd.html.\n"
-
#define MSGTR_MOVcomprhdr "MOV: Compressed headers support requires ZLIB!\n"
#define MSGTR_MOVvariableFourCC "MOV: WARNING: Variable FourCC detected!?\n"
#define MSGTR_MOVtooManyTrk "MOV: WARNING: too many tracks"
diff --git a/libmpdemux/demux_mpg.c b/libmpdemux/demux_mpg.c
index 166dc34154..1a71a32b92 100644
--- a/libmpdemux/demux_mpg.c
+++ b/libmpdemux/demux_mpg.c
@@ -246,9 +246,6 @@ static int demux_mpg_read_packet(demuxer_t *demux,int id){
int pts_flags;
int hdrlen;
// System-2 (.VOB) stream:
- if((c>>4)&3) {
- mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_EncryptedVOB);
- }
c=stream_read_char(demux->stream); pts_flags=c>>6;
c=stream_read_char(demux->stream); hdrlen=c;
len-=2;