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
-----Original Message-----
From: h323plus-bounces@lists.packetizer.com [mailto:h323plus-bounces@lists.packetizer.com]On Behalf Of Abhishek Rohilla
Sent: Wednesday, December 19, 2007 3:27 PM
To: h323plus@lists.packetizer.com
Subject: [h323plus] Video Codec Plugin Tutorial

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.