On Fri, Aug 1, 2014 at 8:09 PM, Nidhi Makhijani <[email protected]> wrote: > --- > libavcodec/mpeg4video.h | 16 ++++++++-------- > 1 file changed, 8 insertions(+), 8 deletions(-) > > diff --git a/libavcodec/mpeg4video.h b/libavcodec/mpeg4video.h > index b092684..fce24c1 100644 > --- a/libavcodec/mpeg4video.h > +++ b/libavcodec/mpeg4video.h > @@ -62,29 +62,29 @@ > typedef struct Mpeg4DecContext { > MpegEncContext m; > > - ///< number of bits to represent the fractional part of time > + /// number of bits to represent the fractional part of time > int time_increment_bits; > int shape; > int vol_sprite_usage; > int sprite_brightness_change; > int num_sprite_warping_points; > - ///< sprite trajectory points > + /// sprite trajectory points > uint16_t sprite_traj[4][2]; > - ///< sprite shift [isChroma] > + /// sprite shift [isChroma] > int sprite_shift[2]; > > - // reversible vlc > + /// reversible vlc > int rvlc; > - ///< could this stream contain resync markers > + /// could this stream contain resync markers > int resync_marker; > - ///< time distance of first I -> B, used for interlaced b frames > + /// time distance of first I -> B, used for interlaced b frames > int t_frame; > > int new_pred; > int enhancement_type; > int scalability; > int use_intra_dc_vlc; > - ///< QP above whch the ac VLC should be used for intra dc > + /// QP above which the ac VLC should be used for intra dc > int intra_dc_threshold; > > /* bug workarounds */ > @@ -92,7 +92,7 @@ typedef struct Mpeg4DecContext { > int divx_build; > int xvid_build; > int lavc_build; > - ///< flag for having shown the warning about divxs invalid b frames > + /// flag for having shown the warning about divxs invalid b frames > int showed_packed_warning; > int vol_control_parameters; /**< does the stream contain the low_delay > flag, > * used to work around buggy encoders. */
You left one extra / in each, and also a few instances of /**< or /** */ Also please state that you are removing those in the commit log. -- Vittorio _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
