[FFmpeg-devel] [PATCH 2/3] avformat/hls: Remove redundant resetting of AVPacket
Steven Liu
lingjiujianke at gmail.com
Mon Aug 17 03:46:21 EEST 2020
Andreas Rheinhardt <andreas.rheinhardt at gmail.com> 于2020年8月15日周六 上午5:20写道:
>
> av_read_frame() already returns blank packets on error.
>
> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at gmail.com>
> ---
> libavformat/hls.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/libavformat/hls.c b/libavformat/hls.c
> index 4a3e0d6842..8217c5ede4 100644
> --- a/libavformat/hls.c
> +++ b/libavformat/hls.c
> @@ -2162,7 +2162,6 @@ static int hls_read_packet(AVFormatContext *s, AVPacket *pkt)
> if (ret < 0) {
> if (!avio_feof(&pls->pb) && ret != AVERROR_EOF)
> return ret;
> - reset_packet(&pls->pkt);
> break;
> } else {
> /* stream_index check prevents matching picture attachments etc. */
> --
> 2.20.1
>
> _______________________________________________
> 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".
LGTM
Thanks
Steven
More information about the ffmpeg-devel
mailing list