1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

deshake: fix doxygen comments.

This commit is contained in:
Clément Bœsch
2011-10-04 07:39:57 +02:00
parent 5241e0144f
commit 136093236f

View File

@@ -61,34 +61,34 @@
#define CHROMA_HEIGHT(link) -((-link->h) >> av_pix_fmt_descriptors[link->format].log2_chroma_h) #define CHROMA_HEIGHT(link) -((-link->h) >> av_pix_fmt_descriptors[link->format].log2_chroma_h)
enum SearchMethod { enum SearchMethod {
EXHAUSTIVE, //< Search all possible positions EXHAUSTIVE, ///< Search all possible positions
SMART_EXHAUSTIVE, //< Search most possible positions (faster) SMART_EXHAUSTIVE, ///< Search most possible positions (faster)
SEARCH_COUNT SEARCH_COUNT
}; };
typedef struct { typedef struct {
double x; //< Horizontal shift double x; ///< Horizontal shift
double y; //< Vertical shift double y; ///< Vertical shift
} MotionVector; } MotionVector;
typedef struct { typedef struct {
MotionVector vector; //< Motion vector MotionVector vector; ///< Motion vector
double angle; //< Angle of rotation double angle; ///< Angle of rotation
double zoom; //< Zoom percentage double zoom; ///< Zoom percentage
} Transform; } Transform;
typedef struct { typedef struct {
AVFilterBufferRef *ref; //< Previous frame AVFilterBufferRef *ref; ///< Previous frame
int rx; //< Maximum horizontal shift int rx; ///< Maximum horizontal shift
int ry; //< Maximum vertical shift int ry; ///< Maximum vertical shift
enum FillMethod edge; //< Edge fill method enum FillMethod edge; ///< Edge fill method
int blocksize; //< Size of blocks to compare int blocksize; ///< Size of blocks to compare
int contrast; //< Contrast threshold int contrast; ///< Contrast threshold
enum SearchMethod search; //< Motion search method enum SearchMethod search; ///< Motion search method
AVCodecContext *avctx; AVCodecContext *avctx;
DSPContext c; //< Context providing optimized SAD methods DSPContext c; ///< Context providing optimized SAD methods
Transform last; //< Transform from last frame Transform last; ///< Transform from last frame
int refcount; //< Number of reference frames (defines averaging window) int refcount; ///< Number of reference frames (defines averaging window)
FILE *fp; FILE *fp;
} DeshakeContext; } DeshakeContext;