I have follow code same as it is on different lines:
frame_rate = (float)
( ( ( frames * media_timescale) + \ //WHY???
( media_duration >> 1 ) ) /
media_duration);
I am not understanding what is backslash doing in source file ? Also to calculate the frame rate simply we can do as follow:
frame_rate = (float) ( ( frames * media_timescale) / media_duration);
Is there any specific intention to write first type of code?