* [FFmpeg-devel] [PATCH] avformat/flvenc: Avoid avio_write(pb, "", 0)
@ 2024-03-19 3:29 Andreas Rheinhardt
2024-03-21 13:12 ` Andreas Rheinhardt
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Rheinhardt @ 2024-03-19 3:29 UTC (permalink / raw)
To: ffmpeg-devel; +Cc: Andreas Rheinhardt
When the compiler chooses to inline put_amf_string(pb, ""),
the avio_write(pb, "", 0) can be avoided. Happens with
Clang-17 with -O1 and higher and GCC 13 with -O2 and higher
here.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
libavformat/flvenc.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c
index 7e410e627e..d6c9124d5d 100644
--- a/libavformat/flvenc.c
+++ b/libavformat/flvenc.c
@@ -231,6 +231,8 @@ static void put_amf_string(AVIOContext *pb, const char *str)
{
size_t len = strlen(str);
avio_wb16(pb, len);
+ if (av_builtin_constant_p(len == 0) && len == 0)
+ return;
avio_write(pb, str, len);
}
--
2.40.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".
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avformat/flvenc: Avoid avio_write(pb, "", 0)
2024-03-19 3:29 [FFmpeg-devel] [PATCH] avformat/flvenc: Avoid avio_write(pb, "", 0) Andreas Rheinhardt
@ 2024-03-21 13:12 ` Andreas Rheinhardt
2024-03-21 13:17 ` Kieran Kunhya
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Rheinhardt @ 2024-03-21 13:12 UTC (permalink / raw)
To: ffmpeg-devel
Andreas Rheinhardt:
> When the compiler chooses to inline put_amf_string(pb, ""),
> the avio_write(pb, "", 0) can be avoided. Happens with
> Clang-17 with -O1 and higher and GCC 13 with -O2 and higher
> here.
>
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
> ---
> libavformat/flvenc.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c
> index 7e410e627e..d6c9124d5d 100644
> --- a/libavformat/flvenc.c
> +++ b/libavformat/flvenc.c
> @@ -231,6 +231,8 @@ static void put_amf_string(AVIOContext *pb, const char *str)
> {
> size_t len = strlen(str);
> avio_wb16(pb, len);
> + if (av_builtin_constant_p(len == 0) && len == 0)
> + return;
> avio_write(pb, str, len);
> }
>
Will apply this patch tomorrow unless there are objections.
- Andreas
_______________________________________________
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avformat/flvenc: Avoid avio_write(pb, "", 0)
2024-03-21 13:12 ` Andreas Rheinhardt
@ 2024-03-21 13:17 ` Kieran Kunhya
0 siblings, 0 replies; 3+ messages in thread
From: Kieran Kunhya @ 2024-03-21 13:17 UTC (permalink / raw)
To: FFmpeg development discussions and patches
On Thu, 21 Mar 2024 at 13:13, Andreas Rheinhardt <
andreas.rheinhardt@outlook.com> wrote:
> Andreas Rheinhardt:
> > When the compiler chooses to inline put_amf_string(pb, ""),
> > the avio_write(pb, "", 0) can be avoided. Happens with
> > Clang-17 with -O1 and higher and GCC 13 with -O2 and higher
> > here.
>
Are you able to add a comment in the code? It's not 100% clear what you are
doing.
Kieran
_______________________________________________
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".
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-03-21 13:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-03-19 3:29 [FFmpeg-devel] [PATCH] avformat/flvenc: Avoid avio_write(pb, "", 0) Andreas Rheinhardt
2024-03-21 13:12 ` Andreas Rheinhardt
2024-03-21 13:17 ` Kieran Kunhya
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