Displaying 2 results from an estimated 2 matches for "frame_topband".
2004 Nov 20
0
ffmpeg2theora start and end time support
...ty;
int output_width;
int output_height;
double fps;
ImgReSampleContext *img_resample_ctx; /* for image resampling/resizing */
ReSampleContext *audio_resample_ctx;
ogg_uint32_t aspect_numerator;
ogg_uint32_t aspect_denominator;
double frame_aspect;
int video_quality;
/* cropping */
int frame_topBand;
int frame_bottomBand;
int frame_leftBand;
int frame_rightBand;
int video_x;
int video_y;
int frame_x_offset;
int frame_y_offset;
int start_time; /* In seconds */
int end_time; /* In seconds */
}
*ff2theora;
/**
* Allocate and initialise an AVFrame.
*/
AVFrame *alloc_picture (int pi...
2004 Dec 19
0
[patch] more ffmpeg2theora improvements
...{"channels",required_argument,NULL,'c'},
@@ -788,6 +879,10 @@
convert->disable_audio=1;
nosound_flag=0;
}
+ if (noautosync_flag) {
+ convert->noautosync = 1;
+ noautosync_flag=0;
+ }
/* crop */
if (croptop_flag){
convert->frame_topBand=crop_check(convert,"top",optarg);
@@ -799,7 +894,7 @@
}
if (cropright_flag){
convert->frame_rightBand=crop_check(convert,"right",optarg);
- cropleft_flag=0;
+ cropright_flag=0;
}
if (cropleft_flag){
convert->frame_leftBand=crop_check...