summaryrefslogtreecommitdiffstats
path: root/libmpdemux
diff options
context:
space:
mode:
authoralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-11 17:28:41 +0000
committeralex <alex@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-11-11 17:28:41 +0000
commit7ea0933b9e76b41e1063cfd702252f209ed7bea1 (patch)
treedeb7bd2c4f1ac56564a9262ae618c6b8c300ad79 /libmpdemux
parent3bc5ffa8f8fa58052343ee147ecd0871c51a5b8d (diff)
downloadmpv-7ea0933b9e76b41e1063cfd702252f209ed7bea1.tar.bz2
mpv-7ea0933b9e76b41e1063cfd702252f209ed7bea1.tar.xz
dlopen() support for ad and vd
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8153 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux')
-rw-r--r--libmpdemux/stheader.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libmpdemux/stheader.h b/libmpdemux/stheader.h
index 9c456570b3..fa0e96b3f7 100644
--- a/libmpdemux/stheader.h
+++ b/libmpdemux/stheader.h
@@ -70,6 +70,9 @@ typedef struct {
int a_out_buffer_size;
// void* audio_out; // the audio_out handle, used for this audio stream
void* afilter; // the audio filter stream
+#ifdef DYNAMIC_PLUGINS
+ void *dec_handle;
+#endif
// win32-compatible codec parameters:
AVIStreamHeader audio;
WAVEFORMATEX* wf;
@@ -99,6 +102,9 @@ typedef struct {
void* video_out; // the video_out handle, used for this video stream
void* vfilter; // the video filter chain, used for this video stream
int vf_inited;
+#ifdef DYNAMIC_PLUGINS
+ void *dec_handle;
+#endif
// win32-compatible codec parameters:
AVIStreamHeader video;
BITMAPINFOHEADER* bih;