Commit f94b4f16 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/mpegts: Simplify score compare

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 0a84ba26
......@@ -620,16 +620,16 @@ static int get_packet_size(AVFormatContext* s)
av_log(s, AV_LOG_TRACE, "Probe: %d, score: %d, dvhs_score: %d, fec_score: %d \n",
buf_size, score, dvhs_score, fec_score);
margin = mid_pred(score, fec_score, dvhs_score);
if (buf_size < PROBE_PACKET_MAX_BUF)
margin = PROBE_PACKET_MARGIN; /*if buffer not filled */
else
margin = 0;
margin += PROBE_PACKET_MARGIN; /*if buffer not filled */
if (score > FFMAX(fec_score, dvhs_score) + margin)
if (score > margin)
return TS_PACKET_SIZE;
else if (dvhs_score > FFMAX(score, fec_score) + margin)
else if (dvhs_score > margin)
return TS_DVHS_PACKET_SIZE;
else if (fec_score > FFMAX(score, dvhs_score) + margin)
else if (fec_score > margin)
return TS_FEC_PACKET_SIZE;
}
return AVERROR_INVALIDDATA;
......
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