Displaying 1 result from an estimated 1 matches for "av_reduce".
Did you mean:
allreduce
2004 Nov 20
0
ffmpeg2theora start and end time support
...this->aspect_numerator=10000*this->frame_aspect*this->output_height;
this->aspect_denominator=10000*this->output_width;
}
else{
this->aspect_numerator=10000*this->frame_aspect*venc->height;
this->aspect_denominator=10000*venc->width;
}
av_reduce(&this->aspect_numerator,&this->aspect_denominator,this->aspect_numerator,this->aspect_denominator,10000);
frame_aspect=this->frame_aspect;
}
if(venc->sample_aspect_ratio.num!=0 && this->frame_aspect==0){
// just use the ratio from the input
this-&g...