Re: [FFmpeg-devel] [PATCH 1/4 v2] avcodec/cbs: add an AVClass to CodedBitstreamType for option handling

2020-12-09 Thread James Almer

On 12/1/2020 11:58 AM, James Almer wrote:

On 11/15/2020 6:55 PM, James Almer wrote:

So unit parsing may be configured with caller set options.

Signed-off-by: James Almer 
---
  libavcodec/cbs.c  | 9 +
  libavcodec/cbs_internal.h | 6 ++
  2 files changed, 15 insertions(+)

diff --git a/libavcodec/cbs.c b/libavcodec/cbs.c
index c8c526ab12..c7afccd6f5 100644
--- a/libavcodec/cbs.c
+++ b/libavcodec/cbs.c
@@ -23,6 +23,7 @@
  #include "libavutil/avassert.h"
  #include "libavutil/buffer.h"
  #include "libavutil/common.h"
+#include "libavutil/opt.h"
  #include "cbs.h"
  #include "cbs_internal.h"
@@ -101,6 +102,10 @@ int ff_cbs_init(CodedBitstreamContext **ctx_ptr,
  av_freep();
  return AVERROR(ENOMEM);
  }
+    if (type->priv_class) {
+    *(const AVClass **)ctx->priv_data = type->priv_class;
+    av_opt_set_defaults(ctx->priv_data);
+    }
  }
  ctx->decompose_unit_types = NULL;
@@ -129,6 +134,10 @@ void ff_cbs_close(CodedBitstreamContext **ctx_ptr)
  ctx->codec->close(ctx);
  av_freep(>write_buffer);
+
+    if (ctx->codec->priv_class && ctx->priv_data)
+    av_opt_free(ctx->priv_data);
+
  av_freep(>priv_data);
  av_freep(ctx_ptr);
  }
diff --git a/libavcodec/cbs_internal.h b/libavcodec/cbs_internal.h
index faa847aad3..a392880036 100644
--- a/libavcodec/cbs_internal.h
+++ b/libavcodec/cbs_internal.h
@@ -86,6 +86,12 @@ typedef const struct 
CodedBitstreamUnitTypeDescriptor {

  typedef struct CodedBitstreamType {
  enum AVCodecID codec_id;
+    // A class for the private data, used to declare private AVOptions.
+    // This field is NULL for types that do not declare any options.
+    // If this field is non-NULL, the first member of the filter 
private data

+    // must be a pointer to AVClass.
+    const AVClass *priv_class;
+
  size_t priv_data_size;
  // List of unit type descriptors for this codec.


Ping for the set.


Ping? Mark? This version of the set addressed your concerns, so will 
apply it soon.

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

Re: [FFmpeg-devel] [PATCH 1/4 v2] avcodec/cbs: add an AVClass to CodedBitstreamType for option handling

2020-12-01 Thread James Almer

On 11/15/2020 6:55 PM, James Almer wrote:

So unit parsing may be configured with caller set options.

Signed-off-by: James Almer 
---
  libavcodec/cbs.c  | 9 +
  libavcodec/cbs_internal.h | 6 ++
  2 files changed, 15 insertions(+)

diff --git a/libavcodec/cbs.c b/libavcodec/cbs.c
index c8c526ab12..c7afccd6f5 100644
--- a/libavcodec/cbs.c
+++ b/libavcodec/cbs.c
@@ -23,6 +23,7 @@
  #include "libavutil/avassert.h"
  #include "libavutil/buffer.h"
  #include "libavutil/common.h"
+#include "libavutil/opt.h"
  
  #include "cbs.h"

  #include "cbs_internal.h"
@@ -101,6 +102,10 @@ int ff_cbs_init(CodedBitstreamContext **ctx_ptr,
  av_freep();
  return AVERROR(ENOMEM);
  }
+if (type->priv_class) {
+*(const AVClass **)ctx->priv_data = type->priv_class;
+av_opt_set_defaults(ctx->priv_data);
+}
  }
  
  ctx->decompose_unit_types = NULL;

@@ -129,6 +134,10 @@ void ff_cbs_close(CodedBitstreamContext **ctx_ptr)
  ctx->codec->close(ctx);
  
  av_freep(>write_buffer);

+
+if (ctx->codec->priv_class && ctx->priv_data)
+av_opt_free(ctx->priv_data);
+
  av_freep(>priv_data);
  av_freep(ctx_ptr);
  }
diff --git a/libavcodec/cbs_internal.h b/libavcodec/cbs_internal.h
index faa847aad3..a392880036 100644
--- a/libavcodec/cbs_internal.h
+++ b/libavcodec/cbs_internal.h
@@ -86,6 +86,12 @@ typedef const struct CodedBitstreamUnitTypeDescriptor {
  typedef struct CodedBitstreamType {
  enum AVCodecID codec_id;
  
+// A class for the private data, used to declare private AVOptions.

+// This field is NULL for types that do not declare any options.
+// If this field is non-NULL, the first member of the filter private data
+// must be a pointer to AVClass.
+const AVClass *priv_class;
+
  size_t priv_data_size;
  
  // List of unit type descriptors for this codec.


Ping for the set.
___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".

[FFmpeg-devel] [PATCH 1/4 v2] avcodec/cbs: add an AVClass to CodedBitstreamType for option handling

2020-11-15 Thread James Almer
So unit parsing may be configured with caller set options.

Signed-off-by: James Almer 
---
 libavcodec/cbs.c  | 9 +
 libavcodec/cbs_internal.h | 6 ++
 2 files changed, 15 insertions(+)

diff --git a/libavcodec/cbs.c b/libavcodec/cbs.c
index c8c526ab12..c7afccd6f5 100644
--- a/libavcodec/cbs.c
+++ b/libavcodec/cbs.c
@@ -23,6 +23,7 @@
 #include "libavutil/avassert.h"
 #include "libavutil/buffer.h"
 #include "libavutil/common.h"
+#include "libavutil/opt.h"
 
 #include "cbs.h"
 #include "cbs_internal.h"
@@ -101,6 +102,10 @@ int ff_cbs_init(CodedBitstreamContext **ctx_ptr,
 av_freep();
 return AVERROR(ENOMEM);
 }
+if (type->priv_class) {
+*(const AVClass **)ctx->priv_data = type->priv_class;
+av_opt_set_defaults(ctx->priv_data);
+}
 }
 
 ctx->decompose_unit_types = NULL;
@@ -129,6 +134,10 @@ void ff_cbs_close(CodedBitstreamContext **ctx_ptr)
 ctx->codec->close(ctx);
 
 av_freep(>write_buffer);
+
+if (ctx->codec->priv_class && ctx->priv_data)
+av_opt_free(ctx->priv_data);
+
 av_freep(>priv_data);
 av_freep(ctx_ptr);
 }
diff --git a/libavcodec/cbs_internal.h b/libavcodec/cbs_internal.h
index faa847aad3..a392880036 100644
--- a/libavcodec/cbs_internal.h
+++ b/libavcodec/cbs_internal.h
@@ -86,6 +86,12 @@ typedef const struct CodedBitstreamUnitTypeDescriptor {
 typedef struct CodedBitstreamType {
 enum AVCodecID codec_id;
 
+// A class for the private data, used to declare private AVOptions.
+// This field is NULL for types that do not declare any options.
+// If this field is non-NULL, the first member of the filter private data
+// must be a pointer to AVClass.
+const AVClass *priv_class;
+
 size_t priv_data_size;
 
 // List of unit type descriptors for this codec.
-- 
2.29.2

___
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel

To unsubscribe, visit link above, or email
ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".