On 09/15/2013 07:24 PM, Justin Ruggles wrote: > + VP8Context v; /** VP8 Context used for lossy > decoding */ > + GetBitContext gb; /** bitstream reader for main image > chunk */ > + GetByteContext alpha_gb; /** bitstream reader for alpha > channel chunk */ > + AVCodecContext *avctx; /** parent AVCodecContext */ > + int initialized; /** set once the VP8 context is > initialized */ > + int has_alpha; /** has a separate alpha chunk */ > + int width; /** image width */ > + int height; /** image height */ > + int lossless; /** indicates lossless or lossy */ > + > + int nb_transforms; /** number of transforms */ > + enum TransformType transforms[4]; /** transformations used in the > image, in order */ > + int reduced_width; /** reduced width for index image, > if applicable */ > + int nb_huffman_groups; /** number of huffman groups in the > primary image */ > + ImageContext image[IMAGE_ROLE_NB]; /** image context for each role */
Oops. I realized I left out all of the '<' in /**<. Fixed locally. -Justin _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
