<div dir="ltr">I've attached a log file which we've simulated with our drone. <div>It seems like the only way to create a log file with version 14 is by using the DJI iOS sdk version 4.13.1 in a 3rd party app and not directly through the Go app, but I still need to verify this. I'll be able to create a larger log file this week.<div>Happy to hear any insights</div></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Thu, Dec 3, 2020 at 1:02 PM Ross Finlayson <<a href="mailto:finlayson@live555.com">finlayson@live555.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
<br>
> On Dec 3, 2020, at 11:47 PM, Dennis Derichs <<a href="mailto:harms.dennis@gmail.com" target="_blank">harms.dennis@gmail.com</a>> wrote:<br>
> <br>
> FWIW, I've noticed that since version 12 the order of the file sections has changed.<br>
<br>
We already account for this.  Note the following code from “djiparsetxt.cpp” (see <a href="http://djilogs.live555.com/doxygen/html/djiparsetxt_8cpp_source.html" rel="noreferrer" target="_blank">http://djilogs.live555.com/doxygen/html/djiparsetxt_8cpp_source.html</a> ):<br>
<br>
  // Newer versions of the file have a different order:<br>
  u_int64_t computedFileSize;<br>
  if (fileVersionNumber >= 0x0C) {<br>
  // Order is "header";"details area";"records area"<br>
  recordsAreaStart = headerSize + detailsAreaSize;<br>
  detailsAreaStart = headerSize;<br>
  detailsAreaEnd = detailsAreaStart + detailsAreaSize;<br>
<br>
  computedFileSize = recordsAreaEnd;<br>
  } else {<br>
  // Order is "header";"records area";"details area"<br>
  recordsAreaStart = headerSize;<br>
  detailsAreaStart = recordsAreaEnd;<br>
  detailsAreaEnd = detailsAreaStart + detailsAreaSize;<br>
<br>
  computedFileSize = detailsAreaEnd;<br>
  }<br>
<br>
<br>
Ross Finlayson<br>
Live Networks, Inc.<br>
<a href="http://www.live555.com/" rel="noreferrer" target="_blank">http://www.live555.com/</a><br>
<br>
<br>
-- <br>
DJI-log-discuss mailing list<br>
<a href="mailto:DJI-log-discuss@lists.live555.com" target="_blank">DJI-log-discuss@lists.live555.com</a><br>
<a href="http://ns.live555.com/mailman/listinfo/dji-log-discuss" rel="noreferrer" target="_blank">http://ns.live555.com/mailman/listinfo/dji-log-discuss</a><br>
</blockquote></div>