Hi, On Mon, Aug 8, 2011 at 3:30 AM, Diego Biurrun <[email protected]> wrote: > diff --git a/libavcodec/truespeech.c b/libavcodec/truespeech.c > index f889775..b320a38 100644 > --- a/libavcodec/truespeech.c > +++ b/libavcodec/truespeech.c > @@ -33,13 +33,13 @@ > */ > typedef struct { > /* input data */ > - int16_t vector[8]; //< input vector: 5/5/4/4/4/3/3/3 > - int offset1[2]; //< 8-bit value, used in one copying offset > - int offset2[4]; //< 7-bit value, encodes offsets for copying and for > two-point filter > - int pulseoff[4]; //< 4-bit offset of pulse values block > - int pulsepos[4]; //< 27-bit variable, encodes 7 pulse positions > - int pulseval[4]; //< 7x2-bit pulse values > - int flag; //< 1-bit flag, shows how to choose filters > + int16_t vector[8]; // input vector: 5/5/4/4/4/3/3/3 > + int offset1[2]; // 8-bit value, used in one copying offset > + int offset2[4]; // 7-bit value, encodes offsets for copying and for > two-point filter > + int pulseoff[4]; // 4-bit offset of pulse values block > + int pulsepos[4]; // 27-bit variable, encodes 7 pulse positions > + int pulseval[4]; // 7x2-bit pulse values > + int flag; // 1-bit flag, shows how to choose filters > /* temporary data */ > int filtbuf[146]; // some big vector used for storing filters > int prevfilt[8]; // filter from previous frame > diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c > index 13a3bda..151a79b 100644 > --- a/libavcodec/vp3.c > +++ b/libavcodec/vp3.c > @@ -225,7 +225,7 @@ typedef struct Vp3DecodeContext { > > /* these arrays need to be on 16-byte boundaries since SSE2 operations > * index into them */ > - DECLARE_ALIGNED(16, int16_t, qmat)[3][2][3][64]; > //<qmat[qpi][is_inter][plane] > + DECLARE_ALIGNED(16, int16_t, qmat)[3][2][3][64]; // > qmat[qpi][is_inter][plane] > > /* This table contains superblock_count * 16 entries. Each set of 16 > * numbers corresponds to the fragment indexes 0..15 of the superblock. > diff --git a/libavfilter/vf_drawbox.c b/libavfilter/vf_drawbox.c > index 37c48c5..5a8dff4 100644 > --- a/libavfilter/vf_drawbox.c > +++ b/libavfilter/vf_drawbox.c > @@ -34,7 +34,7 @@ enum { Y, U, V, A }; > typedef struct { > int x, y, w, h; > unsigned char yuv_color[4]; > - int vsub, hsub; //< chroma subsampling > + int vsub, hsub; // chroma subsampling > } DrawBoxContext;
All these are struct members, are you sure you want to drop their doxy? Ronald _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
