qt: playlist: use item title if available
[vlc.git] / modules / video_filter / filter_event_info.h
blob6b935345b2b4496fb24c3269d732c3838a8a9b75
1 /*****************************************************************************
2 * filter_event_info.h:
3 *****************************************************************************
4 * Copyright (C) 2004-2005 VLC authors and VideoLAN
6 * Authors: Dugal Harris
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU Lesser General Public License as published by
10 * the Free Software Foundation; either version 2.1 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public License
19 * along with this program; if not, write to the Free Software Foundation,
20 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
21 *****************************************************************************/
23 #ifndef FILTER_EVENT_INFO_H_
24 #define FILTER_EVENT_INFO_H_
26 #define VIDEO_FILTER_EVENT_VARIABLE "video-filter-event"
28 typedef struct video_filter_region_info_t
30 int i_x; /* x-coordinate of the left-most rectangle corner[s] */
31 int i_y; /* y-coordinate of the top-most or bottom-most
32 rectangle corner[s] */
33 int i_width; /* width of the rectangle */
34 int i_height; /* height of the rectangle */
36 int i_id;
37 int i_type;
39 char *p_description;
40 float *pf_param;
41 int i_param_size;
42 } video_filter_region_info_t;
44 typedef struct video_filter_event_info_t
46 video_filter_region_info_t *p_region;
47 int i_region_size;
48 } video_filter_event_info_t;
50 /*class CTest
52 public:
53 CTest(){i=0;};
54 void Method(){i=0;};
55 int i;
56 };*/
58 #endif /*FILTER_EVENT_INFO_H_*/