Ocean
media/usb/USB.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) Meta Platforms, Inc. and affiliates.
3  *
4  * This source code is licensed under the MIT license found in the
5  * LICENSE file in the root directory of this source tree.
6  */
7 
8 #ifndef META_OCEAN_MEDIA_USB_USB_H
9 #define META_OCEAN_MEDIA_USB_USB_H
10 
11 #include "ocean/media/Media.h"
12 
13 namespace Ocean
14 {
15 
16 namespace Media
17 {
18 
19 namespace USB
20 {
21 
22 /**
23  * @ingroup media
24  * @defgroup mediausb Ocean Media USB Library
25  * @{
26  * The Ocean Media USB Library provides camera access to USB video devices.
27  * The library is platform independent but is mainly intended for Android platforms, as USB device access through libusb is quite limited on other platforms.
28  * @}
29  */
30 
31 /**
32  * @namespace Ocean::Media::USB Namespace of the Media USB library.<p>
33  * The Namespace Ocean::Media::USB is used in the entire Ocean Media USB Library.
34  */
35 
36 // Defines OCEAN_MEDIA_USB_EXPORT for dll export and import.
37 #if defined(_WINDOWS) && defined(OCEAN_RUNTIME_SHARED)
38  #ifdef USE_OCEAN_MEDIA_USB_EXPORT
39  #define OCEAN_MEDIA_USB_EXPORT __declspec(dllexport)
40  #else
41  #define OCEAN_MEDIA_USB_EXPORT __declspec(dllimport)
42  #endif
43 #else
44  #define OCEAN_MEDIA_USB_EXPORT
45 #endif
46 
47 /**
48  * Returns the name of this media library.
49  * @ingroup mediausb
50  */
51 OCEAN_MEDIA_USB_EXPORT std::string nameUSBLibrary();
52 
53 #ifdef OCEAN_RUNTIME_STATIC
54 
55 /**
56  * Registers this media library at the global library manager.
57  * This function calls USBLibrary::registerLibrary() only.
58  * @ingroup mediausb
59  */
61 
62 /**
63  * Unregisters this media library at the global library manager.
64  * This function calls USBLibrary::unregisterLibrary() only.
65  * @return True, if succeeded
66  * @ingroup mediausb
67  */
69 
70 #endif // OCEAN_RUNTIME_STATIC
71 
72 }
73 
74 }
75 
76 }
77 
78 #endif // META_OCEAN_MEDIA_USB_USB_H
void registerUSBLibrary()
Registers this media library at the global library manager.
bool unregisterUSBLibrary()
Unregisters this media library at the global library manager.
OCEAN_MEDIA_USB_EXPORT std::string nameUSBLibrary()
Returns the name of this media library.
The namespace covering the entire Ocean framework.
Definition: Accessor.h:15