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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418
|
/*
* h263codec.h
*
* Open Phone Abstraction Library (OPAL)
* Formally known as the Open H323 project.
*
* Copyright (c) 2005 Salyens
* Copyright (c) 2001 March Networks Corporation
* Copyright (c) 1999-2000 Equivalence Pty. Ltd.
*
* The contents of this file are subject to the Mozilla Public License
* Version 1.0 (the "License"); you may not use this file except in
* compliance with the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* The Original Code is Open Phone Abstraction Library.
*
* The Initial Developer of the Original Code is Equivalence Pty. Ltd.
*
* Contributor(s): Guilhem Tardy (gtardy@salyens.com)
*
* $Log: h263codec.h,v $
* Revision 2.1.2.1 2006/02/13 11:49:28 csoutheren
* Backported H.235 and initialisation fixes from CVS head
*
* Revision 2.2 2006/02/13 03:46:16 csoutheren
* Added initialisation stuff to make sure that everything works OK
*
* Revision 2.1 2006/01/01 19:19:33 dsandras
* Added RFC2190 H.263 codec thanks to Salyens. Many thanks!
*
* Revision 1.1 2005/12/30 12:30:03 guilhem
* *** empty log message ***
*
* Revision 1.1 2005/08/19 22:32:46 gtardy
* Initial release of h263 codec.
*
*/
#ifndef __OPAL_H263CODEC_H
#define __OPAL_H263CODEC_H
#ifdef P_USE_PRAGMA
#pragma interface
#endif
#include <opal/buildopts.h>
#ifndef NO_OPAL_VIDEO
#ifdef RFC2190_AVCODEC
#ifndef NO_H323
#include <h323/h323caps.h>
#endif
#include <codec/vidcodec.h>
#include <rtp/rtp.h>
#define OPAL_H263 "H.263"
#define OPAL_H263_SQCIF "H.263(SQCIF)"
#define OPAL_H263_QCIF "H.263(QCIF)"
#define OPAL_H263_CIF "H.263(CIF)"
extern const OpalVideoFormat & GetOpalH263();
#define OpalH263 GetOpalH263()
struct AVCodec;
struct AVCodecContext;
struct AVFrame;
namespace PWLibStupidLinkerHacks {
extern int rfc2190h263Loader;
};
///////////////////////////////////////////////////////////////////////////////
#ifndef NO_H323
/** This class is a H.263 video capability.
*/
class H323_H263Capability : public H323VideoCapability
{
PCLASSINFO(H323_H263Capability, H323VideoCapability)
public:
/**@name Construction */
//@{
/**Create a new H263 Capability
*/
H323_H263Capability(
unsigned sqcifMPI = 1, // {1..3600 units seconds/frame, 1..32 units 1/29.97 Hz}
unsigned qcifMPI = 2,
unsigned cifMPI = 4,
unsigned cif4MPI = 8,
unsigned cif16MPI = 32,
unsigned maxBitRate = 400,
BOOL unrestrictedVector = FALSE,
BOOL arithmeticCoding = FALSE, // not supported
BOOL advancedPrediction = FALSE,
BOOL pbFrames = FALSE,
BOOL temporalSpatialTradeOff = FALSE, // not supported
unsigned hrd_B = 0, // not supported
unsigned bppMaxKb = 0, // not supported
unsigned slowSqcifMPI = 0,
unsigned slowQcifMPI = 0,
unsigned slowCifMPI = 0,
unsigned slowCif4MPI = 0,
unsigned slowCif16MPI = 0,
BOOL errorCompensation = FALSE // not supported
);
//@}
/**@name Overrides from class PObject */
//@{
/**Create a copy of the object.
*/
virtual PObject * Clone() const;
//@}
/**@name Overrides from class PObject */
//@{
/**Compare object
*/
Comparison Compare(const PObject & obj) const;
//@}
/**@name Identification functions */
//@{
/**Get the sub-type of the capability. This is a code dependent on the
main type of the capability.
This returns one of the four possible combinations of mode and speed
using the enum values of the protocol ASN H245_AudioCapability class.
*/
virtual unsigned GetSubType() const;
/**Get the name of the media data format this class represents.
*/
virtual PString GetFormatName() const;
//@}
/**@name Protocol manipulation */
//@{
/**This function is called whenever and outgoing TerminalCapabilitySet
or OpenLogicalChannel PDU is being constructed for the control channel.
It allows the capability to set the PDU fields from information in
members specific to the class.
The default behaviour sets the data rate field in the PDU.
*/
virtual BOOL OnSendingPDU(
H245_VideoCapability & pdu /// PDU to set information on
) const;
/**This function is called whenever and outgoing RequestMode
PDU is being constructed for the control channel. It allows the
capability to set the PDU fields from information in members specific
to the class.
The default behaviour sets the resolution and bit rate.
*/
virtual BOOL OnSendingPDU(
H245_VideoMode & pdu /// PDU to set information on
) const;
/**This function is called whenever and incoming TerminalCapabilitySet
or OpenLogicalChannel PDU has been used to construct the control
channel. It allows the capability to set from the PDU fields,
information in members specific to the class.
The default behaviour gets the data rate field from the PDU.
*/
virtual BOOL OnReceivedPDU(
const H245_VideoCapability & pdu /// PDU to set information on
);
/** Get sqcifMPI
*/
unsigned GetSQCIFMPI() const
{ return sqcifMPI; }
/** Get qcifMPI
*/
unsigned GetQCIFMPI() const
{ return qcifMPI; }
/** Get cifMPI
*/
unsigned GetCIFMPI() const
{ return cifMPI; }
/** Get cif4MPI
*/
unsigned GetCIF4MPI() const
{ return cif4MPI; }
/** Get cif16MPI
*/
unsigned GetCIF16MPI() const
{ return cif16MPI; }
/** Get maximum bit rate
*/
unsigned GetMaxBitRate() const
{ return maxBitRate; }
/** Get unrestrictedVector capabilty
*/
BOOL GetUnrestrictedVectorCapability() const
{ return unrestrictedVector; }
/** Get arithmeticCoding capabilty
*/
BOOL GetArithmeticCodingCapability() const
{ return arithmeticCoding; }
/** Get advancedPrediction capabilty
*/
BOOL GetAdvancedPredictionCapability() const
{ return advancedPrediction; }
/** Get pbFrames capabilty
*/
BOOL GetPbFramesCapability() const
{ return pbFrames; }
/** Get temporal/spatial tradeoff capabilty
*/
BOOL GetTemporalSpatialTradeOffCapability() const
{ return temporalSpatialTradeOff; }
/** Get hrd_B
*/
BOOL GetHrd_B() const
{ return hrd_B; }
/** Get bppMaxKb
*/
BOOL GetBppMaxKb() const
{ return bppMaxKb; }
/** Get slowSqcifMPI
*/
unsigned GetSlowSQCIFMPI() const
{ return (sqcifMPI<0?-sqcifMPI:0); }
/** Get slowQcifMPI
*/
unsigned GetSlowQCIFMPI() const
{ return (qcifMPI<0?-qcifMPI:0); }
/** Get slowCifMPI
*/
unsigned GetSlowCIFMPI() const
{ return (cifMPI<0?-cifMPI:0); }
/** Get slowCif4MPI
*/
unsigned GetSlowCIF4MPI() const
{ return (cif4MPI<0?-cif4MPI:0); }
/** Get slowCif16MPI
*/
unsigned GetSlowCIF16MPI() const
{ return (cif16MPI<0?-cif16MPI:0); }
/** Get errorCompensation capabilty
*/
BOOL GetErrorCompensationCapability() const
{ return errorCompensation; }
//@}
protected:
signed sqcifMPI; // {1..3600 units seconds/frame, 1..32 units 1/29.97 Hz}
signed qcifMPI;
signed cifMPI;
signed cif4MPI;
signed cif16MPI;
unsigned maxBitRate; // units of bit/s
BOOL unrestrictedVector;
BOOL arithmeticCoding;
BOOL advancedPrediction;
BOOL pbFrames;
BOOL temporalSpatialTradeOff;
long unsigned hrd_B; // units of 128 bits
unsigned bppMaxKb; // units of 1024 bits
BOOL errorCompensation;
};
/** Capability registration functions (no need for an Endpoint to get NonStandardInfo from).
*/
#define OPAL_REGISTER_H263_H323 \
H323_REGISTER_CAPABILITY_FUNCTION(H323_H263_SQCIF_QCIF_CIF_Capability, OPAL_H263, H323_NO_EP_VAR) \
{ return new H323_H263Capability(1, 1, 2, 0, 0, 6217); } \
H323_REGISTER_CAPABILITY_FUNCTION(H323_H263_SQCIF_Capability, OPAL_H263_SQCIF, H323_NO_EP_VAR) \
{ return new H323_H263Capability(1, 0, 0, 0, 0, 6217); } \
H323_REGISTER_CAPABILITY_FUNCTION(H323_H263_QCIF_Capability, OPAL_H263_QCIF, H323_NO_EP_VAR) \
{ return new H323_H263Capability(0, 1, 0, 0, 0, 6217); } \
H323_REGISTER_CAPABILITY_FUNCTION(H323_H263_CIF_Capability, OPAL_H263_CIF, H323_NO_EP_VAR) \
{ return new H323_H263Capability(0, 0, 2, 0, 0, 6217); }
#else // ifndef NO_H323
#define OPAL_REGISTER_H263_H323
#endif // ifndef NO_H323
////////////////////////////////////////////////////////////////
class H263Packet : public PObject
{
PCLASSINFO(H263Packet, PObject)
public:
H263Packet() { data_size = hdr_size = 0; hdr = data = NULL; };
~H263Packet() {};
void Store(void *data, int data_size, void *hdr, int hdr_size);
BOOL Read(unsigned & length, RTP_DataFrame & frame);
private:
void *data;
int data_size;
void *hdr;
int hdr_size;
};
PDECLARE_LIST(H263PacketList, H263Packet)
#if 0
{
#endif
};
///////////////////////////////////////////////////////////////////////////////
class Opal_H263_YUV420P : public OpalVideoTranscoder {
public:
Opal_H263_YUV420P();
~Opal_H263_YUV420P();
virtual PINDEX GetOptimalDataFrameSize(BOOL input) const;
virtual BOOL ConvertFrames(const RTP_DataFrame & src, RTP_DataFrameList & dst);
protected:
BOOL OpenCodec();
void CloseCodec();
PBYTEArray encFrameBuffer;
AVCodec *codec;
AVCodecContext *context;
AVFrame *picture;
int frameNum;
};
class Opal_YUV420P_H263 : public OpalVideoTranscoder {
public:
Opal_YUV420P_H263();
~Opal_YUV420P_H263();
virtual PINDEX GetOptimalDataFrameSize(BOOL input) const;
virtual BOOL ConvertFrames(const RTP_DataFrame & src, RTP_DataFrameList & dst);
static void RtpCallback(void *data, int data_size,
void *hdr, int hdr_size, void *priv_data);
protected:
BOOL OpenCodec();
void CloseCodec();
H263PacketList encodedPackets;
H263PacketList unusedPackets;
PBYTEArray encFrameBuffer;
PBYTEArray rawFrameBuffer;
PINDEX encFrameLen;
PINDEX rawFrameLen;
AVCodec *codec;
AVCodecContext *context;
AVFrame *picture;
int videoQMax, videoQMin; // dynamic video quality min/max limits, 1..31
int videoQuality; // current video encode quality setting, 1..31
int frameNum;
enum StdSize {UnknownStdSize, SQCIF = 1, QCIF, CIF, CIF4, CIF16, NumStdSizes};
static int GetStdSize(int width, int height);
};
///////////////////////////////////////////////////////////////////////////////
#define OPAL_REGISTER_H263() \
OPAL_REGISTER_H263_H323 \
OpalTranscoderFactory::Worker<Opal_H263_YUV420P> Opal_H263_YUV420P(OpalCreateMediaFormatPair(OpalH263, OpalYUV420P)); \
OpalTranscoderFactory::Worker<Opal_YUV420P_H263> Opal_YUV420P_H263(OpalCreateMediaFormatPair(OpalYUV420P, OpalH263))
/////////////////////////////////////////////////////////////////////////////
#endif // RFC2190_AVCODEC
#endif // NO_OPAL_VIDEO
#endif // __OPAL_H263CODEC_H
|