From: Michael Niedermayer <michael@niedermayer.cc>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH 2/2] avcodec/smacker: Optimize constant 16bit audio output
Date: Wed, 6 Jul 2022 19:11:21 +0200
Message-ID: <20220706171121.GO396728@pb2> (raw)
In-Reply-To: <63439cc20e609f1039d94ba8ef21c4ed4863cf0e.camel@acc.umu.se>
[-- Attachment #1.1: Type: text/plain, Size: 1227 bytes --]
On Wed, May 04, 2022 at 11:39:54AM +0200, Tomas Härdin wrote:
> tis 2022-05-03 klockan 18:30 +0200 skrev Michael Niedermayer:
> >
> > + } else if (stereo) {
> > + val = 256*values[1] + values[0];
> > + val2 = 256*values[3] + values[2];
> > + for(; i < unp_size; i+=2) {
> > + pred[0] += val;
> > + pred[1] += val2;
> > + *samples++ = pred[0];
> > + *samples++ = pred[1];
> > + }
> > + } else {
> > + val = 256*values[1] + values[0];
> > + for(; i < unp_size; i++) {
> > + pred[0] += val;
> > + *samples++ = pred[0];
> > + }
> > + }
>
> Got any numbers on how much faster this is? Just out of curiosity
With the fuzzed sample:
before:
3263902379 decicycles in ABBB, 128 runs, 0 skips
after:
398977744 decicycles in ABBB, 1024 runs, 0 skips
the first times out after 128 runs which is why the runs differ
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Opposition brings concord. Out of discord comes the fairest harmony.
-- Heraclitus
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 195 bytes --]
[-- Attachment #2: Type: text/plain, Size: 251 bytes --]
_______________________________________________
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:[~2022-07-06 17:11 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-03 16:30 [FFmpeg-devel] [PATCH 1/2] tools/target_dec_fuzzer: Adjust threshold for smacker audio Michael Niedermayer
2022-05-03 16:30 ` [FFmpeg-devel] [PATCH 2/2] avcodec/smacker: Optimize constant 16bit audio output Michael Niedermayer
2022-05-04 9:39 ` Tomas Härdin
2022-07-06 17:11 ` Michael Niedermayer [this message]
2022-07-06 17:18 ` Paul B Mahol
2022-07-07 18:24 ` Michael Niedermayer
2022-07-06 18:26 ` Tomas Härdin
2022-07-07 18:24 ` [FFmpeg-devel] [PATCH 1/2] tools/target_dec_fuzzer: Adjust threshold for smacker audio 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=20220706171121.GO396728@pb2 \
--to=michael@niedermayer.cc \
--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