Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: add error message for encrypt fmp4 mode

2018-04-15 Thread Steven Liu
> On 16 Apr 2018, at 13:56, Gyan Doshi wrote: > > On 4/16/2018 11:14 AM, Steven Liu wrote: > >> +av_log(s, AV_LOG_ERROR, "have not support encrypt fmp4 now\n"); > > Suggest "Encrypted fmp4 not yet supported\n” ok > >> av_log(s, AV_LOG_WARNING, "Cannot use both -hls_k

Re: [FFmpeg-devel] [PATCH] avformat/hlsenc: add error message for encrypt fmp4 mode

2018-04-15 Thread Gyan Doshi
On 4/16/2018 11:14 AM, Steven Liu wrote: +av_log(s, AV_LOG_ERROR, "have not support encrypt fmp4 now\n"); Suggest "Encrypted fmp4 not yet supported\n" av_log(s, AV_LOG_WARNING, "Cannot use both -hls_key_info_file and -hls_enc," " will use -hls_k

[FFmpeg-devel] [PATCH] avformat/hlsenc: add error message for encrypt fmp4 mode

2018-04-15 Thread Steven Liu
hlsenc have not support encrypty fmp4 yet now. Signed-off-by: Steven Liu --- libavformat/hlsenc.c | 5 + 1 file changed, 5 insertions(+) diff --git a/libavformat/hlsenc.c b/libavformat/hlsenc.c index c7540166ab..5c9e646962 100644 --- a/libavformat/hlsenc.c +++ b/libavformat/hlsenc.c @@ -159