diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-10-04 07:39:57 +0200 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-10-04 07:48:55 +0200 |
commit | 136093236f85e42fb6a185939539c74bde71e1da (patch) | |
tree | 5512e22026a9134a2bab677cc7a57855684dfdca /libavfilter/vf_deshake.c | |
parent | 5241e0144f1f25af901797eb38a838c714418963 (diff) | |
download | ffmpeg-136093236f85e42fb6a185939539c74bde71e1da.tar.gz |
deshake: fix doxygen comments.
Diffstat (limited to 'libavfilter/vf_deshake.c')
-rw-r--r-- | libavfilter/vf_deshake.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c index 56ea840aa6..44179111cd 100644 --- a/libavfilter/vf_deshake.c +++ b/libavfilter/vf_deshake.c @@ -61,34 +61,34 @@ #define CHROMA_HEIGHT(link) -((-link->h) >> av_pix_fmt_descriptors[link->format].log2_chroma_h) enum SearchMethod { - EXHAUSTIVE, //< Search all possible positions - SMART_EXHAUSTIVE, //< Search most possible positions (faster) + EXHAUSTIVE, ///< Search all possible positions + SMART_EXHAUSTIVE, ///< Search most possible positions (faster) SEARCH_COUNT }; typedef struct { - double x; //< Horizontal shift - double y; //< Vertical shift + double x; ///< Horizontal shift + double y; ///< Vertical shift } MotionVector; typedef struct { - MotionVector vector; //< Motion vector - double angle; //< Angle of rotation - double zoom; //< Zoom percentage + MotionVector vector; ///< Motion vector + double angle; ///< Angle of rotation + double zoom; ///< Zoom percentage } Transform; typedef struct { - AVFilterBufferRef *ref; //< Previous frame - int rx; //< Maximum horizontal shift - int ry; //< Maximum vertical shift - enum FillMethod edge; //< Edge fill method - int blocksize; //< Size of blocks to compare - int contrast; //< Contrast threshold - enum SearchMethod search; //< Motion search method + AVFilterBufferRef *ref; ///< Previous frame + int rx; ///< Maximum horizontal shift + int ry; ///< Maximum vertical shift + enum FillMethod edge; ///< Edge fill method + int blocksize; ///< Size of blocks to compare + int contrast; ///< Contrast threshold + enum SearchMethod search; ///< Motion search method AVCodecContext *avctx; - DSPContext c; //< Context providing optimized SAD methods - Transform last; //< Transform from last frame - int refcount; //< Number of reference frames (defines averaging window) + DSPContext c; ///< Context providing optimized SAD methods + Transform last; ///< Transform from last frame + int refcount; ///< Number of reference frames (defines averaging window) FILE *fp; } DeshakeContext; |