about MAX_FO_COUNT

Asked by qingbaibai

hello,

I find that when the compressor is in FO state, it will send MAX_FO_COUNT times of IR-DYN packets. However, it seems that it sends UOR-2 packet in FO state only once and then the compressor transits to SO state. Is there something I misunderstand? Thank you.

qingbaibai

Question information

Language:
English Edit question
Status:
Solved
For:
rohc Edit question
Assignee:
No assignee Edit question
Solved by:
Didier Barvaux
Solved:
Last query:
Last reply:
Revision history for this message
Best Didier Barvaux (didier-barvaux) said :
#1

Hello,

The transition logic between IR, FO and SO states is defined by the decide_state() function. See
http://bazaar.launchpad.net/~didier-barvaux/rohc/1.3.x/view/head:/src/comp/c_generic.c#L2273 .

At least MAX_IR_COUNT packets must be sent in IR state before going into FO state.
At least MAX_FO_COUNT packets must be sent in FO state before going into SO state.

Regards,
Didier

Revision history for this message
qingbaibai (sunqing-cztz) said :
#2

Thank you.