[FFmpeg-devel] [PATCH] avformat/flvenc: fix missing sequence start with MP3 tracks

2025-01-05 Thread Alessandro Ros
. Signed-off-by: Alessandro Ros --- libavformat/flvenc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index f3f32dc433..fcf6acc51f 100644 --- a/libavformat/flvenc.c +++ b/libavformat/flvenc.c @@ -807,6 +807,7 @@ static void flv_write_codec_header

[FFmpeg-devel] [PATCH] flv: fix stereo flag when writing PCMA/PCMU

2024-01-21 Thread Alessandro Ros
takes into consideration the right channel count and sample rate. Signed-off-by: Alessandro Ros --- libavformat/flvenc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libavformat/flvenc.c b/libavformat/flvenc.c index 874560fac1..772d891136 100644 --- a/libavformat

[FFmpeg-devel] [PATCH v2] avformat/vpcc: fix VP9 metadata in FLV and RTMP

2023-09-03 Thread Alessandro Ros
currently returns invalid boxes, that are lacking the Version and Flag fields, inherited from FullBox. For some reason, both flags were being added manually in movenc. This patch fixes the issue. Signed-off-by: Alessandro Ros --- libavformat/movenc.c | 3 --- libavformat/vpcc.c | 2 ++ 2 files

[FFmpeg-devel] [PATCH v2] avformat/vpcc: fix VP9 metadata in FLV and RTMP

2023-09-03 Thread Alessandro Ros
currently returns invalid boxes, that are lacking the Version and Flag fields, inherited from FullBox. For some reason, both flags were being added manually in movenc. This patch fixes the issue. Signed-off-by: Alessandro Ros --- libavformat/movenc.c | 3 --- libavformat/vpcc.c | 2 ++ 2 files

[FFmpeg-devel] [PATCH] avformat/vpcc: fix vpcC generation for RTMP

2023-09-02 Thread Alessandro Ros
and Flag fields, inherited from FullBox. For some reason, both flags were being added manually in movenc. This patch fixes the issue. Signed-off-by: Alessandro Ros --- libavformat/movenc.c | 3 --- libavformat/vpcc.c | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a

[FFmpeg-devel] [PATCH] avformat/vpcc: fix vpcC generation for RTMP

2023-09-02 Thread Alessandro Ros
and Flag fields, inherited from FullBox. For some reason, both flags were being added manually in movenc. This patch fixes the issue. Signed-off-by: Alessandro Ros --- libavformat/movenc.c | 3 --- libavformat/vpcc.c | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a