add some test
[omnplay] / src / omnplay.cpp
1 /*
2 * omnplay.c -- GTK+ 2 omnplay
3 * Copyright (C) 2011 Maksym Veremeyenko <verem@m1stereo.tv>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software Foundation,
17 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <gtk/gtk.h>
28 #include <gdk/gdkkeysyms.h>
29
30 #include "omnplay.h"
31 #include "ui.h"
32
33 #include "omplrclnt.h"
34
35 static gboolean on_main_window_delete_event( GtkWidget *widget, GdkEvent *event, gpointer user_data )
36 {
37 gtk_exit(0);
38 return TRUE;
39 }
40
41
42 omnplay_instance_t* omnplay_create(int argc, char** argv)
43 {
44 omnplay_instance_t* app;
45
46 app = (omnplay_instance_t*)malloc(sizeof(omnplay_instance_t));
47 memset(app, 0, sizeof(omnplay_instance_t));
48
49 app->window = ui_omnplay(app);
50
51 return app;
52 };
53
54 void omnplay_close(omnplay_instance_t* app)
55 {
56 };
57
58 #if 0
59 static void test()
60 {
61 int r;
62 OmPlrClipInfo clip_info;
63 char clip_name[omPlrMaxClipDirLen];
64 OmPlrHandle omn;
65
66 /* open director */
67 r = OmPlrOpen
68 (
69 "omneon-1b.internal.m1stereo.tv",
70 "Play_11",
71 &omn
72 );
73
74 if(r)
75 fprintf(stderr, "ERROR: OmPlrOpen failed with 0x%.8X\n", r);
76 else
77 {
78 /* fetch all clips known in Omneon */
79 r = OmPlrClipGetFirst
80 (
81 omn,
82 clip_name, sizeof(clip_name)
83 );
84
85 if(r)
86 fprintf(stderr, "ERROR: OmPlrClipGetFirst failed with 0x%.8X\n", r);
87 else
88 {
89 fprintf(stderr, "OmPlrClipGetFirst=[%s]\n", clip_name);
90
91 clip_info.maxMsTracks = 0;
92 clip_info.size = sizeof(clip_info);
93 r = OmPlrClipGetInfo(omn, clip_name, &clip_info);
94
95 if(r)
96 fprintf(stderr, "ERROR: OmPlrClipGetInfo failed with 0x%.8X\n", r);
97 else
98 {
99 fprintf(stderr, "OmPlrClipGetInfo(%s)=firstFrame=%d, lastFrame=%d",
100 clip_name, clip_info.firstFrame, clip_info.lastFrame);
101 }
102 };
103
104
105 OmPlrClose(omn);
106 };
107 };
108 #endif
109
110 void omnplay_init(omnplay_instance_t* app)
111 {
112 gtk_signal_connect( GTK_OBJECT( app->window ), "destroy",
113 GTK_SIGNAL_FUNC(on_main_window_delete_event), app);
114 #if 0
115 test();
116 #endif
117 };