]> git.sesse.net Git - x264/blob - gtk/x264_gtk_encode.c
GTK: support yuv4mpeg input.
[x264] / gtk / x264_gtk_encode.c
1 #include <gtk/gtk.h>
2
3 #include "x264_gtk_encode_main_window.h"
4
5 int
6 main (int argc, char *argv[])
7 {
8   g_thread_init (NULL);
9   gtk_init (&argc, &argv);
10
11   x264_gtk_encode_main_window ();
12
13   gtk_main ();
14
15   return 0;
16 }