Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
From: Anton Khirnov <anton@khirnov.net>
To: ffmpeg-devel@ffmpeg.org
Subject: [FFmpeg-devel] [PATCH v4 3/4] lavc/tests: add a cached bitstream reader test
Date: Sat, 22 Oct 2022 12:32:56 +0200
Message-ID: <20221022103257.15463-3-anton@khirnov.net> (raw)
In-Reply-To: <20221022103257.15463-1-anton@khirnov.net>

---
 libavcodec/Makefile                   |   2 +
 libavcodec/tests/bitstream_be.c       |  19 +++
 libavcodec/tests/bitstream_le.c       |  20 +++
 libavcodec/tests/bitstream_template.c | 183 ++++++++++++++++++++++++++
 tests/fate/libavcodec.mak             |  10 ++
 5 files changed, 234 insertions(+)
 create mode 100644 libavcodec/tests/bitstream_be.c
 create mode 100644 libavcodec/tests/bitstream_le.c
 create mode 100644 libavcodec/tests/bitstream_template.c

diff --git a/libavcodec/Makefile b/libavcodec/Makefile
index b77fe0db8e..4314b47d65 100644
--- a/libavcodec/Makefile
+++ b/libavcodec/Makefile
@@ -1265,6 +1265,8 @@ SKIPHEADERS-$(CONFIG_ZLIB)             += zlib_wrapper.h
 
 TESTPROGS = avcodec                                                     \
             avpacket                                                    \
+            bitstream_be                                                \
+            bitstream_le                                                \
             celp_math                                                   \
             codec_desc                                                  \
             htmlsubtitles                                               \
diff --git a/libavcodec/tests/bitstream_be.c b/libavcodec/tests/bitstream_be.c
new file mode 100644
index 0000000000..bc562ed3b1
--- /dev/null
+++ b/libavcodec/tests/bitstream_be.c
@@ -0,0 +1,19 @@
+/*
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#include "bitstream_template.c"
diff --git a/libavcodec/tests/bitstream_le.c b/libavcodec/tests/bitstream_le.c
new file mode 100644
index 0000000000..ba9296c95a
--- /dev/null
+++ b/libavcodec/tests/bitstream_le.c
@@ -0,0 +1,20 @@
+/*
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#define BITSTREAM_LE
+#include "bitstream_template.c"
diff --git a/libavcodec/tests/bitstream_template.c b/libavcodec/tests/bitstream_template.c
new file mode 100644
index 0000000000..13e92a31c6
--- /dev/null
+++ b/libavcodec/tests/bitstream_template.c
@@ -0,0 +1,183 @@
+/*
+ * cached bitstream reader test
+ * copyright (c) 2022 Anton Khirnov <anton@khirnov.net>
+ *
+ * This file is part of FFmpeg.
+ *
+ * FFmpeg is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * FFmpeg is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with FFmpeg; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#define ASSERT_LEVEL 2
+
+#include "libavutil/avassert.h"
+#include "libavutil/lfg.h"
+#include "libavutil/random_seed.h"
+
+#include "libavcodec/bitstream.h"
+#include "libavcodec/defs.h"
+
+#ifdef BITSTREAM_LE
+#define BITSTREAM_WRITER_LE
+#endif
+#include "libavcodec/put_bits.h"
+
+#define SIZE 157
+
+enum Op {
+    OP_READ,
+    OP_READ_NZ,
+    OP_READ_BIT,
+    OP_READ_63,
+    OP_READ_64,
+    OP_READ_SIGNED,
+    OP_APPLY_SIGN,
+    OP_ALIGN,
+    OP_NB,
+};
+
+int main(int argc, char **argv)
+{
+    BitstreamContext bc;
+    PutBitContext    pb;
+    AVLFG            lfg;
+
+    uint8_t buf[SIZE + AV_INPUT_BUFFER_PADDING_SIZE];
+    uint8_t dst[SIZE + AV_INPUT_BUFFER_PADDING_SIZE];
+
+    uint32_t random_seed;
+    uint64_t val, val1;
+    int32_t  sval;
+    unsigned count;
+
+    /* generate random input, using a given or random seed */
+    if (argc > 1)
+        random_seed = strtoul(argv[1], NULL, 0);
+    else
+        random_seed = av_get_random_seed();
+
+    fprintf(stderr, "Testing with LFG seed: %"PRIu32"\n", random_seed);
+    av_lfg_init(&lfg, random_seed);
+
+    for (unsigned i = 0; i < SIZE; i++)
+        buf[i] = av_lfg_get(&lfg);
+
+    bits_init8   (&bc, buf, SIZE);
+    init_put_bits(&pb, dst, SIZE);
+
+    /* use a random sequence of bitreading operations to transfer data
+     * from BitstreamContext to PutBitContext */
+    while (bits_left(&bc) > 0) {
+        enum Op op = av_lfg_get(&lfg) % OP_NB;
+
+        switch (op) {
+        case OP_READ:
+            count = av_lfg_get(&lfg) % FFMIN(33, bits_left(&bc) + 1);
+            val1  = bits_peek(&bc, count);
+            val   = bits_read(&bc, count);
+
+            fprintf(stderr, "%d read %u: %"PRIu64"\n", bits_tell(&bc) - count, count, val);
+
+            av_assert0(val == val1);
+
+            put_bits64(&pb, count, val);
+            break;
+        case OP_READ_NZ:
+            count = av_lfg_get(&lfg) % FFMIN(33, bits_left(&bc) + 1);
+            count = FFMAX(count, 1);
+            val1  = bits_peek_nz(&bc, count);
+            val   = bits_read_nz(&bc, count);
+
+            fprintf(stderr, "%d read_nz %u: %"PRIu64"\n", bits_tell(&bc) - count, count, val);
+
+            av_assert0(val == val1);
+
+            put_bits64(&pb, count, val);
+            break;
+        case OP_READ_BIT:
+            val = bits_read_bit(&bc);
+
+            fprintf(stderr, "%d read_bit: %"PRIu64"\n", bits_tell(&bc) - 1, val);
+
+            put_bits(&pb, 1, val);
+            break;
+        case OP_READ_63:
+            count = av_lfg_get(&lfg) % FFMIN(64, bits_left(&bc) + 1);
+            val   = bits_read_63(&bc, count);
+
+            fprintf(stderr, "%d read_63 %u: %"PRIu64"\n", bits_tell(&bc) - count, count, val);
+
+            put_bits64(&pb, count, val);
+            break;
+        case OP_READ_64:
+            count = av_lfg_get(&lfg) % FFMIN(65, bits_left(&bc) + 1);
+            val   = bits_read_64(&bc, count);
+
+            fprintf(stderr, "%d read_64 %u: %"PRIu64"\n", bits_tell(&bc) - count, count, val);
+
+            put_bits64(&pb, count, val);
+            break;
+        case OP_READ_SIGNED:
+            count = av_lfg_get(&lfg) % FFMIN(33, bits_left(&bc) + 1);
+            sval  = bits_read_signed(&bc, count);
+
+            fprintf(stderr, "%d read_signed %u: %"PRId32"\n", bits_tell(&bc) - count, count, sval);
+
+            if (count == 32) put_bits32(&pb, sval);
+            else             put_sbits(&pb, count, sval);
+            break;
+        case OP_ALIGN:
+            count = (bits_tell(&bc) + 7) / 8 * 8 - bits_tell(&bc);
+
+            fprintf(stderr, "%d align %u\n", bits_tell(&bc), count);
+
+            put_bits(&pb, count, bits_peek(&bc, count));
+            bits_align(&bc);
+            break;
+        case OP_APPLY_SIGN:
+            if (bits_left(&bc) < 2)
+                continue;
+
+            count = av_lfg_get(&lfg) % FFMIN(32, bits_left(&bc));
+            count = FFMAX(count, 1);
+
+            if (!bits_peek(&bc, count))
+                continue;
+
+            val   = bits_read(&bc, count);
+            sval  = bits_apply_sign(&bc, val);
+
+            fprintf(stderr, "%d apply_sign %u %"PRId32"\n",
+                    bits_tell(&bc) - count - 1, count, sval);
+
+            put_bits64(&pb, count, FFABS(sval));
+            put_bits(&pb, 1, sval < 0);
+
+            break;
+        default:
+            av_assert0(0);
+        }
+    }
+
+    flush_put_bits(&pb);
+
+    for (unsigned i = 0; i < SIZE; i++)
+        if (buf[i] != dst[i]) {
+            fprintf(stderr, "Mismatch at byte %u: %hhu %hhu; seed %"PRIu32"\n",
+                    i, buf[i], dst[i], random_seed);
+            return 1;
+        }
+
+    return 0;
+}
diff --git a/tests/fate/libavcodec.mak b/tests/fate/libavcodec.mak
index aa199e0308..8f56fae3a8 100644
--- a/tests/fate/libavcodec.mak
+++ b/tests/fate/libavcodec.mak
@@ -3,6 +3,16 @@ fate-avpacket: libavcodec/tests/avpacket$(EXESUF)
 fate-avpacket: CMD = run libavcodec/tests/avpacket$(EXESUF)
 fate-avpacket: CMP = null
 
+FATE_LIBAVCODEC-yes += fate-bitstream-be
+fate-bitstream-be: libavcodec/tests/bitstream_be$(EXESUF)
+fate-bitstream-be: CMD = run libavcodec/tests/bitstream_be$(EXESUF)
+fate-bitstream-be: CMP = null
+
+FATE_LIBAVCODEC-yes += fate-bitstream-le
+fate-bitstream-le: libavcodec/tests/bitstream_le$(EXESUF)
+fate-bitstream-le: CMD = run libavcodec/tests/bitstream_le$(EXESUF)
+fate-bitstream-le: CMP = null
+
 FATE_LIBAVCODEC-$(CONFIG_CABAC) += fate-cabac
 fate-cabac: libavcodec/tests/cabac$(EXESUF)
 fate-cabac: CMD = run libavcodec/tests/cabac$(EXESUF)
-- 
2.35.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:[~2022-10-22 10:34 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-22 10:32 [FFmpeg-devel] [PATCH v4 1/4] lavc: add standalone cached bitstream reader Anton Khirnov
2022-10-22 10:32 ` [FFmpeg-devel] [PATCH v4 2/4] lavc/bitstream: templatize for BE/LE Anton Khirnov
2022-10-22 10:32 ` Anton Khirnov [this message]
2022-10-22 10:32 ` [FFmpeg-devel] [PATCH v4 4/4] lavc/get_bits: add a compat wrapper for the cached bitstream reader Anton Khirnov
2022-10-22 10:37 ` [FFmpeg-devel] [PATCH v4 1/4] lavc: add standalone " Paul B Mahol
2023-01-03 11:19 ` Anton Khirnov
2023-01-06 10:09   ` Anton Khirnov

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=20221022103257.15463-3-anton@khirnov.net \
    --to=anton@khirnov.net \
    --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