For
h323plus you just use the AddAllCapabilities() function (the same as used
with audio). The video codecs are automatically loaded.
so the
code looks like this to add both Audio and Video
AddAllCapabilties(*this,0,0,"*");
To
Disable Video
RemoveCapability(H323Capability::e_Video);
To universally set a maximum framesize.
SetVideoFrameSize(H323Capability::cifMPI);
Simon
H323Plus has now supported all the video codec as
plugins.
Can someone help me as to how to plug in video codecs into
H323Plus. Earlier for
H.263 we had to just add the capabilities as the
codec class was there in the
code. But now that thing does not work with
H323Plus.