summaryrefslogtreecommitdiffstats
path: root/fibmap_mplayer.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 /fibmap_mplayer.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 'fibmap_mplayer.c')
-rw-r--r--fibmap_mplayer.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/fibmap_mplayer.c b/fibmap_mplayer.c
index ead0879212..75395a90a8 100644
--- a/fibmap_mplayer.c
+++ b/fibmap_mplayer.c
@@ -1,3 +1,6 @@
+/* (C)2001,2002 by LGB (Gábor Lénárt), lgb@lgb.hu
+ Part of MPlayer project, this source is copyrighted according to GNU/GPL. */
+
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
@@ -30,6 +33,6 @@ int main ( int argc , char ** argv )
return 1;
}
close(fd);
- fprintf(stderr,"%d\n",lba);
+ printf("%d\n",lba);
return 0;
}