[x264-devel] patch : replace c++ comments in x264.h by c comments
Vincent Torri
vtorri at univ-evry.fr
Tue Apr 3 09:32:23 CEST 2007
Hey,
Here is a patch that replaces the c++ comments of x264 by c comments. It
allows the compilation of c programs with the -ansi option of gcc.
Thank you
Vincent Torri
-------------- next part --------------
Index: x264.h
===================================================================
--- x264.h (r?vision 638)
+++ x264.h (copie de travail)
@@ -226,7 +226,7 @@
int i_noise_reduction; /* adaptive pseudo-deadzone */
/* the deadzone size that will be used in luma quantization */
- int i_luma_deadzone[2]; // {inter, intra}
+ int i_luma_deadzone[2]; /* {inter, intra} */
int b_psnr; /* compute and print PSNR stats */
int b_ssim; /* compute and print SSIM stats */
@@ -275,17 +275,17 @@
typedef struct {
int level_idc;
- int mbps; // max macroblock processing rate (macroblocks/sec)
- int frame_size; // max frame size (macroblocks)
- int dpb; // max decoded picture buffer (bytes)
- int bitrate; // max bitrate (kbit/sec)
- int cpb; // max vbv buffer (kbit)
- int mv_range; // max vertical mv component range (pixels)
- int mvs_per_2mb; // max mvs per 2 consecutive mbs.
- int slice_rate; // ??
- int bipred8x8; // limit bipred to >=8x8
- int direct8x8; // limit b_direct to >=8x8
- int frame_only; // forbid interlacing
+ int mbps; /* max macroblock processing rate (macroblocks/sec) */
+ int frame_size; /* max frame size (macroblocks) */
+ int dpb; /* max decoded picture buffer (bytes) */
+ int bitrate; /* max bitrate (kbit/sec) */
+ int cpb; /* max vbv buffer (kbit) */
+ int mv_range; /* max vertical mv component range (pixels) */
+ int mvs_per_2mb; /* max mvs per 2 consecutive mbs. */
+ int slice_rate; /* ?? */
+ int bipred8x8; /* limit bipred to >=8x8 */
+ int direct8x8; /* limit b_direct to >=8x8 */
+ int frame_only; /* forbid interlacing */
} x264_level_t;
/* all of the levels defined in the standard, terminated by .level_idc=0 */
More information about the x264-devel
mailing list