summaryrefslogtreecommitdiffstats
path: root/HandBrake.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'HandBrake.cpp')
-rw-r--r--HandBrake.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/HandBrake.cpp b/HandBrake.cpp
new file mode 100644
index 000000000..91a2628b4
--- /dev/null
+++ b/HandBrake.cpp
@@ -0,0 +1,18 @@
+/* $Id: HandBrake.cpp,v 1.1.1.1 2003/06/24 13:43:48 titer Exp $ */
+
+#include "HBApp.h"
+
+#include <ffmpeg/avcodec.h>
+
+int main()
+{
+ /* libavcodec initializations */
+ avcodec_init();
+ register_avcodec( &mpeg4_encoder );
+
+ /* Run the BApplication */
+ HBApp * app = new HBApp();
+ app->Run();
+ delete app;
+ return 0;
+}