On 8/1/2017 4:57 PM, Steven Liu wrote:
> add byterange mode of the hls fmp4
> 
> Signed-off-by: Steven Liu <l...@onvideo.cn>
> ---
>  libavformat/hlsenc.c | 83 
> +++++++++++++++++++++++++++++++++-------------------
>  1 file changed, 53 insertions(+), 30 deletions(-)

[...]

> +        if (hls->max_seg_size > 0) {
> +            av_log(s, AV_LOG_WARNING, "Have not support multiple fmp4 
> byterange mode file in hls yet now\n");
> +            return AVERROR_PATCHWELCOME;
> +        }

Not entirely sure what this message is trying to say?

Is this accurate: "Multi-file byterange moe is currently unsupported in the HLS 
muxer." ?

> -    int byterange_mode = (hls->flags & HLS_SINGLE_FILE) || 
> (hls->max_seg_size > 0);
> +    int byterange_mode = ((hls->flags & HLS_SINGLE_FILE) || 
> (hls->max_seg_size > 0));

Doesn't change anything, as far as I can tell?

Rest is OK, I think.

- Derek
_______________________________________________
ffmpeg-devel mailing list
ffmpeg-devel@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel

Reply via email to