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

This commit is contained in:
Stefano Sabatini 2012-01-14 00:19:59 +01:00
parent 4ad17bc76b
commit a5af29336a
1 changed files with 1 additions and 6 deletions

View File

@ -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;
}