diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-25 15:03:20 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2002-12-25 15:03:20 +0000 |
commit | 6da257c16f288f309abc47004156b6cf6fc7461e (patch) | |
tree | 93a85f9881f29f69558f7081f7c27f1e0ba3b653 /src/xine-engine/post.h | |
parent | b370640efc26593876e4f022459023dc5c1ec755 (diff) | |
download | xine-lib-6da257c16f288f309abc47004156b6cf6fc7461e.tar.gz xine-lib-6da257c16f288f309abc47004156b6cf6fc7461e.tar.bz2 |
change some types for convenience (less casts)
CVS patchset: 3678
CVS date: 2002/12/25 15:03:20
Diffstat (limited to 'src/xine-engine/post.h')
-rw-r--r-- | src/xine-engine/post.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/xine-engine/post.h b/src/xine-engine/post.h index 115e96a22..d50b1d575 100644 --- a/src/xine-engine/post.h +++ b/src/xine-engine/post.h @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: post.h,v 1.3 2002/12/24 13:36:21 miguelfreitas Exp $ + * $Id: post.h,v 1.4 2002/12/25 15:03:20 mroi Exp $ * * post plugin definitions * @@ -119,12 +119,12 @@ struct post_video_port_s { /* backward reference so that you have access to the post plugin * when the call only gives you the port */ - xine_post_t *post; + post_plugin_t *post; }; /* use this to create a new, trivially decorated video port in which * port functions can be replaced with own implementations */ -post_video_port_t *post_intercept_video_port(xine_video_port_t *port); +post_video_port_t *post_intercept_video_port(post_plugin_t *post, xine_video_port_t *port); /* use this to decorate and to undecorate a frame so that its functions * can be replaced with own implementations */ @@ -143,11 +143,11 @@ struct post_audio_port_s { /* backward reference so that you have access to the post plugin * when the call only gives you the port */ - xine_post_t *post; + post_plugin_t *post; }; /* use this to create a new, trivially decorated audio port in which * port functions can be replaced with own implementations */ -post_audio_port_t *post_intercept_audio_port(xine_audio_port_t *port); +post_audio_port_t *post_intercept_audio_port(post_plugin_t *post, xine_audio_port_t *port); #endif |