mpeg4video: Fix doxygen comment syntax to document correct struct member

Also fix some comment typos.

Signed-off-by: Diego Biurrun <diego@biurrun.de>
This commit is contained in:
Nidhi Makhijani 2014-08-12 17:58:17 +05:30 committed by Diego Biurrun
parent 0528226a05
commit 93f29948e4
1 changed files with 10 additions and 10 deletions

View File

@ -62,29 +62,29 @@
typedef struct Mpeg4DecContext { typedef struct Mpeg4DecContext {
MpegEncContext m; 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 time_increment_bits;
int shape; int shape;
int vol_sprite_usage; int vol_sprite_usage;
int sprite_brightness_change; int sprite_brightness_change;
int num_sprite_warping_points; int num_sprite_warping_points;
///< sprite trajectory points /// sprite trajectory points
uint16_t sprite_traj[4][2]; uint16_t sprite_traj[4][2];
///< sprite shift [isChroma] /// sprite shift [isChroma]
int sprite_shift[2]; int sprite_shift[2];
// reversible vlc // reversible vlc
int rvlc; int rvlc;
///< could this stream contain resync markers /// could this stream contain resync markers
int resync_marker; 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 t_frame;
int new_pred; int new_pred;
int enhancement_type; int enhancement_type;
int scalability; int scalability;
int use_intra_dc_vlc; 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; int intra_dc_threshold;
/* bug workarounds */ /* bug workarounds */
@ -92,11 +92,11 @@ typedef struct Mpeg4DecContext {
int divx_build; int divx_build;
int xvid_build; int xvid_build;
int lavc_build; int lavc_build;
///< flag for having shown the warning about divxs invalid b frames /// flag for having shown the warning about invalid Divx B-frames
int showed_packed_warning; int showed_packed_warning;
int vol_control_parameters; /**< does the stream contain the low_delay flag, /** does the stream contain the low_delay flag,
* used to work around buggy encoders. */ * used to work around buggy encoders. */
int vol_control_parameters;
int cplx_estimation_trash_i; int cplx_estimation_trash_i;
int cplx_estimation_trash_p; int cplx_estimation_trash_p;
int cplx_estimation_trash_b; int cplx_estimation_trash_b;