From: "Dawid Kozinski/Multimedia \(PLT\) /SRPOL/Staff Engineer/Samsung Electronics" <d.kozinski@samsung.com>
To: "'FFmpeg development discussions and patches'" <ffmpeg-devel@ffmpeg.org>
Subject: Re: [FFmpeg-devel] [PATCH v24 6/9] avformat/mov_muxer: Extended MOV muxer to handle EVC video content
Date: Thu, 15 Jun 2023 09:20:38 +0200
Message-ID: <000001d99f59$e31ec2d0$a95c4870$@samsung.com> (raw)
In-Reply-To: <dfd472e8-0947-6ac9-81b4-fe451e70b21b@gmail.com>
> -----Original Message-----
> From: ffmpeg-devel <ffmpeg-devel-bounces@ffmpeg.org> On Behalf Of James
> Almer
> Sent: środa, 14 czerwca 2023 03:00
> To: ffmpeg-devel@ffmpeg.org
> Subject: Re: [FFmpeg-devel] [PATCH v24 6/9] avformat/mov_muxer: Extended
> MOV muxer to handle EVC video content
>
> On 6/13/2023 9:23 PM, Michael Niedermayer wrote:
> > On Mon, Jun 12, 2023 at 02:30:27PM +0200, Dawid Kozinski wrote:
> >> - Changes in mov_write_video_tag function to handle EVC elementary
> >> stream
> >> - Provided structure EVCDecoderConfigurationRecord that specifies the
> >> decoder configuration information for ISO/IEC 23094-1 video content
> >>
> >> Signed-off-by: Dawid Kozinski <d.kozinski@samsung.com>
> >> ---
> >> libavformat/Makefile | 2 +-
> >> libavformat/evc.c | 422
> ++++++++++++++++++++++++++++++++++++++++
> >> libavformat/evc.h | 44 +++++
> >> libavformat/isom_tags.c | 2 +
> >> libavformat/movenc.c | 33 ++++
> >> 5 files changed, 502 insertions(+), 1 deletion(-)
> >> create mode 100644 libavformat/evc.c
> >> create mode 100644 libavformat/evc.h
> >>
> >> diff --git a/libavformat/Makefile b/libavformat/Makefile index
> >> 6e4231fda2..d3503196e3 100644
> >> --- a/libavformat/Makefile
> >> +++ b/libavformat/Makefile
> >> @@ -364,7 +364,7 @@ OBJS-$(CONFIG_MOV_DEMUXER) += mov.o
> mov_chan.o mov_esds.o \
> >> OBJS-$(CONFIG_MOV_MUXER) += movenc.o av1.o avc.o
hevc.o
> vpcc.o \
> >> movenchint.o mov_chan.o
rtp.o \
> >> movenccenc.o
movenc_ttml.o rawutils.o \
> >> - dovi_isom.o
> >> + dovi_isom.o evc.o
> >> OBJS-$(CONFIG_MP2_MUXER) += rawenc.o
> >> OBJS-$(CONFIG_MP3_DEMUXER) += mp3dec.o replaygain.o
> >> OBJS-$(CONFIG_MP3_MUXER) += mp3enc.o rawenc.o
id3v2enc.o
> >> diff --git a/libavformat/evc.c b/libavformat/evc.c new file mode
> >> 100644 index 0000000000..431cb107e3
> >> --- /dev/null
> >> +++ b/libavformat/evc.c
> >> @@ -0,0 +1,422 @@
> >> +/*
> >> + * EVC helper functions for muxers
> >> + * Copyright (c) 2022 Dawid Kozinski <d.kozinski@samsung.com>
> >> + *
> >> + * 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 */
> >
> > [...]
> >
> >> + nalu_type = ff_evc_get_nalu_type(data, bytes_to_read, pb);
> >
> > functions shared between libavcodec and libavformat need an
> > av*/avpriv* prefix otherwise linking will fail with shared libs as ff*
> > isnt exported
>
> It's small enough that it can go in the header instead. That way we save
one
> unnecessary exported symbol. Same with ff_evc_read_nal_unit_length().
Thank you for your code review.
I've just pushed new patchset containig fixes for all the issues metnioned
in this email and changes following Paul's review.
Unfortunately I did that before I saw your last email and Michael
Neidermayer's last email.
So it seems that I still have some work to do like changing prefixes frmom
ff_* to av_* for functions shared between libavcodec and libavformat, and
moving int ff_evc_get_nalu_type(), ff_evc_read_nal_unit_length()
implementations from evc_parse.c file to evc+parse.h.
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org
> https://protect2.fireeye.com/v1/url?k=5297bb74-33ec11fc-5296303b-
> 74fe4860018a-ffe4f237f8ba290d&q=1&e=351d993e-ef97-4840-aeb8-
> 4fd043541ed8&u=https%3A%2F%2Fffmpeg.org%2Fmailman%2Flistinfo%2Fffmp
> eg-devel
>
> To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org
> with subject "unsubscribe".
_______________________________________________
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-06-15 7:20 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <CGME20230612123038eucas1p1c481a42fcbf3ae39b3dd756dcedc64e6@eucas1p1.samsung.com>
2023-06-12 12:30 ` Dawid Kozinski
2023-06-14 0:23 ` Michael Niedermayer
2023-06-14 1:00 ` James Almer
2023-06-15 7:20 ` Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff Engineer/Samsung Electronics [this message]
2023-06-15 12:06 ` Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff Engineer/Samsung Electronics
2023-06-15 9:41 ` Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff Engineer/Samsung Electronics
2023-06-15 12:06 ` Dawid Kozinski/Multimedia (PLT) /SRPOL/Staff Engineer/Samsung Electronics
2023-06-19 2:27 ` Wang Bin
2023-06-19 2:43 ` James Almer
2023-06-27 9:08 ` Wang Bin
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='000001d99f59$e31ec2d0$a95c4870$@samsung.com' \
--to=d.kozinski@samsung.com \
--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