Contents |
H.263 in OpenH.323 HowToAuthor: Guilhem TardyLast update: March 15, 2005 The following instructions will take you through the steps necessary to port your OpenH.323 applications to standard compliant, H.263/rfc2190 streaming. Adding H.263 to OpenH.323You may choose either of these options:
The former is the easiest when dealing with old versions of OpenH.323, and makes the perfect drop-in replacement for existing applications. You just need to indicate where the FFmpeg-0.4.7 library resides: ./configure --avcodec-dir=f:/devel/ffmpeg-0.4.7/libavcodec For OpenH.323 1.41.1 or later (including the head CVS), an empty file avcodec_rfc2190.h may be required in the same directory as avcodec.h for the configure program to recognize the FFmpeg-0.4.7 library. More information on this is available here (external link). Then, indicate where the FFmpeg-0.4.7 library resides like this: ./configure --enable-rfc2190avcodec=f:/devel/ffmpeg-0.4.7/libavcodec From there, you just need to follow the OpenH.323 build instructions found in the openh323/ReadMe.txt file. Adding H.263 to your applicationsWe will now assume a standard compliant rfc2190avcodec capability as found in OpenH.323 1.41.1 or later (including the head CVS). You may also choose the ffh263codec capability as found in the preceding chapter (please note the different constructor compared to the non-standard capability of the same name). The easiest way to create an H.263 capability is: new H323_RFC2190_H263Capability(); Now, take a look at the definition of H323_RFC2190_H263Capability in the header file. The only parameters of interest are xxxMPI and maxBitRate. The remaining is not supported by the FFmpeg-0.4.7 library nor the OpenH.323 stubs. The xxxMPI parameters represent the maximum TX or RX frame rate supported by your application for that particular picture size, with a value between 1 and 32 (in units of 1/29.97 Hz}, or 0 for disable. A capability with more than one picture size enabled means that the application may change picture size at any time during a call. For example, cifMPI=2 and cif4MPI=6 is suitable for an application that supports up to 15 fps in CIF (352x288) or alternatively up to 5 fps in 4CIF (704x572). Please be aware that the codec refuses to change picture size outside of these specified in its capability. This is a feature, not a bug! The maxBitRate parameter represents the maximum TX or RX bit rate supported by your application, with a value between 1 and 192400 (in units of 100 bit/s). Yes, you read it right, a setting of 1024 actually means 100*1024 bps = 100 kbps. By default, the codec sets its TX maximum bit rate to this value. You may change it later when opening a video channel. In the future, the codec will accept no value higher than specified in its capability. Here is some sample code: int maxbps = videoBitRate/100; Fine tuning the H.263 codecBecause of the rather poor rate control available in FFmpeg-0.4.7, we will need to make some drastic choices in order to obtain a good picture quality at a set maximum bit rate. Given a certain quality (in percentage) and maximum bit rate (in units of 1 kbit/s), here is some sample code: codec.SetTxQualityLevel(31 - (30*videoQuality)/100);Whenever the rate control fails to predict accurately the size of the encoded picture (e.g. under high motion), AdaptivePacketDelay will automatically reduce the frame rate in order to enforce the desired maximum bit rate. This way, your application will maintain a constant picture quality. But failing to set a proper maximum bit rate will most likely result in a very low frame rate. The "native" bit rate varies with the picture size, frame rate, quality, and the natural complexity - especially motion! - of the picture. Therefore, you should take the following estimates with a truck load of salt (quality 75% @ 10 fps):
SetTargetFrameTimeMs() is somewhat misleading in that it actually sets the maximum frame rate, or 0 for disable (i.e. as fast as one can grab from the camera). The idea is that extreme variations in frame rate would prove uncomfortable to the user. The target packet size help reduce the latency induced onto very time-sensitive streams such as audio. This should be set according to the Internet access technology in use:
Please also note that the key frame rate is set by default to about 1 per second (according to the maximum frame rate in the capability). Although this is presently hard-coded in the codec, any value between 0 and 131 (in unit of frames between 2 key frames) is valid. Key frames are used to resynchronize the decoder with the remote client in a full picture refresh. Therefore, it is better to keep the time between 2 key frames low to reduce the effect of packet loss. But key frames are usually 3 to 5 times bigger than normal frames, and may induce further packet loss due to the increased bit rate. What's next?We have been working hard over the past year to expand the set of features:
|
![]() ![]() |
2004 - 2006 © Copyright Salyens. All rights reserved. All other trademarks are the property of their respective owners. |
For all enquiries: info@salyens.com |