]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/ituh263enc.c
Fix misspelled parameter names in Doxygen documentation.
[ffmpeg] / libavcodec / ituh263enc.c
index 5031dd56721aa064e5d0d217b667e7746c4018f6..2537838224f6478b02eb9cecc06dc370b730fce7 100644 (file)
@@ -23,8 +23,8 @@
  */
 
 /**
- * @file libavcodec/ituh263enc.c
- * h263 encoder.
+ * @file
+ * h263 bitstream encoder.
  */
 
 //#define DEBUG
@@ -38,6 +38,7 @@
 #include "unary.h"
 #include "flv.h"
 #include "mpeg4video.h"
+#include "internal.h"
 
 //#undef NDEBUG
 //#include <assert.h>
@@ -83,7 +84,7 @@ static const uint8_t wrong_run[102] = {
 };
 
 /**
- * Returns the 4 bit value that specifies the given aspect ratio.
+ * Return the 4 bit value that specifies the given aspect ratio.
  * This may be one of the standard aspect ratios or it specifies
  * that the aspect will be stored explicitly later.
  */
@@ -244,7 +245,7 @@ void h263_encode_picture_header(MpegEncContext * s, int picture_number)
 }
 
 /**
- * Encodes a group of blocks header.
+ * Encode a group of blocks header.
  */
 void h263_encode_gob_header(MpegEncContext * s, int mb_line)
 {