Commit a5af2933 authored by Stefano Sabatini's avatar Stefano Sabatini

lavf/segment: slightly simplify fail logic in seg_write_packet()

parent 4ad17bc7
......@@ -213,12 +213,7 @@ static int seg_write_packet(AVFormatContext *s, AVPacket *pkt)
av_log(s, AV_LOG_DEBUG, "Next segment starts at %d %"PRId64"\n",
pkt->stream_index, pkt->pts);
ret = segment_end(s);
if (!ret)
ret = segment_start(s);
if (ret)
if ((ret = segment_end(s)) < 0 || (ret = segment_start(s)) < 0)
goto fail;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment