Re: [FFmpeg-devel] [PATCH] [GSoC v3 1/7] avformat/abr: Adaptive Bitrate support

2020-09-03 Thread Steven Liu
> 在 2020年8月23日,20:23,Hongcheng Zhong 写道: > > From: spartazhc > > Add abr module for hls/dash. > > Signed-off-by: spartazhc > > v1 fixed: > 1. add an "ff" prefix to the protocol name to mark it internal. > 2. use 1.2f for float constant 1.2. > 3. simplify abr_seek for we just need AVSEEK_SI

Re: [FFmpeg-devel] [PATCH] [GSoC v3 1/7] avformat/abr: Adaptive Bitrate support

2020-08-23 Thread Hongcheng Zhong
My GSoC project is “ABR meets FFmpeg” which aim to add an ABR module to FFmpeg. Report in brief: Describe my work briefly - Implement ABR module for FFmpeg: ffabr protocol. - Use ffabr protocol in hls, support a switch mechanism. - Test the hls with abr in ffplay. What is done - Added a inter

[FFmpeg-devel] [PATCH] [GSoC v3 1/7] avformat/abr: Adaptive Bitrate support

2020-08-23 Thread Hongcheng Zhong
From: spartazhc Add abr module for hls/dash. Signed-off-by: spartazhc v1 fixed: 1. add an "ff" prefix to the protocol name to mark it internal. 2. use 1.2f for float constant 1.2. 3. simplify abr_seek for we just need AVSEEK_SIZE only. v2 fixed: 1. fix error return 2. simplify abr_seek v3 fi