Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Michael Niedermayer <michael@niedermayer.cc>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: [FFmpeg-devel] [PATCH 4/4] avcodec/ffv1: NOT FOR GIT, experiment about float decorrelation
Date: Sat, 18 Jan 2025 06:00:00 +0100
Message-ID: <20250118050001.1809058-4-michael@niedermayer.cc> (raw)
In-Reply-To: <20250118050001.1809058-1-michael@niedermayer.cc>

This performs a tiny bit better than not using it but it is incompatible
with the RCT which gives a bigger gain

Sponsored-by: Sovereign Tech Fund
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
---
 libavcodec/ffv1.h             | 20 ++++++++++++++++++++
 libavcodec/ffv1enc_template.c | 33 ++++++++++++++++++++++++---------
 2 files changed, 44 insertions(+), 9 deletions(-)

diff --git a/libavcodec/ffv1.h b/libavcodec/ffv1.h
index 2c2df154037..84a443613df 100644
--- a/libavcodec/ffv1.h
+++ b/libavcodec/ffv1.h
@@ -196,6 +196,26 @@ static av_always_inline int fold(int diff, int bits)
     return diff;
 }
 
+// We treat infinite as a big number, 0 as a small non 0 number, this is close enough, we ignore denormal numbers
+static av_always_inline int64_t f2i(uint16_t f)
+{
+    int s = -(f>>15);
+    int64_t v = (1024L + (f & 1023)) << ((f & 0x7C00) >> 10);
+    return (v + s) ^ s;
+}
+
+//undo above
+static av_always_inline uint16_t i2f(int64_t v)
+{
+    int s = v>>63;
+    int e;
+    v = (v + s) ^ s;
+
+    e = av_log2(v>>10);
+
+    return (s&32768) + (e<<10) + ((v + (1U<<e)/2) >> e) - 1024;
+}
+
 static inline void update_vlc_state(VlcState *const state, const int v)
 {
     int drift = state->drift;
diff --git a/libavcodec/ffv1enc_template.c b/libavcodec/ffv1enc_template.c
index bc14926ab95..12d519320c0 100644
--- a/libavcodec/ffv1enc_template.c
+++ b/libavcodec/ffv1enc_template.c
@@ -64,7 +64,13 @@ RENAME(encode_line)(FFV1Context *f, FFV1SliceContext *sc,
 
         context = RENAME(get_context)(f->quant_tables[p->quant_table_index],
                                       sample[0] + x, sample[1] + x, sample[2] + x);
-        diff    = sample[0][x] - RENAME(predict)(sample[0] + x, sample[1] + x);
+
+        int64_t  L = f2i(sample[0][x-1]);
+        int64_t  T = f2i(sample[1][x]);
+        int64_t LT = f2i(sample[1][x-1]);
+
+        diff    = sample[0][x] - mid_pred(i2f(L), i2f(L + T - LT), i2f(T));
+//         diff    = sample[0][x] - RENAME(predict)(sample[0] + x, sample[1] + x);
 
         if (context < 0) {
             context = -context;
@@ -147,7 +153,16 @@ static int RENAME(encode_rgb_frame)(FFV1Context *f, FFV1SliceContext *sc,
 
     memset(RENAME(sc->sample_buffer), 0, ring_size * MAX_PLANES *
            (w + 6) * sizeof(*RENAME(sc->sample_buffer)));
-
+    if(0){
+        int v;
+        for (v = 0; v<65536; v++) {
+            int64_t i = f2i(v);
+            int v2 = i2f(i);
+            if (v != v2)
+                av_log(0,0, "D %X %X %LX\n", v, v2, i);
+            av_assert0(v2 == v);
+        }
+    }
     for (y = 0; y < h; y++) {
         for (i = 0; i < ring_size; i++)
             for (p = 0; p < MAX_PLANES; p++)
@@ -180,13 +195,13 @@ static int RENAME(encode_rgb_frame)(FFV1Context *f, FFV1SliceContext *sc,
                 r = *((const uint16_t *)(src[2] + x*2 + stride[2]*y));
             }
 
-            if (sc->slice_coding_mode != 1) {
-                b -= g;
-                r -= g;
-                g += (b * sc->slice_rct_by_coef + r * sc->slice_rct_ry_coef) >> 2;
-                b += offset;
-                r += offset;
-            }
+//             if (sc->slice_coding_mode != 1) {
+//                 b -= g;
+//                 r -= g;
+//                 g += (b * sc->slice_rct_by_coef + r * sc->slice_rct_ry_coef) >> 2;
+//                 b += offset;
+//                 r += offset;
+//             }
 
             sample[0][0][x] = g;
             sample[1][0][x] = b;
-- 
2.48.1

_______________________________________________
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".

  parent reply	other threads:[~2025-01-18  5:00 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-01-18  4:59 [FFmpeg-devel] [PATCH 1/4] avcodec/ffv1: simplify version checks with combined_version Michael Niedermayer
2025-01-18  4:59 ` [FFmpeg-devel] [PATCH 2/4] avcodec/ffv1enc: dont reset version Michael Niedermayer
2025-01-21  1:52   ` Michael Niedermayer
2025-01-18  4:59 ` [FFmpeg-devel] [PATCH 3/4] avcodec/ffv1: Basic float16 support Michael Niedermayer
2025-01-18  5:00 ` Michael Niedermayer [this message]
2025-01-18  8:33   ` [FFmpeg-devel] [PATCH 4/4] avcodec/ffv1: NOT FOR GIT, experiment about float decorrelation Lynne
2025-01-18 23: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=20250118050001.1809058-4-michael@niedermayer.cc \
    --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