From: Michael Niedermayer <michael@niedermayer.cc>
To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH v8 01/13] vvcdec: add vvc_data
Date: Sun, 31 Dec 2023 22:43:37 +0100
Message-ID: <20231231214337.GT6420@pb2> (raw)
In-Reply-To: <TYSPR06MB643322EF855FDE05FC4712AAAA63A@TYSPR06MB6433.apcprd06.prod.outlook.com>
[-- Attachment #1.1: Type: text/plain, Size: 1629 bytes --]
On Sun, Dec 31, 2023 at 04:18:46PM +0800, Nuo Mi wrote:
> ---
> libavcodec/Makefile | 1 +
> libavcodec/vvc/Makefile | 3 +
> libavcodec/vvc/vvc_data.c | 3486 +++++++++++++++++++++++++++++++++++++
> libavcodec/vvc/vvc_data.h | 80 +
> 4 files changed, 3570 insertions(+)
> create mode 100644 libavcodec/vvc/Makefile
> create mode 100644 libavcodec/vvc/vvc_data.c
> create mode 100644 libavcodec/vvc/vvc_data.h
>
> diff --git a/libavcodec/Makefile b/libavcodec/Makefile
> index 5dd5ea68a6..bb42095165 100644
> --- a/libavcodec/Makefile
> +++ b/libavcodec/Makefile
> @@ -64,6 +64,7 @@ OBJS = ac3_parser.o \
> xiph.o \
>
> # subsystems
> +include $(SRC_PATH)/libavcodec/vvc/Makefile
> OBJS-$(CONFIG_AANDCTTABLES) += aandcttab.o
> OBJS-$(CONFIG_AC3DSP) += ac3dsp.o ac3.o ac3tab.o
> OBJS-$(CONFIG_ADTS_HEADER) += adts_header.o mpeg4audio_sample_rates.o
> diff --git a/libavcodec/vvc/Makefile b/libavcodec/vvc/Makefile
> new file mode 100644
> index 0000000000..8362b721d0
> --- /dev/null
> +++ b/libavcodec/vvc/Makefile
> @@ -0,0 +1,3 @@
> +clean:: $(RM) $(CLEANSUFFIXES:%=libavcodec/vvc/%)
this fails with
make: *** No rule to make target '@rm', needed by 'clean'. Stop.
thx
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
Those who would give up essential Liberty, to purchase a little
temporary Safety, deserve neither Liberty nor Safety -- Benjamin Franklin
[-- 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:[~2023-12-31 21:43 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20231231081858.1704-1-nuomi2021@gmail.com>
2023-12-31 8:18 ` Nuo Mi
2023-12-31 21:43 ` Michael Niedermayer [this message]
2024-01-01 2:28 ` Nuo Mi
2024-01-01 2:31 ` Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 02/13] vvcdec: add parameter parser for sps, pps, ph, sh Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 03/13] vvcdec: add cabac decoder Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 04/13] vvcdec: add reference management Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 05/13] vvcdec: add motion vector decoder Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 06/13] vvcdec: add inter prediction Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 07/13] vvcdec: add inv transform 1d Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 08/13] vvcdec: add intra prediction Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 09/13] vvcdec: add LMCS, Deblocking, SAO, and ALF filters Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 10/13] vvcdec: add dsp init and inv transform Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 11/13] vvcdec: add CTU parser Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 12/13] vvcdec: add CTU thread logical Nuo Mi
2023-12-31 8:18 ` [FFmpeg-devel] [PATCH v8 13/13] vvcdec: add vvc decoder Nuo Mi
2023-12-31 11:07 ` Martin Storsjö
2023-12-31 12:19 ` Jean-Baptiste Kempf
2023-12-31 14:01 ` Nuo Mi
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=20231231214337.GT6420@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