mån 2024-01-22 klockan 22:14 +0300 skrev Victor Luchits: > The bitrate option (-b:v) can now be used to specify the bit rate > of the video stream of the RoQ encoder. > > Original patch by Joseph Fenton aka Chilly Willy > > Signed-off-by: Victor Luchits <vluch...@gmail.com>
Still doesn't apply. > + /* Keyframe when no MOT or FCC codes in frame */ > + if (s->key_frame) { > + av_log(avctx, AV_LOG_VERBOSE, "\nFound keyframe!\n"); > + rframe->pict_type = AV_PICTURE_TYPE_I; > + avpkt->flags |= AV_PKT_FLAG_KEY; > + } else { > + rframe->pict_type = AV_PICTURE_TYPE_P; > + avpkt->flags &= ~AV_PKT_FLAG_KEY; > + } Looks like framesSinceKeyframe still doesn't get reset > + if (avctx->bit_rate) { > + /* no specific bit rate desired, use frame quality */ > + if (frame->quality) > + enc->lambda = frame->quality - 1; > + else > + enc->lambda = 2*ROQ_LAMBDA_SCALE; > + } Looks like you got this backwards /Tomas _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".