demux: mp4: avoid audio cuts on seek
[vlc.git] / modules / video_filter / filter_event_info.h
blob0f81ff8112f47d211888aad02ec0de38a99d3259
1 /*****************************************************************************
2 * filter_event_info.h:
3 *****************************************************************************
4 * Copyright (C) 2004-2005 VLC authors and VideoLAN
5 * $Id: ???
7 * Authors: Dugal Harris
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or
12 * (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program; if not, write to the Free Software Foundation,
21 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
22 *****************************************************************************/
24 #ifndef FILTER_EVENT_INFO_H_
25 #define FILTER_EVENT_INFO_H_
27 #define VIDEO_FILTER_EVENT_VARIABLE "video-filter-event"
29 typedef struct video_filter_region_info_t
31 int i_x; /* x-coordinate of the left-most rectangle corner[s] */
32 int i_y; /* y-coordinate of the top-most or bottom-most
33 rectangle corner[s] */
34 int i_width; /* width of the rectangle */
35 int i_height; /* height of the rectangle */
37 int i_id;
38 int i_type;
40 char *p_description;
41 float *pf_param;
42 int i_param_size;
43 } video_filter_region_info_t;
45 typedef struct video_filter_event_info_t
47 video_filter_region_info_t *p_region;
48 int i_region_size;
49 } video_filter_event_info_t;
51 /*class CTest
53 public:
54 CTest(){i=0;};
55 void Method(){i=0;};
56 int i;
57 };*/
59 #endif /*FILTER_EVENT_INFO_H_*/