Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
 help / color / mirror / Atom feed
* Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/whip: Add WHIP muxer support for subsecond latency streaming
       [not found] <20250604031729.35EB5412833@natalya.videolan.org>
@ 2025-06-04 14:05 ` Martin Storsjö
  2025-06-04 15:34   ` compn
  2025-06-04 16:30   ` Jack Lau
  0 siblings, 2 replies; 3+ messages in thread
From: Martin Storsjö @ 2025-06-04 14:05 UTC (permalink / raw)
  To: ffmpeg-devel; +Cc: lingjiujianke

On Wed, 4 Jun 2025, Jack Lau wrote:

> ffmpeg | branch: master | Jack Lau <jacklau1222@qq.com> | Fri May 16 20:15:05 2025 +0800| [167e343bbe75515a80db8ee72ffa0c607c944a00] | committer: Steven Liu
>
> avformat/whip: Add WHIP muxer support for subsecond latency streaming

This breaks compilation with OpenSSL 1.1.1t:

src/libavformat/tls_openssl.c:1019:22: error: no member named 'dtls_eckey' 
in 'struct TLSContext'
  1019 |     EC_KEY_free(ctx->dtls_eckey);
       |                 ~~~  ^

So this change does require some configure checks or source level version 
checks to see if we have a new enough version of OpenSSL to do what this 
does.

// 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".

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/whip: Add WHIP muxer support for subsecond latency streaming
  2025-06-04 14:05 ` [FFmpeg-devel] [FFmpeg-cvslog] avformat/whip: Add WHIP muxer support for subsecond latency streaming Martin Storsjö
@ 2025-06-04 15:34   ` compn
  2025-06-04 16:30   ` Jack Lau
  1 sibling, 0 replies; 3+ messages in thread
From: compn @ 2025-06-04 15:34 UTC (permalink / raw)
  To: ffmpeg-devel

On Wed, 4 Jun 2025 17:05:23 +0300 (EEST), Martin Storsjö wrote:

> On Wed, 4 Jun 2025, Jack Lau wrote:
> 
> > ffmpeg | branch: master | Jack Lau <jacklau1222@qq.com> | Fri May 16 20:15:05 2025 +0800| [167e343bbe75515a80db8ee72ffa0c607c944a00] | committer: Steven Liu
> >
> > avformat/whip: Add WHIP muxer support for subsecond latency streaming  
> 
> This breaks compilation with OpenSSL 1.1.1t:
> 
> src/libavformat/tls_openssl.c:1019:22: error: no member named 'dtls_eckey' 
> in 'struct TLSContext'
>   1019 |     EC_KEY_free(ctx->dtls_eckey);
>        |                 ~~~  ^
> 
> So this change does require some configure checks or source level version 
> checks to see if we have a new enough version of OpenSSL to do what this 
> does.
> 

probably time to upgrade openssl, too.

Sep 13, 2023 The OpenSSL Project has ended the long-term support for version 1.1.1

https://www.theregister.com/2023/09/12/openssl_111_end_of_life/

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

* Re: [FFmpeg-devel] [FFmpeg-cvslog] avformat/whip: Add WHIP muxer support for subsecond latency streaming
  2025-06-04 14:05 ` [FFmpeg-devel] [FFmpeg-cvslog] avformat/whip: Add WHIP muxer support for subsecond latency streaming Martin Storsjö
  2025-06-04 15:34   ` compn
@ 2025-06-04 16:30   ` Jack Lau
  1 sibling, 0 replies; 3+ messages in thread
From: Jack Lau @ 2025-06-04 16:30 UTC (permalink / raw)
  To: FFmpeg development discussions and patches



> On Jun 4, 2025, at 22:05, Martin Storsjö <martin@martin.st> wrote:
> 
> On Wed, 4 Jun 2025, Jack Lau wrote:
> 
>> ffmpeg | branch: master | Jack Lau <jacklau1222@qq.com> | Fri May 16 20:15:05 2025 +0800| [167e343bbe75515a80db8ee72ffa0c607c944a00] | committer: Steven Liu
>> 
>> avformat/whip: Add WHIP muxer support for subsecond latency streaming
> 
> This breaks compilation with OpenSSL 1.1.1t:
> 
> src/libavformat/tls_openssl.c:1019:22: error: no member named 'dtls_eckey' in 'struct TLSContext'
> 1019 |     EC_KEY_free(ctx->dtls_eckey);
>      |                 ~~~  ^
> 

> So this change does require some configure checks or source level version checks to see if we have a new enough version of OpenSSL to do what this does.
Sry about that, I’ve fix this issue in latest patch.
We support openssl versions > 1.0.1k, you can find it in configure checks, I’ll check other openssl versions if works well.

Thanks for your reminder!
Jack
> 
> // 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".

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-06-04 16:31 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20250604031729.35EB5412833@natalya.videolan.org>
2025-06-04 14:05 ` [FFmpeg-devel] [FFmpeg-cvslog] avformat/whip: Add WHIP muxer support for subsecond latency streaming Martin Storsjö
2025-06-04 15:34   ` compn
2025-06-04 16:30   ` 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