[FFmpeg-devel] [PATCH v2 1/2] avformat/dashdec: check init_section before use it.

Steven Liu lq at chinaffmpeg.org
Wed Jan 27 04:50:15 EET 2021



> 2021年1月18日 下午2:22,liuqi05 <liuqi05 at kuaishou.com> 写道:
> 
> because there have no Initialization in SegmentTemplate,
> so it will have no init_section for init segment file.
> but in the is_common_init_section_exist function it will be used for
> check to url, url_offset and size, so check init_section
> before use init_section.
> And fix code style in is_common_init_section_exist,
> make the code block short when it too long.
> 
> fix ticket: 9062
> 
> Signed-off-by: liuqi05 <liuqi05 at kuaishou.com>
> ---
> libavformat/dashdec.c | 7 ++++++-
> 1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c
> index 693fc7372b..9262e9c0a4 100644
> --- a/libavformat/dashdec.c
> +++ b/libavformat/dashdec.c
> @@ -1992,7 +1992,12 @@ static int is_common_init_section_exist(struct representation **pls, int n_pls)
>     url_offset = first_init_section->url_offset;
>     size = pls[0]->init_section->size;
>     for (i=0;i<n_pls;i++) {
> -        if (av_strcasecmp(pls[i]->init_section->url,url) || pls[i]->init_section->url_offset != url_offset || pls[i]->init_section->size != size) {
> +        if (!pls[i]->init_section)
> +            continue;
> +
> +        if (av_strcasecmp(pls[i]->init_section->url, url) ||
> +            pls[i]->init_section->url_offset != url_offset ||
> +            pls[i]->init_section->size != size) {
>             return 0;
>         }
>     }
> -- 
> 2.25.0
> 
> 
> 
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
> 
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".


Ping.

Thanks

Steven Liu





More information about the ffmpeg-devel mailing list