Home | History | Annotate | Download | only in encode

Lines Matching refs:fps

102     int fps;
534 fprintf(stderr, "\t--fps <FPS> specify the frame rate\n");
551 ctx->fps <= mpeg2_upper_samplings[p][l].frame_per_sec) {
560 fprintf(stderr, "Warning: can't find a proper profile and level for the specified width/height/fps\n");
581 {"fps", required_argument, 0, 'f'},
628 ctx->fps = 30;
665 fprintf(stderr, "Warning: FPS must be greater than 0\n");
667 ctx->fps = tmp;
772 seq_param->frame_rate = ctx->fps;
962 int fps = (int)(seq_param->frame_rate + 0.5);
967 assert(fps <= 60);
969 time_code_seconds = num_frames / fps;
970 time_code_pictures = num_frames % fps;
1540 fprintf(stderr, "encode %d frames in %f secondes, FPS is %.1f\n", ctx.num_pictures, timeuse, ctx.num_pictures / timeuse);