* [FFmpeg-devel] [PATCH] avcodec/ass: Faster ff_ass_add_rect()
@ 2021-12-20 18:45 Michael Niedermayer
2022-03-18 17:33 ` Michael Niedermayer
0 siblings, 1 reply; 2+ messages in thread
From: Michael Niedermayer @ 2021-12-20 18:45 UTC (permalink / raw)
To: FFmpeg development discussions and patches
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
---
libavcodec/ass.c | 36 ++++++++++++++++++++++++++++++------
libavcodec/ass.h | 7 +++++++
2 files changed, 37 insertions(+), 6 deletions(-)
diff --git a/libavcodec/ass.c b/libavcodec/ass.c
index 725e4d42ba1..a1e560d7ff6 100644
--- a/libavcodec/ass.c
+++ b/libavcodec/ass.c
@@ -114,17 +114,34 @@ char *ff_ass_get_dialog(int readorder, int layer, const char *style,
speaker ? speaker : "", text);
}
-int ff_ass_add_rect(AVSubtitle *sub, const char *dialog,
+int ff_ass_add_rect2(AVSubtitle *sub, const char *dialog,
int readorder, int layer, const char *style,
- const char *speaker)
+ const char *speaker, unsigned *nb_rect_allocated)
{
- AVSubtitleRect **rects, *rect;
+ AVSubtitleRect **rects = sub->rects, *rect;
char *ass_str;
+ uint64_t new_nb = 0;
- rects = av_realloc_array(sub->rects, sub->num_rects+1, sizeof(*sub->rects));
- if (!rects)
+ if (sub->num_rects >= UINT_MAX)
return AVERROR(ENOMEM);
- sub->rects = rects;
+
+ if (nb_rect_allocated && *nb_rect_allocated <= sub->num_rects) {
+ if (sub->num_rects < UINT_MAX / 17 * 16) {
+ new_nb = sub->num_rects + sub->num_rects/16 + 1;
+ } else
+ new_nb = UINT_MAX;
+ } else if (!nb_rect_allocated)
+ new_nb = sub->num_rects + 1;
+
+ if (new_nb) {
+ rects = av_realloc_array(rects, new_nb, sizeof(*sub->rects));
+ if (!rects)
+ return AVERROR(ENOMEM);
+ if (nb_rect_allocated)
+ *nb_rect_allocated = new_nb;
+ sub->rects = rects;
+ }
+
rect = av_mallocz(sizeof(*rect));
if (!rect)
return AVERROR(ENOMEM);
@@ -137,6 +154,13 @@ int ff_ass_add_rect(AVSubtitle *sub, const char *dialog,
return 0;
}
+int ff_ass_add_rect(AVSubtitle *sub, const char *dialog,
+ int readorder, int layer, const char *style,
+ const char *speaker)
+{
+ return ff_ass_add_rect2(sub, dialog, readorder, layer, style, speaker, NULL);
+}
+
void ff_ass_decoder_flush(AVCodecContext *avctx)
{
FFASSDecoderContext *s = avctx->priv_data;
diff --git a/libavcodec/ass.h b/libavcodec/ass.h
index 2c260e4e785..4dffe923d9f 100644
--- a/libavcodec/ass.h
+++ b/libavcodec/ass.h
@@ -118,6 +118,13 @@ int ff_ass_add_rect(AVSubtitle *sub, const char *dialog,
int readorder, int layer, const char *style,
const char *speaker);
+/**
+ * Add an ASS dialog to a subtitle.
+ */
+int ff_ass_add_rect2(AVSubtitle *sub, const char *dialog,
+ int readorder, int layer, const char *style,
+ const char *speaker, unsigned *nb_rect_allocated);
+
/**
* Helper to flush a text subtitles decoder making use of the
* FFASSDecoderContext.
--
2.17.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] 2+ messages in thread
* Re: [FFmpeg-devel] [PATCH] avcodec/ass: Faster ff_ass_add_rect()
2021-12-20 18:45 [FFmpeg-devel] [PATCH] avcodec/ass: Faster ff_ass_add_rect() Michael Niedermayer
@ 2022-03-18 17:33 ` Michael Niedermayer
0 siblings, 0 replies; 2+ messages in thread
From: Michael Niedermayer @ 2022-03-18 17:33 UTC (permalink / raw)
To: FFmpeg development discussions and patches
[-- Attachment #1.1: Type: text/plain, Size: 525 bytes --]
On Mon, Dec 20, 2021 at 07:45:37PM +0100, Michael Niedermayer wrote:
> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
> ---
> libavcodec/ass.c | 36 ++++++++++++++++++++++++++++++------
> libavcodec/ass.h | 7 +++++++
> 2 files changed, 37 insertions(+), 6 deletions(-)
will apply as a bug fix depends on this
[...]
--
Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB
During times of universal deceit, telling the truth becomes a
revolutionary act. -- George Orwell
[-- 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".
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-03-18 17:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-20 18:45 [FFmpeg-devel] [PATCH] avcodec/ass: Faster ff_ass_add_rect() Michael Niedermayer
2022-03-18 17:33 ` Michael Niedermayer
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