On Wed, Dec 03, 2008 at 02:50:52PM +0100, Clemente Tort Barbero wrote: > Otherwise, > /** \ > * pointer to the picture planes.\ > * This might be different from the first allocated byte\ > * - encoding: \ > * - decoding: \ > */\ > uint8_t *data[4];\ > int linesize[4];\ > > Why is a array with 4 values?
An array of 4 pointers. This way you can do RGBA = 4 channels. -Yves > > Thanks. > > On Wed, Dec 3, 2008 at 3:00 AM, Art Clarke <[email protected]> wrote: > > > On Tue, Dec 2, 2008 at 5:11 PM, Clemente Tort Barbero > > <[email protected]> wrote: > > > Hi! > > > > > > Im developing a application that needs to encode video in h263 but I > > cannot > > > get any doc about FF_COMMON_FRAME... doxygen does not have anything and > > its > > > difficult to disguise what all parameters mean. Where can I get some > > info? > > > > > > > See libavcodec/avcodec.h > > > > Most fields are documented in the FF_COMMON_FRAME macro definition. > > > > - Art > > _______________________________________________ > > libav-user mailing list > > [email protected] > > https://lists.mplayerhq.hu/mailman/listinfo/libav-user > > > _______________________________________________ > libav-user mailing list > [email protected] > https://lists.mplayerhq.hu/mailman/listinfo/libav-user _______________________________________________ libav-user mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/libav-user
