summaryrefslogtreecommitdiffstats
path: root/dll_init.h
diff options
context:
space:
mode:
authorarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-02 21:44:45 +0000
committerarpi <arpi@b3059339-0415-0410-9bf9-f77b7e298cf2>2001-10-02 21:44:45 +0000
commitce8be9282b1241efb1fdc9f20fa65ec7747ba1f6 (patch)
tree32a8ad00b59bb82d96ebfc9e45a05926f20adb63 /dll_init.h
parentb45d365ae4f04bd15dbcf9e88e991fc243d06cc5 (diff)
downloadmpv-ce8be9282b1241efb1fdc9f20fa65ec7747ba1f6.tar.bz2
mpv-ce8be9282b1241efb1fdc9f20fa65ec7747ba1f6.tar.xz
VfW stuff moved to dll_init, warnings fixed, using dll_init.h
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2050 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'dll_init.h')
-rw-r--r--dll_init.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/dll_init.h b/dll_init.h
new file mode 100644
index 0000000000..8864d9d5ba
--- /dev/null
+++ b/dll_init.h
@@ -0,0 +1,10 @@
+
+// Win32 VfW/ACM interface:
+
+extern char* win32_codec_name; // must be set before calling DrvOpen() !!!
+
+int init_acm_audio_codec(sh_audio_t *sh_audio);
+int acm_decode_audio(sh_audio_t *sh_audio, void* a_buffer,int minlen,int maxlen);
+
+int init_vfw_video_codec(sh_video_t *sh_video,int ex);
+int vfw_decode_video(sh_video_t* sh_video,void* start,int in_size,int drop_frame,int ex);