Re: [FFmpeg-devel] [PATCH v3 2/2] avformat/rtmpproto: support enhanced rtmp

2023-08-26 Thread Marton Balint
On Sat, 26 Aug 2023, Steven Liu wrote: Marton Balint 于2023年8月26日周六 15:52写道: Hi Marton, [...] > >> +av_strlcpy(fourcc, fourcc_data, sizeof(fourcc)); >> +ff_amf_write_string(&p, fourcc); >> +} else { >> +av_log(s, AV_LO

Re: [FFmpeg-devel] [PATCH v3 2/2] avformat/rtmpproto: support enhanced rtmp

2023-08-26 Thread Steven Liu
Marton Balint 于2023年8月26日周六 15:52写道: Hi Marton, > > > > On Fri, 25 Aug 2023, Steven Liu wrote: > > > Steven Liu 于2023年8月25日周五 18:05写道: > >> > >> Add option named rtmp_enhanced_codec, > >> it would support hvc1,av01,vp09 now, > >> the fourcc is using Array of strings. > >> > >> Signed-off-by: Stev

Re: [FFmpeg-devel] [PATCH v3 2/2] avformat/rtmpproto: support enhanced rtmp

2023-08-26 Thread Marton Balint
On Fri, 25 Aug 2023, Steven Liu wrote: Steven Liu 于2023年8月25日周五 18:05写道: Add option named rtmp_enhanced_codec, it would support hvc1,av01,vp09 now, the fourcc is using Array of strings. Signed-off-by: Steven Liu --- doc/protocols.texi | 6 ++ libavformat/rtmpproto.c | 37 ++

Re: [FFmpeg-devel] [PATCH v3 2/2] avformat/rtmpproto: support enhanced rtmp

2023-08-25 Thread Steven Liu
Steven Liu 于2023年8月25日周五 18:05写道: > > Add option named rtmp_enhanced_codec, > it would support hvc1,av01,vp09 now, > the fourcc is using Array of strings. > > Signed-off-by: Steven Liu > --- > doc/protocols.texi | 6 ++ > libavformat/rtmpproto.c | 37 +++

[FFmpeg-devel] [PATCH v3 2/2] avformat/rtmpproto: support enhanced rtmp

2023-08-25 Thread Steven Liu
Add option named rtmp_enhanced_codec, it would support hvc1,av01,vp09 now, the fourcc is using Array of strings. Signed-off-by: Steven Liu --- doc/protocols.texi | 6 ++ libavformat/rtmpproto.c | 37 + 2 files changed, 43 insertions(+) diff --git a/