diff options
author | Diego Biurrun <diego@biurrun.de> | 2005-06-17 15:02:53 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2005-06-17 15:02:53 +0000 |
commit | bb628dae442f85fc8814d7c60c744a409fa001ab (patch) | |
tree | d91864ccb8c065a7fc9a95829632a911e654a7f3 /libavcodec/mpegvideo.h | |
parent | 36940eca762ea3ad77135c95230af65da74a56a6 (diff) | |
download | ffmpeg-bb628dae442f85fc8814d7c60c744a409fa001ab.tar.gz |
spelling fixes
patch by Peter Robinson pbrobinson @ at @ gmail . dot . com and myself
Originally committed as revision 4382 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index e0c5e8f23e..0ce3e2b3f3 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -181,7 +181,7 @@ typedef struct Picture{ uint16_t *mb_var; ///< Table for MB variances uint16_t *mc_mb_var; ///< Table for motion compensated MB variances uint8_t *mb_mean; ///< Table for MB luminance - int32_t *mb_cmp_score; ///< Table for MB cmp scores, for mb decission FIXME remove + int32_t *mb_cmp_score; ///< Table for MB cmp scores, for mb decision FIXME remove int b_frame_score; /* */ } Picture; @@ -292,10 +292,10 @@ typedef struct MpegEncContext { int b_frames_since_non_b; ///< used for encoding, relative to not yet reordered input int64_t user_specified_pts;///< last non zero pts from AVFrame which was passed into avcodec_encode_video() int mb_width, mb_height; ///< number of MBs horizontally & vertically - int mb_stride; ///< mb_width+1 used for some arrays to allow simple addressng of left & top MBs withoutt sig11 - int b8_stride; ///< 2*mb_width+1 used for some 8x8 block arrays to allow simple addressng - int b4_stride; ///< 4*mb_width+1 used for some 4x4 block arrays to allow simple addressng - int h_edge_pos, v_edge_pos;///< horizontal / vertical position of the right/bottom edge (pixel replicateion) + int mb_stride; ///< mb_width+1 used for some arrays to allow simple addressing of left & top MBs without sig11 + int b8_stride; ///< 2*mb_width+1 used for some 8x8 block arrays to allow simple addressing + int b4_stride; ///< 4*mb_width+1 used for some 4x4 block arrays to allow simple addressing + int h_edge_pos, v_edge_pos;///< horizontal / vertical position of the right/bottom edge (pixel replication) int mb_num; ///< number of MBs of a picture int linesize; ///< line size, in bytes, may be different from width int uvlinesize; ///< line size, for chroma in bytes, may be different from width @@ -358,7 +358,7 @@ typedef struct MpegEncContext { uint8_t *pred_dir_table; ///< used to store pred_dir for partitioned decoding uint8_t *allocated_edge_emu_buffer; uint8_t *edge_emu_buffer; ///< points into the middle of allocated_edge_emu_buffer - uint8_t *rd_scratchpad; ///< scartchpad for rate distortion mb decission + uint8_t *rd_scratchpad; ///< scratchpad for rate distortion mb decision uint8_t *obmc_scratchpad; uint8_t *b_scratchpad; ///< scratchpad used for writing into write only buffers @@ -380,7 +380,7 @@ typedef struct MpegEncContext { int h263_long_vectors; ///< use horrible h263v1 long vector mode int decode; ///< if 0 then decoding will be skipped (for encoding b frames for example) - DSPContext dsp; ///< pointers for accelerated dsp fucntions + DSPContext dsp; ///< pointers for accelerated dsp functions int f_code; ///< forward MV resolution int b_code; ///< backward MV resolution for B Frames (mpeg4) int16_t (*p_mv_table_base)[2]; |