Changeset 626d6184 in ffmpeg


Ignore:
Timestamp:
Feb 7, 2015, 7:52:03 PM (10 years ago)
Author:
Michael Niedermayer <michaelni@gmx.at>
Branches:
master
Children:
89c7332b
Parents:
134e8c73
git-author:
Christophe Gisquet <christophe.gisquet@gmail.com> (02/07/15 12:19:58)
git-committer:
Michael Niedermayer <michaelni@gmx.at> (02/07/15 19:52:03)
Message:

x86: lavc/hevc_mc: fix comments

The width parameter is now completely at the back, and actually
never used. This helps understanding the actual parameter list.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libavcodec/x86/hevc_mc.asm

    r134e8c73 r626d6184  
    738738; void put_hevc_epel_hX(int16_t *dst, ptrdiff_t dststride,
    739739;                       uint8_t *_src, ptrdiff_t _srcstride,
    740 ;                       int width, int height, int mx, int my,
    741 ;                       int16_t* mcbuffer)
     740;                       int height, int mx, int my, int width);
    742741; ******************************
    743742
     
    788787; void put_hevc_epel_v(int16_t *dst, ptrdiff_t dststride,
    789788;                      uint8_t *_src, ptrdiff_t _srcstride,
    790 ;                      int width, int height, int mx, int my,
    791 ;                      int16_t* mcbuffer)
     789;                      int height, int mx, int my, int width)
    792790; ******************************
    793791
     
    843841; void put_hevc_epel_hv(int16_t *dst, ptrdiff_t dststride,
    844842;                       uint8_t *_src, ptrdiff_t _srcstride,
    845 ;                       int width, int height, int mx, int my)
     843;                       int height, int mx, int my, int width)
    846844; ******************************
    847845
     
    10561054; void put_hevc_qpel_hX_X_X(int16_t *dst, ptrdiff_t dststride,
    10571055;                       uint8_t *_src, ptrdiff_t _srcstride,
    1058 ;                       int width, int height, int mx, int my)
     1056;                       int height, int mx, int my, int width)
    10591057; ******************************
    10601058
     
    11121110; void put_hevc_qpel_vX_X_X(int16_t *dst, ptrdiff_t dststride,
    11131111;                       uint8_t *_src, ptrdiff_t _srcstride,
    1114 ;                       int width, int height, int mx, int my)
     1112;                       int height, int mx, int my, int width)
    11151113; ******************************
    11161114
Note: See TracChangeset for help on using the changeset viewer.