From: "Tomas Härdin" <git@haerdin.se> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH] liavcodec: add bit-rate support to RoQ video encoder Date: Tue, 23 Jan 2024 00:25:41 +0100 Message-ID: <a47112bf2696c81027bbb969d51027b73e227458.camel@haerdin.se> (raw) In-Reply-To: <CAOSHGWO3+B1CVC4RS8psp6yzpCrkbAd20HuuyCK0KDgfLhhatg@mail.gmail.com> tis 2024-01-23 klockan 00:40 +0300 skrev Victor Luchitz: > On Tue, Jan 23, 2024 at 12:12 AM Tomas Härdin <git@haerdin.se> wrote: > > > 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 <vluchits@gmail.com> > > > > Still doesn't apply. > > > > I have no clue as to what's going on there.. The patch applies > perfectly > fine > without all the eml stuff. > > root@banana:~/ffmpeg# git reset --hard origin/master > HEAD is now at d2eb6f4d44 fftools/ffmpeg_mux_init: don't free the > AVDictionaryEntry until after it's been used > root@ banana:~/ffmpeg# git apply > 0001-liavcodec-add-bit-rate-support-to-RoQ-video-encoder.patch > root@ banana:~/ffmpeg# echo $? > 0 > > Any help would be highly appreciated. > > > > > + /* 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 > > > > framesSinceKeyframe wasn't introduced in this patch and I'm a bit > scared > to mess with it as part of this changeset as that would introduce > some new > changes to the core of the original implementation. It doesn't have to hold this patch up I guess. Doesn't look terribly complicated either way > > > + 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 > > > > You're totally right, thanks! > > I'll resubmit the patch once we figure out what's the deal with git > failing > to apply the patch for you. Try attaching the patch rather than pasting it /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-request@ffmpeg.org with subject "unsubscribe".
next prev parent reply other threads:[~2024-01-22 23:25 UTC|newest] Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-01-22 19:14 Victor Luchits 2024-01-22 21:12 ` Tomas Härdin 2024-01-22 21:40 ` Victor Luchitz 2024-01-22 23:25 ` Tomas Härdin [this message] 2024-01-22 22:39 ` epirat07 -- strict thread matches above, loose matches on Subject: below -- 2024-01-21 21:08 Victor Luchits 2024-01-22 13:05 ` Tomas Härdin 2024-01-22 13:38 ` Victor Luchitz 2024-01-22 13:57 ` Tomas Härdin 2024-01-22 13:59 ` Martin Storsjö 2024-01-22 14:19 ` Tomas Härdin 2024-01-22 16:36 ` Victor Luchitz 2024-01-22 16:21 ` Victor Luchitz 2024-01-22 18:32 ` Victor Luchitz 2024-01-22 19:10 ` Tomas Härdin 2024-01-22 19:16 ` Victor Luchitz 2024-01-21 20:19 Victor Luchits 2024-01-21 21:02 ` Michael Niedermayer
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=a47112bf2696c81027bbb969d51027b73e227458.camel@haerdin.se \ --to=git@haerdin.se \ --cc=ffmpeg-devel@ffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git