diff libmpdemux/stheader.h @ 8152:4b02f73cb4b9

dlopen() support for ad and vd
author alex
date Mon, 11 Nov 2002 17:28:41 +0000
parents 10698ce4b2a4
children bffdd162d034
line wrap: on
line diff
--- a/libmpdemux/stheader.h	Mon Nov 11 17:13:37 2002 +0000
+++ b/libmpdemux/stheader.h	Mon Nov 11 17:28:41 2002 +0000
@@ -70,6 +70,9 @@
   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 @@
   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;