Merge pull request #940 in FS/freeswitch from ~J0SH/freeswitch:fs9404 to master

* commit '16162fd74797222c7a73a866fdd96e732b6f02d2':
  FS-9404 Handle sequence rollovers in mod_av handling of inbound H.263.
This commit is contained in:
Mike Jerris 2016-08-29 16:27:42 -05:00
commit 803464ca23
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;
}