Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* [FFmpeg-devel] [PATCH] avformat/hlsenc: fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF
@ 2025-03-03  1:32 Jack Lau via ffmpeg-devel
  0 siblings, 0 replies; 8+ messages in thread
From: Jack Lau via ffmpeg-devel @ 2025-03-03  1:32 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Jack Lau

fix ticket: 10786
parse the SPS from extradata and get profile_compatibility, tier, constraints which was been hard code before.

HEVC CODECS Attribute reference to: ISO/IEC14496-15
Signed-off-by: Jack Lau <jacklau1222@qq.com>
---
 libavformat/hlsenc.c | 38 +++++++++++++++++++++++++++++++++++---
 1 file changed, 35 insertions(+), 3 deletions(-)

diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 6148685f40..c6ffdb99e5 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -379,7 +379,10 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
     } else if (st->codecpar->codec_id == AV_CODEC_ID_HEVC) {
         uint8_t *data = st->codecpar->extradata;
         int profile = AV_PROFILE_UNKNOWN;
+        uint32_t profile_compatibility = AV_PROFILE_UNKNOWN; 
+        char tier = 0;
         int level = AV_LEVEL_UNKNOWN;
+        char constraints[8] = "";
 
         if (st->codecpar->profile != AV_PROFILE_UNKNOWN)
             profile = st->codecpar->profile;
@@ -393,6 +396,8 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
                 uint8_t *rbsp_buf;
                 int remain_size = 0;
                 int rbsp_size = 0;
+                uint32_t profile_compatibility_flags = 0;
+                uint8_t high_nibble = 0;
                 /* skip start code + nalu header */
                 data += 6;
                 /* process by reference General NAL unit syntax */
@@ -406,8 +411,32 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
                 }
                 /* skip sps_video_parameter_set_id   u(4),
                  *      sps_max_sub_layers_minus1    u(3),
-                 *  and sps_temporal_id_nesting_flag u(1) */
+                 *  and sps_temporal_id_nesting_flag u(1) 
+                 * 
+                 * TIER represents the general_tier_flag, with 'L' indicating the flag is 0,
+                 * and 'H' indicating the flag is 1
+                 */
+                tier = (rbsp_buf[1] & 0x20) == 0 ? 'L' : 'H';
                 profile = rbsp_buf[1] & 0x1f;
+                /* PROFILE_COMPATIBILITY is general_profile_compatibility_flags, but in reverse bit order,
+                 * in a hexadecimal representation (leading zeroes may be omitted).
+                 */
+                profile_compatibility_flags = AV_RB32(rbsp_buf + 2);
+                /* revise these bits to get the profile compatibility value */
+                profile_compatibility_flags = ((profile_compatibility_flags & 0x55555555U) << 1) | ((profile_compatibility_flags >> 1) & 0x55555555U);
+                profile_compatibility_flags = ((profile_compatibility_flags & 0x33333333U) << 2) | ((profile_compatibility_flags >> 2) & 0x33333333U);
+                profile_compatibility_flags = ((profile_compatibility_flags & 0x0F0F0F0FU) << 4) | ((profile_compatibility_flags >> 4) & 0x0F0F0F0FU);
+                profile_compatibility_flags = ((profile_compatibility_flags & 0x00FF00FFU) << 8) | ((profile_compatibility_flags >> 8) & 0x00FF00FFU);
+                profile_compatibility = (profile_compatibility_flags << 16) | (profile_compatibility_flags >> 16);
+                /* skip 8 + 8 + 32
+                 * CONSTRAINTS is a hexadecimal representation of the general_constraint_indicator_flags. 
+                 * each byte is separated by a '.', and trailing zero bytes may be omitted.
+                 * drop the trailing zero bytes refer to ISO/IEC14496-15.
+                 */
+                high_nibble = rbsp_buf[7] >> 4;
+                snprintf(constraints, sizeof(constraints),
+                         high_nibble ? "%02x.%x" : "%02x",
+                         rbsp_buf[6], high_nibble);
                 /* skip 8 + 8 + 32 + 4 + 43 + 1 bit */
                 level = rbsp_buf[12];
                 av_freep(&rbsp_buf);
@@ -417,8 +446,11 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
         }
         if (st->codecpar->codec_tag == MKTAG('h','v','c','1') &&
             profile != AV_PROFILE_UNKNOWN &&
-            level != AV_LEVEL_UNKNOWN) {
-            snprintf(attr, sizeof(attr), "%s.%d.4.L%d.B01", av_fourcc2str(st->codecpar->codec_tag), profile, level);
+            profile_compatibility != AV_PROFILE_UNKNOWN &&
+            tier != 0 &&
+            level != AV_LEVEL_UNKNOWN &&
+            constraints[0] != '\0') {
+            snprintf(attr, sizeof(attr), "%s.%d.%x.%c%d.%s", av_fourcc2str(st->codecpar->codec_tag), profile, profile_compatibility, tier, level, constraints);
         } else
             goto fail;
     } else if (st->codecpar->codec_id == AV_CODEC_ID_MP2) {
-- 
2.47.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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF
  2025-03-03  1:08 ` Steven Liu
@ 2025-03-03  1:38   ` Jack Lau
  0 siblings, 0 replies; 8+ messages in thread
From: Jack Lau @ 2025-03-03  1:38 UTC (permalink / raw)
  To: FFmpeg development discussions and patches; +Cc: Jack Lau



> On Mar 3, 2025, at 09:08, Steven Liu <lingjiujianke@gmail.com> wrote:
> 
> Jack Lau via ffmpeg-devel <ffmpeg-devel@ffmpeg.org <mailto:ffmpeg-devel@ffmpeg.org>> 于2025年3月2日周日 21:31写道:
>> 
>> fix ticket: 10786
>> parse the SPS from extradata and get profile_compatibility, tier, constraints which was been hard code before.
>> 
>> HEVC CODECS Attribute reference to: ISO/IEC14496-15
>> Signed-off-by: Jack Lau <jacklau1222@qq.com>
>> ---
>> libavformat/hlsenc.c | 41 ++++++++++++++++++++++++++++++++++++++---
>> 1 file changed, 38 insertions(+), 3 deletions(-)
>> 
>> diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
>> index 6148685f40..849130196f 100644
>> --- a/libavformat/hlsenc.c
>> +++ b/libavformat/hlsenc.c
>> @@ -379,7 +379,10 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>>     } else if (st->codecpar->codec_id == AV_CODEC_ID_HEVC) {
>>         uint8_t *data = st->codecpar->extradata;
>>         int profile = AV_PROFILE_UNKNOWN;
>> +        uint32_t profile_compatibility = AV_PROFILE_UNKNOWN;
>> +        char tier = 0;
>>         int level = AV_LEVEL_UNKNOWN;
>> +        char constraints[8] = "";
>> 
>>         if (st->codecpar->profile != AV_PROFILE_UNKNOWN)
>>             profile = st->codecpar->profile;
>> @@ -393,6 +396,8 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>>                 uint8_t *rbsp_buf;
>>                 int remain_size = 0;
>>                 int rbsp_size = 0;
>> +                uint32_t profile_compatibility_flags = 0;
>> +                uint8_t high_nibble = 0;
>>                 /* skip start code + nalu header */
>>                 data += 6;
>>                 /* process by reference General NAL unit syntax */
>> @@ -406,8 +411,35 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>>                 }
>>                 /* skip sps_video_parameter_set_id   u(4),
>>                  *      sps_max_sub_layers_minus1    u(3),
>> -                 *  and sps_temporal_id_nesting_flag u(1) */
>> +                 *  and sps_temporal_id_nesting_flag u(1)
>> +                 *
>> +                 * TIER represents the general_tier_flag, with 'L' indicating the flag is 0,
>> +                 * and 'H' indicating the flag is 1
>> +                 */
>> +                tier = (int)(rbsp_buf[1] & 0x20) == 0 ? 'L' : 'H';
> Since 'tier' is a char, the cast to (int) should be unnecessary.
Got it! remove (int) already in the latest patch.
>>                 profile = rbsp_buf[1] & 0x1f;
>> +                /* PROFILE_COMPATIBILITY is general_profile_compatibility_flags, but in reverse bit order,
>> +                 * in a hexadecimal representation (leading zeroes may be omitted).
>> +                 */
>> +                profile_compatibility_flags = AV_RB32(rbsp_buf + 2);
>> +                /* revise these bits to get the profile compatibility value */
>> +                {
> remove this braces
> 
>> +                   uint32_t x = profile_compatibility_flags;
>> +                    x = ((x & 0x55555555U) << 1) | ((x >> 1) & 0x55555555U);
>> +                    x = ((x & 0x33333333U) << 2) | ((x >> 2) & 0x33333333U);
>> +                    x = ((x & 0x0F0F0F0FU) << 4) | ((x >> 4) & 0x0F0F0F0FU);
>> +                    x = ((x & 0x00FF00FFU) << 8) | ((x >> 8) & 0x00FF00FFU);
>> +                    profile_compatibility = (x << 16) | (x >> 16);
>> +                }
> ditoo
Thank you for reminding me of this problem. In the latest patch, I not only removed braces, but also removed the temporary variable x. Direct bit operations on profile_compatibility_flags will save more resources.
>> +                /* skip 8 + 8 + 32
>> +                 * CONSTRAINTS is a hexadecimal representation of the general_constraint_indicator_flags.
>> +                 * each byte is separated by a '.', and trailing zero bytes may be omitted.
>> +                 * drop the trailing zero bytes refer to ISO/IEC14496-15.
>> +                 */
>> +                high_nibble = rbsp_buf[7] >> 4;
>> +                snprintf(constraints, sizeof(constraints),
>> +                         high_nibble ? "%02x.%x" : "%02x",
>> +                         rbsp_buf[6], high_nibble);
>>                 /* skip 8 + 8 + 32 + 4 + 43 + 1 bit */
>>                 level = rbsp_buf[12];
>>                 av_freep(&rbsp_buf);
>> @@ -417,8 +449,11 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>>         }
>>         if (st->codecpar->codec_tag == MKTAG('h','v','c','1') &&
>>             profile != AV_PROFILE_UNKNOWN &&
>> -            level != AV_LEVEL_UNKNOWN) {
>> -            snprintf(attr, sizeof(attr), "%s.%d.4.L%d.B01", av_fourcc2str(st->codecpar->codec_tag), profile, level);
>> +            profile_compatibility != AV_PROFILE_UNKNOWN &&
>> +            tier != 0 &&
>> +            level != AV_LEVEL_UNKNOWN &&
>> +            constraints[0] != '\0') {
>> +            snprintf(attr, sizeof(attr), "%s.%d.%x.%c%d.%s", av_fourcc2str(st->codecpar->codec_tag), profile, profile_compatibility, tier, level, constraints);
>>         } else
>>             goto fail;
>>     } else if (st->codecpar->codec_id == AV_CODEC_ID_MP2) {
>> --
>> 2.47.1
>> 
>> _______________________________________________
> Otherwise, it looks okay to me. You need to ask the submitter of the
> ticket ID to check whether this patch can fix the issue.
Got it, I already ask the reporter, waiting for messages~
> 
> 
> Thanks
> Steven
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel@ffmpeg.org <mailto:ffmpeg-devel@ffmpeg.org>
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
> 
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request@ffmpeg.org <mailto:ffmpeg-devel-request@ffmpeg.org> with subject "unsubscribe”.


Thanks for your detailed review

Regards
Jack





_______________________________________________
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] 8+ messages in thread

* [FFmpeg-devel] [PATCH] avformat/hlsenc: fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF
@ 2025-03-03  1:38 Jack Lau via ffmpeg-devel
  0 siblings, 0 replies; 8+ messages in thread
From: Jack Lau via ffmpeg-devel @ 2025-03-03  1:38 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Jack Lau

fix ticket: 10786
parse the SPS from extradata and get profile_compatibility, tier, constraints which was been hard code before.

HEVC CODECS Attribute reference to: ISO/IEC14496-15
Signed-off-by: Jack Lau <jacklau1222@qq.com>
---
 libavformat/hlsenc.c | 38 +++++++++++++++++++++++++++++++++++---
 1 file changed, 35 insertions(+), 3 deletions(-)

diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 6148685f40..c6ffdb99e5 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -379,7 +379,10 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
     } else if (st->codecpar->codec_id == AV_CODEC_ID_HEVC) {
         uint8_t *data = st->codecpar->extradata;
         int profile = AV_PROFILE_UNKNOWN;
+        uint32_t profile_compatibility = AV_PROFILE_UNKNOWN; 
+        char tier = 0;
         int level = AV_LEVEL_UNKNOWN;
+        char constraints[8] = "";
 
         if (st->codecpar->profile != AV_PROFILE_UNKNOWN)
             profile = st->codecpar->profile;
@@ -393,6 +396,8 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
                 uint8_t *rbsp_buf;
                 int remain_size = 0;
                 int rbsp_size = 0;
+                uint32_t profile_compatibility_flags = 0;
+                uint8_t high_nibble = 0;
                 /* skip start code + nalu header */
                 data += 6;
                 /* process by reference General NAL unit syntax */
@@ -406,8 +411,32 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
                 }
                 /* skip sps_video_parameter_set_id   u(4),
                  *      sps_max_sub_layers_minus1    u(3),
-                 *  and sps_temporal_id_nesting_flag u(1) */
+                 *  and sps_temporal_id_nesting_flag u(1) 
+                 * 
+                 * TIER represents the general_tier_flag, with 'L' indicating the flag is 0,
+                 * and 'H' indicating the flag is 1
+                 */
+                tier = (rbsp_buf[1] & 0x20) == 0 ? 'L' : 'H';
                 profile = rbsp_buf[1] & 0x1f;
+                /* PROFILE_COMPATIBILITY is general_profile_compatibility_flags, but in reverse bit order,
+                 * in a hexadecimal representation (leading zeroes may be omitted).
+                 */
+                profile_compatibility_flags = AV_RB32(rbsp_buf + 2);
+                /* revise these bits to get the profile compatibility value */
+                profile_compatibility_flags = ((profile_compatibility_flags & 0x55555555U) << 1) | ((profile_compatibility_flags >> 1) & 0x55555555U);
+                profile_compatibility_flags = ((profile_compatibility_flags & 0x33333333U) << 2) | ((profile_compatibility_flags >> 2) & 0x33333333U);
+                profile_compatibility_flags = ((profile_compatibility_flags & 0x0F0F0F0FU) << 4) | ((profile_compatibility_flags >> 4) & 0x0F0F0F0FU);
+                profile_compatibility_flags = ((profile_compatibility_flags & 0x00FF00FFU) << 8) | ((profile_compatibility_flags >> 8) & 0x00FF00FFU);
+                profile_compatibility = (profile_compatibility_flags << 16) | (profile_compatibility_flags >> 16);
+                /* skip 8 + 8 + 32
+                 * CONSTRAINTS is a hexadecimal representation of the general_constraint_indicator_flags. 
+                 * each byte is separated by a '.', and trailing zero bytes may be omitted.
+                 * drop the trailing zero bytes refer to ISO/IEC14496-15.
+                 */
+                high_nibble = rbsp_buf[7] >> 4;
+                snprintf(constraints, sizeof(constraints),
+                         high_nibble ? "%02x.%x" : "%02x",
+                         rbsp_buf[6], high_nibble);
                 /* skip 8 + 8 + 32 + 4 + 43 + 1 bit */
                 level = rbsp_buf[12];
                 av_freep(&rbsp_buf);
@@ -417,8 +446,11 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
         }
         if (st->codecpar->codec_tag == MKTAG('h','v','c','1') &&
             profile != AV_PROFILE_UNKNOWN &&
-            level != AV_LEVEL_UNKNOWN) {
-            snprintf(attr, sizeof(attr), "%s.%d.4.L%d.B01", av_fourcc2str(st->codecpar->codec_tag), profile, level);
+            profile_compatibility != AV_PROFILE_UNKNOWN &&
+            tier != 0 &&
+            level != AV_LEVEL_UNKNOWN &&
+            constraints[0] != '\0') {
+            snprintf(attr, sizeof(attr), "%s.%d.%x.%c%d.%s", av_fourcc2str(st->codecpar->codec_tag), profile, profile_compatibility, tier, level, constraints);
         } else
             goto fail;
     } else if (st->codecpar->codec_id == AV_CODEC_ID_MP2) {
-- 
2.47.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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF
  2025-03-02 13:30 Jack Lau via ffmpeg-devel
@ 2025-03-03  1:08 ` Steven Liu
  2025-03-03  1:38   ` Jack Lau
  0 siblings, 1 reply; 8+ messages in thread
From: Steven Liu @ 2025-03-03  1:08 UTC (permalink / raw)
  To: FFmpeg development discussions and patches; +Cc: Jack Lau

Jack Lau via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> 于2025年3月2日周日 21:31写道:
>
> fix ticket: 10786
> parse the SPS from extradata and get profile_compatibility, tier, constraints which was been hard code before.
>
> HEVC CODECS Attribute reference to: ISO/IEC14496-15
> Signed-off-by: Jack Lau <jacklau1222@qq.com>
> ---
>  libavformat/hlsenc.c | 41 ++++++++++++++++++++++++++++++++++++++---
>  1 file changed, 38 insertions(+), 3 deletions(-)
>
> diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
> index 6148685f40..849130196f 100644
> --- a/libavformat/hlsenc.c
> +++ b/libavformat/hlsenc.c
> @@ -379,7 +379,10 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>      } else if (st->codecpar->codec_id == AV_CODEC_ID_HEVC) {
>          uint8_t *data = st->codecpar->extradata;
>          int profile = AV_PROFILE_UNKNOWN;
> +        uint32_t profile_compatibility = AV_PROFILE_UNKNOWN;
> +        char tier = 0;
>          int level = AV_LEVEL_UNKNOWN;
> +        char constraints[8] = "";
>
>          if (st->codecpar->profile != AV_PROFILE_UNKNOWN)
>              profile = st->codecpar->profile;
> @@ -393,6 +396,8 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>                  uint8_t *rbsp_buf;
>                  int remain_size = 0;
>                  int rbsp_size = 0;
> +                uint32_t profile_compatibility_flags = 0;
> +                uint8_t high_nibble = 0;
>                  /* skip start code + nalu header */
>                  data += 6;
>                  /* process by reference General NAL unit syntax */
> @@ -406,8 +411,35 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>                  }
>                  /* skip sps_video_parameter_set_id   u(4),
>                   *      sps_max_sub_layers_minus1    u(3),
> -                 *  and sps_temporal_id_nesting_flag u(1) */
> +                 *  and sps_temporal_id_nesting_flag u(1)
> +                 *
> +                 * TIER represents the general_tier_flag, with 'L' indicating the flag is 0,
> +                 * and 'H' indicating the flag is 1
> +                 */
> +                tier = (int)(rbsp_buf[1] & 0x20) == 0 ? 'L' : 'H';
Since 'tier' is a char, the cast to (int) should be unnecessary.
>                  profile = rbsp_buf[1] & 0x1f;
> +                /* PROFILE_COMPATIBILITY is general_profile_compatibility_flags, but in reverse bit order,
> +                 * in a hexadecimal representation (leading zeroes may be omitted).
> +                 */
> +                profile_compatibility_flags = AV_RB32(rbsp_buf + 2);
> +                /* revise these bits to get the profile compatibility value */
> +                {
remove this braces

> +                   uint32_t x = profile_compatibility_flags;
> +                    x = ((x & 0x55555555U) << 1) | ((x >> 1) & 0x55555555U);
> +                    x = ((x & 0x33333333U) << 2) | ((x >> 2) & 0x33333333U);
> +                    x = ((x & 0x0F0F0F0FU) << 4) | ((x >> 4) & 0x0F0F0F0FU);
> +                    x = ((x & 0x00FF00FFU) << 8) | ((x >> 8) & 0x00FF00FFU);
> +                    profile_compatibility = (x << 16) | (x >> 16);
> +                }
ditoo
> +                /* skip 8 + 8 + 32
> +                 * CONSTRAINTS is a hexadecimal representation of the general_constraint_indicator_flags.
> +                 * each byte is separated by a '.', and trailing zero bytes may be omitted.
> +                 * drop the trailing zero bytes refer to ISO/IEC14496-15.
> +                 */
> +                high_nibble = rbsp_buf[7] >> 4;
> +                snprintf(constraints, sizeof(constraints),
> +                         high_nibble ? "%02x.%x" : "%02x",
> +                         rbsp_buf[6], high_nibble);
>                  /* skip 8 + 8 + 32 + 4 + 43 + 1 bit */
>                  level = rbsp_buf[12];
>                  av_freep(&rbsp_buf);
> @@ -417,8 +449,11 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>          }
>          if (st->codecpar->codec_tag == MKTAG('h','v','c','1') &&
>              profile != AV_PROFILE_UNKNOWN &&
> -            level != AV_LEVEL_UNKNOWN) {
> -            snprintf(attr, sizeof(attr), "%s.%d.4.L%d.B01", av_fourcc2str(st->codecpar->codec_tag), profile, level);
> +            profile_compatibility != AV_PROFILE_UNKNOWN &&
> +            tier != 0 &&
> +            level != AV_LEVEL_UNKNOWN &&
> +            constraints[0] != '\0') {
> +            snprintf(attr, sizeof(attr), "%s.%d.%x.%c%d.%s", av_fourcc2str(st->codecpar->codec_tag), profile, profile_compatibility, tier, level, constraints);
>          } else
>              goto fail;
>      } else if (st->codecpar->codec_id == AV_CODEC_ID_MP2) {
> --
> 2.47.1
>
> _______________________________________________
Otherwise, it looks okay to me. You need to ask the submitter of the
ticket ID to check whether this patch can fix the issue.


Thanks
Steven
_______________________________________________
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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF
  2025-03-02  7:47 Jack Lau via ffmpeg-devel
  2025-03-02 12:19 ` Steven Liu
@ 2025-03-02 13:36 ` Jack Lau
  1 sibling, 0 replies; 8+ messages in thread
From: Jack Lau @ 2025-03-02 13:36 UTC (permalink / raw)
  To: FFmpeg development discussions and patches



> On Mar 2, 2025, at 15:47, Jack Lau via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> wrote:
> 
> fix ticket: 10786
> parse the SPS from extradata and get profile_compatibility, tier, constraints which was been hard code before.
> 
> HEVC CODECS Attribute reference to: ISO/IEC14496-15
> Signed-off-by: Jack Lau <jacklau1222@qq.com>
> ---
> libavformat/hlsenc.c | 37 ++++++++++++++++++++++++++++++++++---
> 1 file changed, 34 insertions(+), 3 deletions(-)
> 
> diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
> index 6148685f40..be7a78021a 100644
> --- a/libavformat/hlsenc.c
> +++ b/libavformat/hlsenc.c
> @@ -379,7 +379,10 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>     } else if (st->codecpar->codec_id == AV_CODEC_ID_HEVC) {
>         uint8_t *data = st->codecpar->extradata;
>         int profile = AV_PROFILE_UNKNOWN;
> +        uint32_t profile_compatibility = AV_PROFILE_UNKNOWN; 
> +        char tier = '0';
>         int level = AV_LEVEL_UNKNOWN;
> +        char constraints[5] = "0";
> 
>         if (st->codecpar->profile != AV_PROFILE_UNKNOWN)
>             profile = st->codecpar->profile;
> @@ -393,6 +396,8 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>                 uint8_t *rbsp_buf;
>                 int remain_size = 0;
>                 int rbsp_size = 0;
> +                uint32_t profile_compatibility_flags = 0;
> +                uint8_t high_nibble = 0;
>                 /* skip start code + nalu header */
>                 data += 6;
>                 /* process by reference General NAL unit syntax */
> @@ -406,8 +411,31 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>                 }
>                 /* skip sps_video_parameter_set_id   u(4),
>                  *      sps_max_sub_layers_minus1    u(3),
> -                 *  and sps_temporal_id_nesting_flag u(1) */
> +                 *  and sps_temporal_id_nesting_flag u(1) 
> +                 * 
> +                 * TIER represents the general_tier_flag, with 'L' indicating the flag is 0,
> +                 * and 'H' indicating the flag is 1
> +                 */
> +                tier = (int)(rbsp_buf[1] & 0x20) == 0 ? 'L' : 'H';
>                 profile = rbsp_buf[1] & 0x1f;
> +                /* PROFILE_COMPATIBILITY is general_profile_compatibility_flags, but in reverse bit order,
> +                 * in a hexadecimal representation (leading zeroes may be omitted).
> +                 */
> +                profile_compatibility_flags = (rbsp_buf[2] << 24) | (rbsp_buf[3] << 16) | (rbsp_buf[4] << 8) | rbsp_buf[5];
> +                /* revise these bits to get the profile compatibility value */
> +                for (int i = 0; i < 32; i++) {
> +                    profile_compatibility = (profile_compatibility << 1) | (profile_compatibility_flags & 1);
> +                    profile_compatibility_flags >>= 1;
> +                }
> +                /* skip 8 + 8 + 32
> +                 * CONSTRAINTS is a hexadecimal representation of the general_constraint_indicator_flags. 
> +                 * each byte is separated by a '.', and trailing zero bytes may be omitted.
> +                 * drop the trailing zero bytes refer to ISO/IEC14496-15.
> +                 */
> +                high_nibble = rbsp_buf[7] >> 4;
> +                snprintf(constraints, sizeof(constraints),
> +                         high_nibble ? "%02x.%x" : "%02x",
> +                         rbsp_buf[6], high_nibble);
>                 /* skip 8 + 8 + 32 + 4 + 43 + 1 bit */
>                 level = rbsp_buf[12];
>                 av_freep(&rbsp_buf);
> @@ -417,8 +445,11 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>         }
>         if (st->codecpar->codec_tag == MKTAG('h','v','c','1') &&
>             profile != AV_PROFILE_UNKNOWN &&
> -            level != AV_LEVEL_UNKNOWN) {
> -            snprintf(attr, sizeof(attr), "%s.%d.4.L%d.B01", av_fourcc2str(st->codecpar->codec_tag), profile, level);
> +            profile_compatibility != AV_PROFILE_UNKNOWN &&
> +            tier != '0' &&
> +            level != AV_LEVEL_UNKNOWN &&
> +            strcmp(constraints, "0") != 0) {
> +            snprintf(attr, sizeof(attr), "%s.%d.%x.%c%d.%s", av_fourcc2str(st->codecpar->codec_tag), profile, profile_compatibility, tier, level, constraints);
>         } else
>             goto fail;
>     } else if (st->codecpar->codec_id == AV_CODEC_ID_MP2) {
> -- 
> 2.47.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”.

Thanks for your reply!
I already submit new patch, there are some changes in new patch:

1. Avoid using loop traversal, 
2. optimize constraint default value processing, 
3. and simplify the reading method of profile_compatibility_flags

BTW, I think the constraints[8] = “” maybe better, it can be check if the first bit is ‘\0’ so that maybe faster?

Regards
Jack
_______________________________________________
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] 8+ messages in thread

* [FFmpeg-devel] [PATCH] avformat/hlsenc: fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF
@ 2025-03-02 13:30 Jack Lau via ffmpeg-devel
  2025-03-03  1:08 ` Steven Liu
  0 siblings, 1 reply; 8+ messages in thread
From: Jack Lau via ffmpeg-devel @ 2025-03-02 13:30 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Jack Lau

fix ticket: 10786
parse the SPS from extradata and get profile_compatibility, tier, constraints which was been hard code before.

HEVC CODECS Attribute reference to: ISO/IEC14496-15
Signed-off-by: Jack Lau <jacklau1222@qq.com>
---
 libavformat/hlsenc.c | 41 ++++++++++++++++++++++++++++++++++++++---
 1 file changed, 38 insertions(+), 3 deletions(-)

diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 6148685f40..849130196f 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -379,7 +379,10 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
     } else if (st->codecpar->codec_id == AV_CODEC_ID_HEVC) {
         uint8_t *data = st->codecpar->extradata;
         int profile = AV_PROFILE_UNKNOWN;
+        uint32_t profile_compatibility = AV_PROFILE_UNKNOWN; 
+        char tier = 0;
         int level = AV_LEVEL_UNKNOWN;
+        char constraints[8] = "";
 
         if (st->codecpar->profile != AV_PROFILE_UNKNOWN)
             profile = st->codecpar->profile;
@@ -393,6 +396,8 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
                 uint8_t *rbsp_buf;
                 int remain_size = 0;
                 int rbsp_size = 0;
+                uint32_t profile_compatibility_flags = 0;
+                uint8_t high_nibble = 0;
                 /* skip start code + nalu header */
                 data += 6;
                 /* process by reference General NAL unit syntax */
@@ -406,8 +411,35 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
                 }
                 /* skip sps_video_parameter_set_id   u(4),
                  *      sps_max_sub_layers_minus1    u(3),
-                 *  and sps_temporal_id_nesting_flag u(1) */
+                 *  and sps_temporal_id_nesting_flag u(1) 
+                 * 
+                 * TIER represents the general_tier_flag, with 'L' indicating the flag is 0,
+                 * and 'H' indicating the flag is 1
+                 */
+                tier = (int)(rbsp_buf[1] & 0x20) == 0 ? 'L' : 'H';
                 profile = rbsp_buf[1] & 0x1f;
+                /* PROFILE_COMPATIBILITY is general_profile_compatibility_flags, but in reverse bit order,
+                 * in a hexadecimal representation (leading zeroes may be omitted).
+                 */
+                profile_compatibility_flags = AV_RB32(rbsp_buf + 2);
+                /* revise these bits to get the profile compatibility value */
+                {
+                   uint32_t x = profile_compatibility_flags;
+                    x = ((x & 0x55555555U) << 1) | ((x >> 1) & 0x55555555U);
+                    x = ((x & 0x33333333U) << 2) | ((x >> 2) & 0x33333333U);
+                    x = ((x & 0x0F0F0F0FU) << 4) | ((x >> 4) & 0x0F0F0F0FU);
+                    x = ((x & 0x00FF00FFU) << 8) | ((x >> 8) & 0x00FF00FFU);
+                    profile_compatibility = (x << 16) | (x >> 16);
+                }
+                /* skip 8 + 8 + 32
+                 * CONSTRAINTS is a hexadecimal representation of the general_constraint_indicator_flags. 
+                 * each byte is separated by a '.', and trailing zero bytes may be omitted.
+                 * drop the trailing zero bytes refer to ISO/IEC14496-15.
+                 */
+                high_nibble = rbsp_buf[7] >> 4;
+                snprintf(constraints, sizeof(constraints),
+                         high_nibble ? "%02x.%x" : "%02x",
+                         rbsp_buf[6], high_nibble);
                 /* skip 8 + 8 + 32 + 4 + 43 + 1 bit */
                 level = rbsp_buf[12];
                 av_freep(&rbsp_buf);
@@ -417,8 +449,11 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
         }
         if (st->codecpar->codec_tag == MKTAG('h','v','c','1') &&
             profile != AV_PROFILE_UNKNOWN &&
-            level != AV_LEVEL_UNKNOWN) {
-            snprintf(attr, sizeof(attr), "%s.%d.4.L%d.B01", av_fourcc2str(st->codecpar->codec_tag), profile, level);
+            profile_compatibility != AV_PROFILE_UNKNOWN &&
+            tier != 0 &&
+            level != AV_LEVEL_UNKNOWN &&
+            constraints[0] != '\0') {
+            snprintf(attr, sizeof(attr), "%s.%d.%x.%c%d.%s", av_fourcc2str(st->codecpar->codec_tag), profile, profile_compatibility, tier, level, constraints);
         } else
             goto fail;
     } else if (st->codecpar->codec_id == AV_CODEC_ID_MP2) {
-- 
2.47.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] 8+ messages in thread

* Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF
  2025-03-02  7:47 Jack Lau via ffmpeg-devel
@ 2025-03-02 12:19 ` Steven Liu
  2025-03-02 13:36 ` Jack Lau
  1 sibling, 0 replies; 8+ messages in thread
From: Steven Liu @ 2025-03-02 12:19 UTC (permalink / raw)
  To: FFmpeg development discussions and patches

Jack Lau via ffmpeg-devel <ffmpeg-devel@ffmpeg.org> 于2025年3月2日周日 15:47写道:
>
> fix ticket: 10786
> parse the SPS from extradata and get profile_compatibility, tier, constraints which was been hard code before.
>
> HEVC CODECS Attribute reference to: ISO/IEC14496-15
> Signed-off-by: Jack Lau <jacklau1222@qq.com>
> ---
>  libavformat/hlsenc.c | 37 ++++++++++++++++++++++++++++++++++---
>  1 file changed, 34 insertions(+), 3 deletions(-)
>
> diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
> index 6148685f40..be7a78021a 100644
> --- a/libavformat/hlsenc.c
> +++ b/libavformat/hlsenc.c
> @@ -379,7 +379,10 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>      } else if (st->codecpar->codec_id == AV_CODEC_ID_HEVC) {
>          uint8_t *data = st->codecpar->extradata;
>          int profile = AV_PROFILE_UNKNOWN;
> +        uint32_t profile_compatibility = AV_PROFILE_UNKNOWN;
> +        char tier = '0';
char tier = 0;
>          int level = AV_LEVEL_UNKNOWN;
> +        char constraints[5] = "0";
char constraints[8] = {0, }; Ensure alignment to 8.
>
>          if (st->codecpar->profile != AV_PROFILE_UNKNOWN)
>              profile = st->codecpar->profile;
> @@ -393,6 +396,8 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>                  uint8_t *rbsp_buf;
>                  int remain_size = 0;
>                  int rbsp_size = 0;
> +                uint32_t profile_compatibility_flags = 0;
> +                uint8_t high_nibble = 0;
>                  /* skip start code + nalu header */
>                  data += 6;
>                  /* process by reference General NAL unit syntax */
> @@ -406,8 +411,31 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>                  }
>                  /* skip sps_video_parameter_set_id   u(4),
>                   *      sps_max_sub_layers_minus1    u(3),
> -                 *  and sps_temporal_id_nesting_flag u(1) */
> +                 *  and sps_temporal_id_nesting_flag u(1)
> +                 *
> +                 * TIER represents the general_tier_flag, with 'L' indicating the flag is 0,
> +                 * and 'H' indicating the flag is 1
> +                 */
> +                tier = (int)(rbsp_buf[1] & 0x20) == 0 ? 'L' : 'H';
>                  profile = rbsp_buf[1] & 0x1f;



> +                /* PROFILE_COMPATIBILITY is general_profile_compatibility_flags, but in reverse bit order,
> +                 * in a hexadecimal representation (leading zeroes may be omitted).
> +                 */
> +                profile_compatibility_flags = (rbsp_buf[2] << 24) | (rbsp_buf[3] << 16) | (rbsp_buf[4] << 8) | rbsp_buf[5];
> +                /* revise these bits to get the profile compatibility value */
> +                for (int i = 0; i < 32; i++) {
> +                    profile_compatibility = (profile_compatibility << 1) | (profile_compatibility_flags & 1);
> +                    profile_compatibility_flags >>= 1;
> +                }
> +                /* skip 8 + 8 + 32
> +                 * CONSTRAINTS is a hexadecimal representation of the general_constraint_indicator_flags.
> +                 * each byte is separated by a '.', and trailing zero bytes may be omitted.
> +                 * drop the trailing zero bytes refer to ISO/IEC14496-15.
> +                 */
> +                high_nibble = rbsp_buf[7] >> 4;
> +                snprintf(constraints, sizeof(constraints),
> +                         high_nibble ? "%02x.%x" : "%02x",
> +                         rbsp_buf[6], high_nibble);



>                  /* skip 8 + 8 + 32 + 4 + 43 + 1 bit */
>                  level = rbsp_buf[12];
>                  av_freep(&rbsp_buf);
> @@ -417,8 +445,11 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
>          }
>          if (st->codecpar->codec_tag == MKTAG('h','v','c','1') &&
>              profile != AV_PROFILE_UNKNOWN &&
> -            level != AV_LEVEL_UNKNOWN) {
> -            snprintf(attr, sizeof(attr), "%s.%d.4.L%d.B01", av_fourcc2str(st->codecpar->codec_tag), profile, level);
> +            profile_compatibility != AV_PROFILE_UNKNOWN &&
> +            tier != '0' &&
tier should ok if it not 0
> +            level != AV_LEVEL_UNKNOWN &&
> +            strcmp(constraints, "0") != 0) {
> +            snprintf(attr, sizeof(attr), "%s.%d.%x.%c%d.%s", av_fourcc2str(st->codecpar->codec_tag), profile, profile_compatibility, tier, level, constraints);
>          } else
>              goto fail;
>      } else if (st->codecpar->codec_id == AV_CODEC_ID_MP2) {
> --
> 2.47.1
>
Thanks
Steven
_______________________________________________
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] 8+ messages in thread

* [FFmpeg-devel] [PATCH] avformat/hlsenc: fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF
@ 2025-03-02  7:47 Jack Lau via ffmpeg-devel
  2025-03-02 12:19 ` Steven Liu
  2025-03-02 13:36 ` Jack Lau
  0 siblings, 2 replies; 8+ messages in thread
From: Jack Lau via ffmpeg-devel @ 2025-03-02  7:47 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: Jack Lau

fix ticket: 10786
parse the SPS from extradata and get profile_compatibility, tier, constraints which was been hard code before.

HEVC CODECS Attribute reference to: ISO/IEC14496-15
Signed-off-by: Jack Lau <jacklau1222@qq.com>
---
 libavformat/hlsenc.c | 37 ++++++++++++++++++++++++++++++++++---
 1 file changed, 34 insertions(+), 3 deletions(-)

diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c
index 6148685f40..be7a78021a 100644
--- a/libavformat/hlsenc.c
+++ b/libavformat/hlsenc.c
@@ -379,7 +379,10 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
     } else if (st->codecpar->codec_id == AV_CODEC_ID_HEVC) {
         uint8_t *data = st->codecpar->extradata;
         int profile = AV_PROFILE_UNKNOWN;
+        uint32_t profile_compatibility = AV_PROFILE_UNKNOWN; 
+        char tier = '0';
         int level = AV_LEVEL_UNKNOWN;
+        char constraints[5] = "0";
 
         if (st->codecpar->profile != AV_PROFILE_UNKNOWN)
             profile = st->codecpar->profile;
@@ -393,6 +396,8 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
                 uint8_t *rbsp_buf;
                 int remain_size = 0;
                 int rbsp_size = 0;
+                uint32_t profile_compatibility_flags = 0;
+                uint8_t high_nibble = 0;
                 /* skip start code + nalu header */
                 data += 6;
                 /* process by reference General NAL unit syntax */
@@ -406,8 +411,31 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
                 }
                 /* skip sps_video_parameter_set_id   u(4),
                  *      sps_max_sub_layers_minus1    u(3),
-                 *  and sps_temporal_id_nesting_flag u(1) */
+                 *  and sps_temporal_id_nesting_flag u(1) 
+                 * 
+                 * TIER represents the general_tier_flag, with 'L' indicating the flag is 0,
+                 * and 'H' indicating the flag is 1
+                 */
+                tier = (int)(rbsp_buf[1] & 0x20) == 0 ? 'L' : 'H';
                 profile = rbsp_buf[1] & 0x1f;
+                /* PROFILE_COMPATIBILITY is general_profile_compatibility_flags, but in reverse bit order,
+                 * in a hexadecimal representation (leading zeroes may be omitted).
+                 */
+                profile_compatibility_flags = (rbsp_buf[2] << 24) | (rbsp_buf[3] << 16) | (rbsp_buf[4] << 8) | rbsp_buf[5];
+                /* revise these bits to get the profile compatibility value */
+                for (int i = 0; i < 32; i++) {
+                    profile_compatibility = (profile_compatibility << 1) | (profile_compatibility_flags & 1);
+                    profile_compatibility_flags >>= 1;
+                }
+                /* skip 8 + 8 + 32
+                 * CONSTRAINTS is a hexadecimal representation of the general_constraint_indicator_flags. 
+                 * each byte is separated by a '.', and trailing zero bytes may be omitted.
+                 * drop the trailing zero bytes refer to ISO/IEC14496-15.
+                 */
+                high_nibble = rbsp_buf[7] >> 4;
+                snprintf(constraints, sizeof(constraints),
+                         high_nibble ? "%02x.%x" : "%02x",
+                         rbsp_buf[6], high_nibble);
                 /* skip 8 + 8 + 32 + 4 + 43 + 1 bit */
                 level = rbsp_buf[12];
                 av_freep(&rbsp_buf);
@@ -417,8 +445,11 @@ static void write_codec_attr(AVStream *st, VariantStream *vs)
         }
         if (st->codecpar->codec_tag == MKTAG('h','v','c','1') &&
             profile != AV_PROFILE_UNKNOWN &&
-            level != AV_LEVEL_UNKNOWN) {
-            snprintf(attr, sizeof(attr), "%s.%d.4.L%d.B01", av_fourcc2str(st->codecpar->codec_tag), profile, level);
+            profile_compatibility != AV_PROFILE_UNKNOWN &&
+            tier != '0' &&
+            level != AV_LEVEL_UNKNOWN &&
+            strcmp(constraints, "0") != 0) {
+            snprintf(attr, sizeof(attr), "%s.%d.%x.%c%d.%s", av_fourcc2str(st->codecpar->codec_tag), profile, profile_compatibility, tier, level, constraints);
         } else
             goto fail;
     } else if (st->codecpar->codec_id == AV_CODEC_ID_MP2) {
-- 
2.47.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] 8+ messages in thread

end of thread, other threads:[~2025-03-03  1:38 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-03-03  1:32 [FFmpeg-devel] [PATCH] avformat/hlsenc: fix CODECS Attribute hard code in hevc EXT-X-STREAM-INF Jack Lau via ffmpeg-devel
  -- strict thread matches above, loose matches on Subject: below --
2025-03-03  1:38 Jack Lau via ffmpeg-devel
2025-03-02 13:30 Jack Lau via ffmpeg-devel
2025-03-03  1:08 ` Steven Liu
2025-03-03  1:38   ` Jack Lau
2025-03-02  7:47 Jack Lau via ffmpeg-devel
2025-03-02 12:19 ` Steven Liu
2025-03-02 13:36 ` Jack Lau

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