Re: GOP controll
suxen_drol <[email protected]>
| Newsgroups | gmane.comp.video.xvid.user |
|---|---|
| Message-ID | <[email protected]> |
On Tue, 17 Jun 2003 15:31:18 +0100 "Luca Vollero" <[email protected]> wrote: > Hi all, > > is it possible to control the gop structure of an encoded video sequence? I need to code a video sequence with a constant mpeg2-like gop structure: IBBPBBPBBPBBP > > thx a lot > Luca it is possible in dev-api-4 tree. this is our experimental tree, and its use is not recommended for anything other than testing. in dev-api-4 you can force frame types by specifying "frame.type". ensure the create.max_bframes is equal to the maximum number of sequential bframes present in your gop. e.g. frame.type = XVID_TYPE_I; // or TYPE_P,TYPE_B xvid_encore( XVID_ENC_ENCODE ...) -- PeteSAF.