summaryrefslogtreecommitdiffstats
path: root/libmpdemux/demux_mpg.c
diff options
context:
space:
mode:
authorlgb <lgb@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-04 13:08:14 +0000
committerlgb <lgb@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-01-04 13:08:14 +0000
commit997c6f8f7b3dd50444a623d041bf745cbde83268 (patch)
tree5fdc44d120b0f43b6fd6adf4f50464a5a363a8c3 /libmpdemux/demux_mpg.c
parentc62a555b0cb0dcb540f80c9dae74ff5065cdc1f7 (diff)
downloadmpv-997c6f8f7b3dd50444a623d041bf745cbde83268.tar.bz2
mpv-997c6f8f7b3dd50444a623d041bf745cbde83268.tar.xz
Return of the 'Old-style-DVD-support', with dynamic loading (using libdl) so
no more conflict with libdvdread: you can compile in both of libdvdread and libcss support! You can even select libcss.so to load from command line or configuration file, with '-csslib /usr/local/lib/libcss.so' or something similar. Default for this option is /usr/local/lib/libcss.so. Note: libcss version (ver>0.1) with newer API is not supported in this version! This is the first version so stay tuned :) git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3976 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/demux_mpg.c')
-rw-r--r--libmpdemux/demux_mpg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpdemux/demux_mpg.c b/libmpdemux/demux_mpg.c
index 4f91ad2ebf..95fa6168f0 100644
--- a/libmpdemux/demux_mpg.c
+++ b/libmpdemux/demux_mpg.c
@@ -221,7 +221,7 @@ static int demux_mpg_read_packet(demuxer_t *demux,int id){
// printf("packet start = 0x%X \n",stream_tell(demux->stream)-packet_start_pos);
#ifdef HAVE_LIBCSS
if (css) {
- if (descrambling) CSSDescramble(demux->stream->buffer,key_title); else
+ if (descrambling) dvd_css_descramble(demux->stream->buffer,key_title); else
mp_msg(MSGT_DEMUX,MSGL_WARN,MSGTR_EncryptedVOBauth);
}
#endif