mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-02 03:06:28 +02:00
Add const to ff_emulated_edge_mc
Originally committed as revision 23348 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
94b303ba08
commit
910b9f30c8
@ -369,7 +369,7 @@ static void draw_edges_c(uint8_t *buf, int wrap, int width, int height, int w)
|
|||||||
* @param w width of the source buffer
|
* @param w width of the source buffer
|
||||||
* @param h height of the source buffer
|
* @param h height of the source buffer
|
||||||
*/
|
*/
|
||||||
void ff_emulated_edge_mc(uint8_t *buf, uint8_t *src, int linesize, int block_w, int block_h,
|
void ff_emulated_edge_mc(uint8_t *buf, const uint8_t *src, int linesize, int block_w, int block_h,
|
||||||
int src_x, int src_y, int w, int h){
|
int src_x, int src_y, int w, int h){
|
||||||
int x, y;
|
int x, y;
|
||||||
int start_y, start_x, end_y, end_x;
|
int start_y, start_x, end_y, end_x;
|
||||||
|
@ -197,7 +197,7 @@ typedef struct ScanTable{
|
|||||||
|
|
||||||
void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable);
|
void ff_init_scantable(uint8_t *, ScanTable *st, const uint8_t *src_scantable);
|
||||||
|
|
||||||
void ff_emulated_edge_mc(uint8_t *buf, uint8_t *src, int linesize,
|
void ff_emulated_edge_mc(uint8_t *buf, const uint8_t *src, int linesize,
|
||||||
int block_w, int block_h,
|
int block_w, int block_h,
|
||||||
int src_x, int src_y, int w, int h);
|
int src_x, int src_y, int w, int h);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user