Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-05 06:13:32 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-08-26 00:01:54 +0300
commitafeefb306e89b3ea3eb8ac8227996dc79589b669 (patch)
treeba559e21773db9f29f91d4aaa5be2fed3243aada
parent52bd399972494b7065afa46ba23c5a62794b7c93 (diff)
avcodec/bsf: Avoid allocation for AVBSFInternal
Do this by allocating AVBSFContext together with the data that is currently in AVBSFInternal; or rather: Put AVBSFContext at the beginning of a new structure called FFBSFContext (which encompasses more than just the internal fields and is a proper context in its own right, hence the name) and remove the AVBSFInternal altogether. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavcodec/bsf.c50
-rw-r--r--libavcodec/bsf.h8
2 files changed, 24 insertions, 34 deletions
diff --git a/libavcodec/bsf.c b/libavcodec/bsf.c
index 0305244f8d..57034ce646 100644
--- a/libavcodec/bsf.c
+++ b/libavcodec/bsf.c
@@ -32,29 +32,35 @@
#define IS_EMPTY(pkt) (!(pkt)->data && !(pkt)->side_data_elems)
-struct AVBSFInternal {
+typedef struct FFBSFContext {
+ AVBSFContext pub;
AVPacket *buffer_pkt;
int eof;
-};
+} FFBSFContext;
+
+static av_always_inline FFBSFContext *ffbsfcontext(AVBSFContext *ctx)
+{
+ return (FFBSFContext *)ctx;
+}
void av_bsf_free(AVBSFContext **pctx)
{
AVBSFContext *ctx;
+ FFBSFContext *bsfi;
if (!pctx || !*pctx)
return;
- ctx = *pctx;
+ ctx = *pctx;
+ bsfi = ffbsfcontext(ctx);
- if (ctx->internal) {
+ if (ctx->priv_data) {
if (ctx->filter->close)
ctx->filter->close(ctx);
- av_packet_free(&ctx->internal->buffer_pkt);
- av_freep(&ctx->internal);
+ if (ctx->filter->priv_class)
+ av_opt_free(ctx->priv_data);
+ av_freep(&ctx->priv_data);
}
- if (ctx->filter->priv_class && ctx->priv_data)
- av_opt_free(ctx->priv_data);
-
- av_freep(&ctx->priv_data);
+ av_packet_free(&bsfi->buffer_pkt);
avcodec_parameters_free(&ctx->par_in);
avcodec_parameters_free(&ctx->par_out);
@@ -92,12 +98,13 @@ const AVClass *av_bsf_get_class(void)
int av_bsf_alloc(const AVBitStreamFilter *filter, AVBSFContext **pctx)
{
AVBSFContext *ctx;
- AVBSFInternal *bsfi;
+ FFBSFContext *bsfi;
int ret;
- ctx = av_mallocz(sizeof(*ctx));
- if (!ctx)
+ bsfi = av_mallocz(sizeof(*bsfi));
+ if (!bsfi)
return AVERROR(ENOMEM);
+ ctx = &bsfi->pub;
ctx->av_class = &bsf_class;
ctx->filter = filter;
@@ -120,15 +127,6 @@ int av_bsf_alloc(const AVBitStreamFilter *filter, AVBSFContext **pctx)
av_opt_set_defaults(ctx->priv_data);
}
}
- /* Allocate AVBSFInternal; must happen after priv_data has been allocated
- * so that a filter->close needing priv_data is never called without. */
- bsfi = av_mallocz(sizeof(*bsfi));
- if (!bsfi) {
- ret = AVERROR(ENOMEM);
- goto fail;
- }
- ctx->internal = bsfi;
-
bsfi->buffer_pkt = av_packet_alloc();
if (!bsfi->buffer_pkt) {
ret = AVERROR(ENOMEM);
@@ -185,7 +183,7 @@ int av_bsf_init(AVBSFContext *ctx)
void av_bsf_flush(AVBSFContext *ctx)
{
- AVBSFInternal *bsfi = ctx->internal;
+ FFBSFContext *const bsfi = ffbsfcontext(ctx);
bsfi->eof = 0;
@@ -197,7 +195,7 @@ void av_bsf_flush(AVBSFContext *ctx)
int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt)
{
- AVBSFInternal *bsfi = ctx->internal;
+ FFBSFContext *const bsfi = ffbsfcontext(ctx);
int ret;
if (!pkt || IS_EMPTY(pkt)) {
@@ -228,7 +226,7 @@ int av_bsf_receive_packet(AVBSFContext *ctx, AVPacket *pkt)
int ff_bsf_get_packet(AVBSFContext *ctx, AVPacket **pkt)
{
- AVBSFInternal *bsfi = ctx->internal;
+ FFBSFContext *const bsfi = ffbsfcontext(ctx);
AVPacket *tmp_pkt;
if (bsfi->eof)
@@ -249,7 +247,7 @@ int ff_bsf_get_packet(AVBSFContext *ctx, AVPacket **pkt)
int ff_bsf_get_packet_ref(AVBSFContext *ctx, AVPacket *pkt)
{
- AVBSFInternal *bsfi = ctx->internal;
+ FFBSFContext *const bsfi = ffbsfcontext(ctx);
if (bsfi->eof)
return AVERROR_EOF;
diff --git a/libavcodec/bsf.h b/libavcodec/bsf.h
index 3b5faa85cb..8c5355d186 100644
--- a/libavcodec/bsf.h
+++ b/libavcodec/bsf.h
@@ -34,8 +34,6 @@
* @{
*/
-typedef struct AVBSFInternal AVBSFInternal;
-
/**
* The bitstream filter state.
*
@@ -58,12 +56,6 @@ typedef struct AVBSFContext {
const struct AVBitStreamFilter *filter;
/**
- * Opaque libavcodec internal data. Must not be touched by the caller in any
- * way.
- */
- AVBSFInternal *internal;
-
- /**
* Opaque filter-specific private data. If filter->priv_class is non-NULL,
* this is an AVOptions-enabled struct.
*/