mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-16 03:50:05 +01:00
* static,const,compiler warning cleanup
Originally committed as revision 1567 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -61,8 +61,8 @@ typedef struct Minima{
|
||||
}Minima;
|
||||
|
||||
static int minima_cmp(const void *a, const void *b){
|
||||
Minima *da = (Minima *) a;
|
||||
Minima *db = (Minima *) b;
|
||||
const Minima *da = (const Minima *) a;
|
||||
const Minima *db = (const Minima *) b;
|
||||
|
||||
return da->height - db->height;
|
||||
}
|
||||
@@ -1193,7 +1193,7 @@ int ff_pre_estimate_p_frame_motion(MpegEncContext * s,
|
||||
return dmin;
|
||||
}
|
||||
|
||||
int ff_estimate_motion_b(MpegEncContext * s,
|
||||
static int ff_estimate_motion_b(MpegEncContext * s,
|
||||
int mb_x, int mb_y, int16_t (*mv_table)[2], Picture *picture, int f_code)
|
||||
{
|
||||
int mx, my, range, dmin;
|
||||
|
||||
Reference in New Issue
Block a user