read BITMAPINFOHEADER extra stuff (huffyuv decoding fixed)
fixed framerate encoding & decoding hopefully, this should fix av sync on long AVIs Originally committed as revision 1646 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -1316,6 +1316,11 @@ void av_frac_add(AVFrac *f, int64_t incr)
|
||||
f->num = num;
|
||||
}
|
||||
|
||||
int av_gcd(int a, int b){
|
||||
if(b) return av_gcd(b, a%b);
|
||||
else return a;
|
||||
}
|
||||
|
||||
/**
|
||||
* register a new image format
|
||||
* @param img_fmt Image format descriptor
|
||||
|
Reference in New Issue
Block a user