/usr/include/sipxtapi/mp/MpodOss.h is in libsipxtapi-dev 3.3.0~test17-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | //
// Copyright (C) 2007 SIPez LLC.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// Copyright (C) 2007 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// $$
///////////////////////////////////////////////////////////////////////////////
// Author: Sergey Kostanbaev <Sergey DOT Kostanbaev AT sipez DOT com>
#ifndef _MpodOss_h_
#define _MpodOss_h_
// SYSTEM INCLUDES
#include <pthread.h>
#include <semaphore.h>
#ifdef __linux__
#include <sys/types.h>
#include <sys/soundcard.h>
#endif // __linux__
// APPLICATION INCLUDES
#include "mp/MpOutputDeviceDriver.h"
#include "mp/MpOss.h"
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
class MpOutputDeviceManager;
/**
* @brief Container for device specific input OSS driver.
*/
class MpodOss : public MpOutputDeviceDriver
{
friend class MpOss;
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
/* ============================ CREATORS ================================== */
///@name Creators
//@{
/// @brief Default constructor.
MpodOss(const UtlString& name);
/**<
* @param name - (in) unique device driver name (e.g. "/dev/dsp",
* "YAMAHA AC-XG WDM Audio", etc.).
* @param nInputBuffers - (in) Maximum number of frames in internal buffer.
*/
/// @brief Destructor
~MpodOss();
//@}
/* ============================ MANIPULATORS ============================== */
///@name Manipulators
//@{
/// @copydoc MpOutputDeviceDriver::enableDevice()
OsStatus enableDevice(unsigned samplesPerFrame,
unsigned samplesPerSec,
MpFrameTime currentFrameTime,
OsCallback &frameTicker);
/// @copydoc MpOutputDeviceDriver::disableDevice()
OsStatus disableDevice();
/// @copydoc MpOutputDeviceDriver::pushFrame()
OsStatus pushFrame(unsigned int numSamples,
const MpAudioSample* samples,
MpFrameTime frameTime);
OsStatus setNotificationMode(UtlBoolean bThreadNotification);
//@}
/* ============================ ACCESSORS ================================= */
///@name Accessors
//@{
//@}
/* ============================ INQUIRY =================================== */
///@name Inquiry
//@{
/// @brief Inquire if the OSS device is valid
inline UtlBoolean isDeviceValid();
//@}
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
MpAudioSample* mAudioFrame; ///< Wave buffer.
MpFrameTime mCurrentFrameTime; ///< The current frame time for this device.
UtlBoolean mNotificationThreadEn;
MpOssContainer* mpCont; ///< Pointer to Wrapper container
/// @brief Signaling for next frame if notificator used do nothing otherwise
OsStatus signalForNextFrame();
/// @brief Adding frame time to <tt>mCurrentFrameTime</tt>.
void skipFrame();
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
MpOss *pDevWrapper;
/// @brief Copy constructor (not implemented for this class)
MpodOss(const MpodOss& rMpOutputDeviceDriver);
/// @brief Assignment operator (not implemented for this class)
MpodOss& operator=(const MpodOss& rhs);
};
/* ============================ INLINE METHODS ============================ */
UtlBoolean MpodOss::isDeviceValid()
{
//printf("MpRsOdOss::isDeviceValid()\n"); fflush(stdout);
return ((pDevWrapper != NULL) && pDevWrapper->isDeviceValid());
}
#endif // _MpodOss_h_
|