]> git.sesse.net Git - vlc/commitdiff
Rajout d'un vlc.h.new que j'avais oublie lors du dernier commit.
authorJean-Marc Dressler <polux@videolan.org>
Thu, 13 Jan 2000 10:44:27 +0000 (10:44 +0000)
committerJean-Marc Dressler <polux@videolan.org>
Thu, 13 Jan 2000 10:44:27 +0000 (10:44 +0000)
Changement du mode d'affichage par defaut du makefile sur X11.

Makefile
include/vlc.h.new [new file with mode: 0644]

index d10e6573b47ee27f248c9f811ce2add2bff9cae7..0b83c17526cd11e8d8d6a1f3f79ac749e0e5aba2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -14,9 +14,9 @@
 #SHELL = /bin/sh
 
 # Video output settings
-#VIDEO=X11
+VIDEO=X11
 #VIDEO=DGA (not yet supported)
-VIDEO=FB
+#VIDEO=FB
 #VIDEO=GGI (not yet supported)
 #VIDEO=BEOS (not yet supported)
 
diff --git a/include/vlc.h.new b/include/vlc.h.new
new file mode 100644 (file)
index 0000000..5215fef
--- /dev/null
@@ -0,0 +1,92 @@
+/*******************************************************************************
+ * vlc.h: all headers
+ * (c)1998 VideoLAN
+ *******************************************************************************
+ * This header includes all vlc .h headers and depending headers. A source file
+ * including it would also be able to use any of the structures of the project.
+ * Note that functions or system headers specific to the file itself are not
+ * included.
+ *******************************************************************************
+ * required headers:
+ *  none
+ *******************************************************************************/
+
+/* System headers */
+#include <errno.h>
+#include <fcntl.h>
+#include <getopt.h>
+#include <signal.h>
+#include <stdarg.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+
+#include <arpa/inet.h>
+
+#include <net/if.h>
+
+#include <netinet/in.h>
+
+#include <sys/ioctl.h>
+#include <sys/shm.h>
+#include <sys/soundcard.h>
+#include <sys/uio.h>
+
+#include <X11/Xlib.h>
+#include <X11/Xutil.h>
+#include <X11/Xatom.h>
+#include <X11/extensions/XShm.h>
+#include <X11/extensions/xf86dga.h>
+
+
+
+/* Common headers */
+#include "config.h"
+#include "common.h"
+#include "mtime.h"
+#include "vlc_thread.h"
+#include "netutils.h"
+#include "debug.h"
+#include "xutils.h"
+#include "intf_msg.h"
+
+/* Input */
+#include "input.h"
+#include "input_psi.h"
+#include "input_pcr.h"
+#include "input_netlist.h"
+#include "input_vlan.h"
+#include "decoder_fifo.h"
+#include "input_file.h"
+#include "input_network.h"
+
+/* Audio */
+#include "audio_output.h"
+#include "audio_decoder.h"
+
+/* Video */
+#include "video.h"
+#include "video_output.h"
+
+#include "vdec_idct.h"
+#include "video_decoder.h"
+#include "vdec_motion.h"
+
+#include "vpar_blocks.h"
+#include "vpar_headers.h"
+#include "video_fifo.h"
+#include "vpar_synchro.h"
+#include "video_parser.h"
+
+
+/* Interface */
+#include "intf_cmd.h"
+#include "intf_ctrl.h"
+#include "intf_sys.h"
+#include "intf_console.h"
+#include "interface.h"
+
+#include "main.h"
+
+