mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-27 09:43:34 +00:00
avformat/hlsenc: more robust error tests
errors are negative throughout ffmpeg Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
6abf00d615
commit
aa6545e1f3
@ -395,7 +395,7 @@ static int hls_write_header(AVFormatContext *s)
|
|||||||
fail:
|
fail:
|
||||||
|
|
||||||
av_dict_free(&options);
|
av_dict_free(&options);
|
||||||
if (ret) {
|
if (ret < 0) {
|
||||||
av_freep(&hls->basename);
|
av_freep(&hls->basename);
|
||||||
if (hls->avf)
|
if (hls->avf)
|
||||||
avformat_free_context(hls->avf);
|
avformat_free_context(hls->avf);
|
||||||
@ -438,7 +438,7 @@ static int hls_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
hls->size = new_start_pos - hls->start_pos;
|
hls->size = new_start_pos - hls->start_pos;
|
||||||
ret = hls_append_segment(hls, hls->duration, hls->start_pos, hls->size);
|
ret = hls_append_segment(hls, hls->duration, hls->start_pos, hls->size);
|
||||||
hls->start_pos = new_start_pos;
|
hls->start_pos = new_start_pos;
|
||||||
if (ret)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
hls->end_pts = pkt->pts;
|
hls->end_pts = pkt->pts;
|
||||||
@ -454,7 +454,7 @@ static int hls_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
ret = hls_start(s);
|
ret = hls_start(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ret)
|
if (ret < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
oc = hls->avf;
|
oc = hls->avf;
|
||||||
|
Loading…
Reference in New Issue
Block a user