9cd6a39c3e
Mozilla Firefox is a free, open-source and cross-platform web browser for Windows, Linux, MacOS X and many other operating systems. It is fast and easy to use, and offers many advantages over other web browsers, such as tabbed browsing and the ability to block pop-up windows. Firefox also offers excellent bookmark and history management, and it can be extended by developers using industry standards such as XML, CSS, JavaScript, C++, etc. Many extensions are available. This package tracks 38 ESR.
24 lines
686 B
C
24 lines
686 B
C
$NetBSD: patch-media_libcubeb_src_cubeb.c,v 1.1 2015/07/09 14:13:52 ryoon Exp $
|
|
|
|
--- media/libcubeb/src/cubeb.c.orig 2014-10-11 09:06:39.000000000 +0000
|
|
+++ media/libcubeb/src/cubeb.c
|
|
@@ -54,6 +54,9 @@ int opensl_init(cubeb ** context, char c
|
|
#if defined(USE_AUDIOTRACK)
|
|
int audiotrack_init(cubeb ** context, char const * context_name);
|
|
#endif
|
|
+#if defined(USE_OSS)
|
|
+int oss_init(cubeb ** context, char const * context_name);
|
|
+#endif
|
|
|
|
int
|
|
validate_stream_params(cubeb_stream_params stream_params)
|
|
@@ -120,6 +123,9 @@ cubeb_init(cubeb ** context, char const
|
|
#if defined(USE_AUDIOTRACK)
|
|
audiotrack_init,
|
|
#endif
|
|
+#if defined(USE_OSS)
|
|
+ oss_init,
|
|
+#endif
|
|
};
|
|
int i;
|
|
|