[FFmpeg-devel] [PATCH] configure: fix mbedtls >=v3.5.0 link error on windows

2024-01-05 Thread Jay Zhang
Signed-off-by: Jay Zhang --- configure | 1 + 1 file changed, 1 insertion(+) diff --git a/configure b/configure index 0b5e83bd20..31dc29ca16 100755 --- a/configure +++ b/configure @@ -6930,6 +6930,7 @@ enabled libxml2 && require_pkg_config libxml2 libxml-2.0 libxml2/libxm

[FFmpeg-devel] [PATCH] avformat/movenc: fix safari cannot play generated hls due to empty sdtp atom

2023-11-18 Thread Jay Zhang
This issue can be reproduced by command 'ffmpeg -i small_bunny_1080p_60fps.mp4 -an -c:v libx265 -tag:v hvc1 -f hls -hls_segment_type fmp4 out.m3u8'. After remove the empty sdtp atom, safari can play the out.m3u8 properly. Signed-off-by: Jay Zhang --- libavformat/movenc.c | 2