FS-9404 Handle sequence rollovers in mod_av handling of inbound H.263.

This commit is contained in:
Josh Allmann 2016-08-04 19:50:43 +00:00
parent 4b068cf13a
commit 16162fd747
1 changed files with 1 additions and 4 deletions

View File

@ -342,10 +342,7 @@ static switch_status_t buffer_h263_packets(h264_codec_context_t *context, switch
}
}
// return SWITCH_STATUS_RESTART;
} else if (delta < 1) {
// probabaly stream changed
return SWITCH_STATUS_RESTART;
} else { // delta == 1
} else {
context->last_seq = frame->seq;
}