From: Steven Liu <lingjiujianke@gmail.com> To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Cc: Steven Liu <lq@chinaffmpeg.org> Subject: Re: [FFmpeg-devel] [PATCH v2 2/2] avformat/rtmpproto: support enhanced rtmp Date: Fri, 25 Aug 2023 17:11:52 +0800 Message-ID: <CADxeRwmzCS-pZ8CoWZDLD0t9VQEY1fBv4ejUbtxqKOphbUw==Q@mail.gmail.com> (raw) In-Reply-To: <60982037-99ea-942-76ad-59f1238c631d@martin.st> Martin Storsjö <martin@martin.st> 于2023年8月25日周五 17:04写道: > > On Fri, 25 Aug 2023, Steven Liu wrote: > > > 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 <lq@chinaffmpeg.org> > > --- > > doc/protocols.texi | 6 ++++++ > > libavformat/rtmpproto.c | 35 +++++++++++++++++++++++++++++++++++ > > 2 files changed, 41 insertions(+) > > > > diff --git a/doc/protocols.texi b/doc/protocols.texi > > index b3fad55591..bd2b25e502 100644 > > --- a/doc/protocols.texi > > +++ b/doc/protocols.texi > > @@ -896,6 +896,12 @@ be named, by prefixing the type with 'N' and specifying the name before > > the value (i.e. @code{NB:myFlag:1}). This option may be used multiple > > times to construct arbitrary AMF sequences. > > > > +@item rtmp_enhanced_codecs > > +Specify the list of codecs the client advertises to support in an > > +enhanced RTMP stream. This option should set a string like @code{hvc1,av01,vp09} > > +for multiple codecs, or @code{hvc1} for only one codec, > > +set codec fourcc into fourCcLive property into Connect Command Message, > > + > > @item rtmp_flashver > > Version of the Flash plugin used to run the SWF player. The default > > is LNX 9,0,124,2. (When publishing, the default is FMLE/3.0 (compatible; > > diff --git a/libavformat/rtmpproto.c b/libavformat/rtmpproto.c > > index f0ef223f05..ea25454362 100644 > > --- a/libavformat/rtmpproto.c > > +++ b/libavformat/rtmpproto.c > > @@ -127,6 +127,7 @@ typedef struct RTMPContext { > > int nb_streamid; ///< The next stream id to return on createStream calls > > double duration; ///< Duration of the stream in seconds as returned by the server (only valid if non-zero) > > int tcp_nodelay; ///< Use TCP_NODELAY to disable Nagle's algorithm if set to 1 > > + char *enhanced_codecs; ///< codec list in enhanced rtmp > > char username[50]; > > char password[50]; > > char auth_params[500]; > > @@ -336,6 +337,39 @@ static int gen_connect(URLContext *s, RTMPContext *rt) > > ff_amf_write_field_name(&p, "app"); > > ff_amf_write_string2(&p, rt->app, rt->auth_params); > > > > + if (rt->enhanced_codecs) { > > + uint32_t list_len = 0; > > + char *fourcc_data = rt->enhanced_codecs; > > + int fourcc_str_len = strlen(fourcc_data); > > + > > + // check the string, fourcc + ',' + ... + end fourcc correct length should be (4+1)*n+4 > > + if ((fourcc_str_len + 1) % 5 != 0) > > + return AVERROR(EINVAL); > > If we trigger this error, we definitely should tell the user what was > wrong. 'Malformed rtmp_enhanched_codecs, should be of the form > "fourcc[,fourcc..]"' or something like that? (Would it be better to use > "frcc" or just "hvc1" or something else there, to show that it needs to be > exactly a four char string for each element?) Agreed > > > + > > + list_len = (fourcc_str_len + 1) / 5; > > + // write the fourCcList field name > > + ff_amf_write_field_name(&p, "fourCcList"); > > + > > + // write the fourcc array length > > + ff_amf_write_array_start(&p, list_len); > > + > > + while(fourcc_data - rt->enhanced_codecs < fourcc_str_len) { > > + unsigned char fourcc[5]; > > + switch (AV_RN32(fourcc_data)) { > > + case MKTAG('h', 'v', 'c', '1'): > > This feels a bit convoluted to use AV_RN32 + MKTAG on data that is already > just a string - just using strncmp(fourcc_data, "hvc1", 4) would work just I want use strncmp at first, but i think strncmp will slower than switch uint32_t value, so i chose use uint32_t. or should i use strncmp? > as well. That doesn't fit quite as neatly into a switch, but would be a > more unwieldy if statement though. > > > + case MKTAG('a', 'v', '0', '1'): > > + case MKTAG('v', 'p', '0', '9'): > > + av_strlcpy(fourcc, fourcc_data, sizeof(fourcc)); > > + ff_amf_write_string(&p, fourcc); > > + break; > > + default: > > When this fails, the user definitely needs to know what was wrong, so we > should print the string that didn't match the expectation. E.g. > ("unsupported codec fourcc, %.*s", 4, fourcc_data) or something like that? good suggestion. > > // Martin > > _______________________________________________ > 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". _______________________________________________ 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".
next prev parent reply other threads:[~2023-08-25 9:12 UTC|newest] Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top 2023-08-24 5:32 [FFmpeg-devel] [PATCH v1 1/2] avformat/rtmppkt: add ff_amf_write_array for write array strings Steven Liu 2023-08-24 5:32 ` [FFmpeg-devel] [PATCH v1 2/2] avformat/rtmpproto: support enhanced rtmp Steven Liu 2023-08-24 20:10 ` Tristan Matthews 2023-08-24 21:45 ` Marton Balint 2023-08-25 5:30 ` [FFmpeg-devel] [PATCH v2 1/2] avformat/rtmppkt: add ff_amf_write_array for write array strings Steven Liu 2023-08-25 5:30 ` [FFmpeg-devel] [PATCH v2 2/2] avformat/rtmpproto: support enhanced rtmp Steven Liu 2023-08-25 9:04 ` Martin Storsjö 2023-08-25 9:11 ` Steven Liu [this message] 2023-08-25 9:38 ` Martin Storsjö 2023-08-25 10:00 ` Steven Liu 2023-08-25 10:06 ` Martin Storsjö 2023-08-25 10:05 ` [FFmpeg-devel] [PATCH v3 1/2] avformat/rtmppkt: add ff_amf_write_array for write Steven Liu 2023-08-25 10:05 ` [FFmpeg-devel] [PATCH v3 2/2] avformat/rtmpproto: support enhanced rtmp Steven Liu 2023-08-25 10:09 ` Steven Liu 2023-08-26 7:49 ` Marton Balint 2023-08-26 8:28 ` Steven Liu 2023-08-26 9:25 ` Marton Balint 2023-08-28 2:00 ` [FFmpeg-devel] [PATCH v4 1/2] avformat/rtmppkt: add ff_amf_write_array for write Steven Liu 2023-08-28 2:00 ` [FFmpeg-devel] [PATCH v4 2/2] avformat/rtmpproto: support enhanced rtmp Steven Liu 2023-08-28 19:33 ` Marton Balint 2023-08-29 1:06 ` Steven Liu 2023-08-25 5:33 ` [FFmpeg-devel] [PATCH v1 " Steven Liu 2023-08-25 5:32 ` Steven Liu 2023-08-24 20:47 ` [FFmpeg-devel] [PATCH v1 1/2] avformat/rtmppkt: add ff_amf_write_array for write array strings Marton Balint
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to='CADxeRwmzCS-pZ8CoWZDLD0t9VQEY1fBv4ejUbtxqKOphbUw==Q@mail.gmail.com' \ --to=lingjiujianke@gmail.com \ --cc=ffmpeg-devel@ffmpeg.org \ --cc=lq@chinaffmpeg.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
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