On 9/28/2022 12:39 PM, Anton Khirnov wrote:
Quoting James Almer (2022-09-23 16:27:32)
On 9/23/2022 10:06 AM, Anton Khirnov wrote:
+static int dts2pts_filter(AVBSFContext *ctx, AVPacket *out)
+{
+DTS2PTSContext *s = ctx->priv_data;
+DTS2PTSNode *poc_node = NULL, *next[2] = { NULL, NULL }
Quoting James Almer (2022-09-23 16:27:32)
> On 9/23/2022 10:06 AM, Anton Khirnov wrote:
> >> +static int dts2pts_filter(AVBSFContext *ctx, AVPacket *out)
> >> +{
> >> +DTS2PTSContext *s = ctx->priv_data;
> >> +DTS2PTSNode *poc_node = NULL, *next[2] = { NULL, NULL };
> >> +DTS2PTSFrame f
On 9/23/2022 10:06 AM, Anton Khirnov wrote:
Quoting James Almer (2022-09-05 03:09:55)
+static int h264_init(AVBSFContext *ctx)
+{
+DTS2PTSContext *s = ctx->priv_data;
+DTS2PTSH264Context *h264 = &s->u.h264;
+
+s->cbc->decompose_unit_types= h264_decompose_unit_types;
+s->cbc->
Quoting James Almer (2022-09-05 03:09:55)
> +static int h264_init(AVBSFContext *ctx)
> +{
> +DTS2PTSContext *s = ctx->priv_data;
> +DTS2PTSH264Context *h264 = &s->u.h264;
> +
> +s->cbc->decompose_unit_types= h264_decompose_unit_types;
> +s->cbc->nb_decompose_unit_types =
> FF_A
James Almer:
> On 8/30/2022 11:30 AM, Andreas Rheinhardt wrote:
>> James Almer:
>>> Starting with an h264 implementation. Can be extended to support
>>> other codecs.
>>>
>>> Addresses ticket #502.
>>>
>>> Signed-off-by: James Almer
>>> ---
>>> configure | 1 +
>>> libavc
On 8/30/2022 11:30 AM, Andreas Rheinhardt wrote:
James Almer:
Starting with an h264 implementation. Can be extended to support other codecs.
Addresses ticket #502.
Signed-off-by: James Almer
---
configure | 1 +
libavcodec/Makefile| 1 +
libavcodec/bit
James Almer:
> Starting with an h264 implementation. Can be extended to support other codecs.
>
> Addresses ticket #502.
>
> Signed-off-by: James Almer
> ---
> configure | 1 +
> libavcodec/Makefile| 1 +
> libavcodec/bitstream_filters.c | 1 +
> libavcode