libcss support in mencoder, too

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3980 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
lgb 2002-01-04 14:03:02 +00:00
parent 3b4d807f66
commit e360cb9644
1 changed files with 19 additions and 0 deletions

View File

@ -382,6 +382,25 @@ divx4_param.rc_reaction_ratio = 20;
if(stream_cache_size) stream_enable_cache(stream,stream_cache_size*1024,0,0);
#ifdef HAVE_LIBCSS
// current_module="libcss";
if (dvdimportkey) {
if (dvd_import_key(dvdimportkey)) {
mp_msg(MSGT_CPLAYER,MSGL_FATAL,MSGTR_ErrorDVDkey);
exit(1);
}
mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_CmdlineDVDkey);
}
if (dvd_auth_device) {
// if (dvd_auth(dvd_auth_device,f)) {
if (dvd_auth(dvd_auth_device,filename)) {
mp_msg(MSGT_CPLAYER,MSGL_FATAL,"Error in DVD auth...\n");
exit(1);
}
mp_msg(MSGT_CPLAYER,MSGL_INFO,MSGTR_DVDauthOk);
}
#endif
//demuxer=demux_open(stream,file_format,video_id,audio_id,dvdsub_id);
demuxer=demux_open(stream,file_format,audio_id,video_id,dvdsub_id);
if(!demuxer){