/usr/include/sipxtapi/ptapi/PtMediaCapabilities.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 | //
// Copyright (C) 2004-2006 SIPfoundry Inc.
// Licensed by SIPfoundry under the LGPL license.
//
// Copyright (C) 2004-2006 Pingtel Corp. All rights reserved.
// Licensed to SIPfoundry under a Contributor Agreement.
//
// $$
///////////////////////////////////////////////////////////////////////////////
#ifndef _PtMediaCapabilities_h_
#define _PtMediaCapabilities_h_
// SYSTEM INCLUDES
// APPLICATION INCLUDES
#include <ptapi/PtDefs.h>
// DEFINES
#define CODEC_DELTA 10
// MACROS
// EXTERNAL FUNCTIONS
// EXTERNAL VARIABLES
// CONSTANTS
// STRUCTS
// TYPEDEFS
// FORWARD DECLARATIONS
class PtAudioCodec;
//:Class short description which may consist of multiple lines (note the ':')
// Class detailed description which may extend to multiple lines
class PtMediaCapabilities
{
/* //////////////////////////// PUBLIC //////////////////////////////////// */
public:
/* ============================ CREATORS ================================== */
PtMediaCapabilities(PtAudioCodec aAudioCodecs[] = NULL, int numAudioCodecs = 0);
//:Default constructor
// This constructor takes an optional array of audio codecs which define
// the audio capabilities. Note: the order implies the preference (i.e.
// the first is prefered over the second, etc.).
//! param: (in) aAudioCodecs - the array of codecs to be copied into this PtMediaCapabilities object.
//! param: (in) numAudioCodecs - the number of codecs in the <I>aAudioCodecs</> array.
PtMediaCapabilities(const PtMediaCapabilities& rPtMediaCapabilities);
//:Copy constructor
virtual
~PtMediaCapabilities();
//:Destructor
/* ============================ MANIPULATORS ============================== */
PtMediaCapabilities& operator=(const PtMediaCapabilities& rhs);
//:Assignment operator
/* ============================ ACCESSORS ================================= */
int getNumAudioCodecs() const;
//: Get the number of codecs contained in this PtMediaCapabilities object.
//! returns: the number of codecs
PtBoolean getAudioCodec(int index, PtAudioCodec& codec);
//: Get the condec contained at the given index
//! param: (in) index - index indicating which codec is requested.
//! param: (out) codec - reference to code to which the codec parameters are copied.
//! retcode: TRUE - if a codec exists at the given index.
//! retcode: FALSE - if index is invalid.
void addAudioCodec(PtAudioCodec& codec);
//: Add an audio codec to this PtMediaCapabilities object.
// Note: the order in which the codecs are added implies the preference
// (i.e. The first is prefered over the second and so on.).
//! param: (in) codec - the codec to be copied and added to this PtMediaCapabilities object.
/* ============================ INQUIRY =================================== */
/* //////////////////////////// PROTECTED ///////////////////////////////// */
protected:
/* //////////////////////////// PRIVATE /////////////////////////////////// */
private:
int mSizeAudioCodecs;
int mNumAudioCodecs;
PtAudioCodec* mAudioCodecs;
};
/* ============================ INLINE METHODS ============================ */
#endif // _PtMediaCapabilities_h_
|