Displaying 1 result from an estimated 1 matches for "aenc".
Did you mean:
aec
2004 Nov 20
0
ffmpeg2theora start and end time support
...einterlace=1;
this->frame_topBand=0;
this->frame_bottomBand=0;
this->frame_leftBand=0;
this->frame_rightBand=0;
this->start_time=0;
this->end_time=0; /* ZERO denotes no end time set */
}
return this;
}
void ff2theora_output(ff2theora this) {
int i;
AVCodecContext *aenc = NULL;
AVCodecContext *venc = NULL;
AVStream *astream = NULL;
AVStream *vstream = NULL;
AVCodec *acodec = NULL;
AVCodec *vcodec = NULL;
AVIndexEntry * index_entry;
float frame_aspect;
int frame_number=0;
double fps = 0.0;
for (i = 0; i < this->context->nb_streams; i++){
AVCod...