[MPlayer-dev-eng] [PATCH] Commandline switch to enable/disable DVD protection

D Richard Felker III dalias at aerifal.cx
Wed Jan 29 07:19:53 CET 2003


IMO this is silly. It won't help protect anyone since the code is
still there and only disabled by the user. Lockouts like this -- even
optional ones -- do not belong in free software. MPlayer is not Alan
Cox's toy with which to "make a statement" by crippling "illegal"
features. MPlayer developers either simply don't care about the law
(many of them live in places where it does not apply), or prefer to
make their statements through civil disobedience rather than
mindlessly accepting what the govt/corporations say is law.

Rich


On Tue, Jan 28, 2003 at 11:12:05PM -0600, Krister Lagerstrom wrote:
> This patch adds a new commandline flag to disable DVD protection
> override (=don't use DeCSS in libmpdvdkit2).
> 
> The default is to leave protection disabled (=DeCSS enabled), so this
> patch won't change how mplayer/mencoder works today unless the flag is
> given on the commandline.
> 
> I've tested it on both protected (encrypted) and unprotected DVDs.
> 
> My motivation for this flag is to be able to distribute a binary
> version of MPlayer that hopefully will be legal in all/most countries
> as far as DVD protection is concerned. The flag can be used in wrapper
> programs for MPlayer. It could then be removed by the users who live in
> countries where it is legal to play and backup protected DVDs using
> mplayer/mencoder (e.g. Norway, land of the free :-).
> 
> 
> Usage:
> 
> DEMUXER/STREAM OPTIONS
> 
>    -nodvdprotection-override
>       This option disables DVD protection override. Encrypted and
>       region coded DVDs cannot be played. The default is to enable
>       DVD protection override.
> 
> 
> The patch was made using "cvs diff -u" using the latest CVS.
> 
> 		/ Krister
> 
> 
> 
> 

> Index: cfg-common.h
> ===================================================================
> RCS file: /cvsroot/mplayer/main/cfg-common.h,v
> retrieving revision 1.82
> diff -u -u -r1.82 cfg-common.h
> --- cfg-common.h	27 Jan 2003 23:41:38 -0000	1.82
> +++ cfg-common.h	29 Jan 2003 04:47:25 -0000
> @@ -22,6 +22,8 @@
>  	{"chapter", dvd_parse_chapter_range, CONF_TYPE_FUNC_PARAM, 0, 0, 0, NULL},
>  	{"alang", &audio_lang, CONF_TYPE_STRING, 0, 0, 0, NULL},
>  	{"slang", &dvdsub_lang, CONF_TYPE_STRING, 0, 0, 0, NULL},
> +	{"dvdprotection-override", &dvdprotection_override, CONF_TYPE_FLAG, 0, 0, 1, NULL},
> +	{"nodvdprotection-override", &dvdprotection_override, CONF_TYPE_FLAG, 0, 1, 0, NULL},
>  #else
>  	{"dvd", "MPlayer was compiled WITHOUT libdvdread support!\n", CONF_TYPE_PRINT, CONF_NOCFG, 0, 0, NULL},
>  #endif
> Index: libmpdemux/stream.h
> ===================================================================
> RCS file: /cvsroot/mplayer/main/libmpdemux/stream.h,v
> retrieving revision 1.55
> diff -u -u -r1.55 stream.h
> --- libmpdemux/stream.h	4 Jan 2003 20:11:06 -0000	1.55
> +++ libmpdemux/stream.h	29 Jan 2003 04:47:25 -0000
> @@ -206,6 +206,13 @@
>  
>  #ifdef USE_DVDREAD
>  
> +/*
> + * Override DVD protection (=DeCSS). Default == 1 (override = use DeCSS).
> + * This variable is set from the command line, and used in
> + * mplayer/libmpdvdkit2/libdvdcss.c.
> + */
> +extern int dvdprotection_override;
> +
>  #ifdef USE_MPDVDKIT
>  #if (USE_MPDVDKIT == 2)
>  #include "../libmpdvdkit2/dvd_reader.h"
> Index: libmpdvdkit2/libdvdcss.c
> ===================================================================
> RCS file: /cvsroot/mplayer/main/libmpdvdkit2/libdvdcss.c,v
> retrieving revision 1.7
> diff -u -u -r1.7 libdvdcss.c
> --- libmpdvdkit2/libdvdcss.c	8 Jan 2003 16:10:39 -0000	1.7
> +++ libmpdvdkit2/libdvdcss.c	29 Jan 2003 04:47:26 -0000
> @@ -97,6 +97,8 @@
>  #   include <unistd.h>
>  #endif
>  
> +#include "../mp_msg.h"
> +
>  #include "dvdcss.h"
>  
>  #include "common.h"
> @@ -119,6 +121,9 @@
>  
>  char * dvdcss_cache_dir = NULL;
>  
> +/* Override DVD protection (=DeCSS). Default is on. */
> +int dvdprotection_override = 1;
> +
>  /**
>   * \brief Open a DVD device or directory and return a dvdcss instance.
>   *
> @@ -245,6 +250,20 @@
>  	}
>      }
>  
> +    /* Check the global DVD protection override flag */
> +    if ( dvdcss->b_scrambled && !dvdprotection_override )
> +    {
> +        static char err_msg[] = "The DVD is protected! "
> +                                "Use -dvdprotection-override to override "
> +                                "the protection, but only if legal "
> +                                "in your jurisdiction!\n";
> +
> +        
> +        /* The DVD is protected, and protection is not overridden by the user  */
> +        mp_msg( MSGT_DVD, MSGL_ERR, err_msg);
> +        return NULL;
> +    }
> +      
>      /* If disc is CSS protected and the ioctls work, authenticate the drive */
>      if( dvdcss->b_scrambled && dvdcss->b_ioctls )
>      {

> _______________________________________________
> MPlayer-dev-eng mailing list
> MPlayer-dev-eng at mplayerhq.hu
> http://mplayerhq.hu/mailman/listinfo/mplayer-dev-eng



More information about the MPlayer-dev-eng mailing list