Skip to content

Commit

Permalink
Merge branch 'master' of github.com:gopro/gpmf-parser
Browse files Browse the repository at this point in the history
  • Loading branch information
dnewman-gpsw committed Aug 17, 2017
2 parents 973c59e + 41894ed commit d0e6c08
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ As of April 2017, only GoPro HERO5 cameras have a GPMF track. HERO4 Black will h
| --- | --- | --- | --- | --- |
| ACCL | 3-axis accelerometer | 200 | m/s² | All HERO5 cameras |
| GYRO | 3-axis gyroscope | 400 | rad/s | All HERO5 cameras |
| GPS5 | latitude, longitude, altitude, 2D ground speed, and 3D speed | 18 | deg, deg, m, m/s, m/s | HERO5 Black with GPS enabled |
| GPS5 | latitude, longitude, altitude (WGS 84), 2D ground speed, and 3D speed | 18 | deg, deg, m, m/s, m/s | HERO5 Black with GPS enabled |
| GPSU | UTC time and data from GPS | 1 | n/a | Within the GPS stream |
| GPSF | GPS Fix | 1 | n/a | Within the GPS stream: 0 - no lock, 2 or 3 - 2D or 3D Lock |
| GPSP | GPS Precision - Dilution of Precision (DOP x100) | 1 | n/a | Within the GPS stream, under 500 is good |
Expand Down
3 changes: 2 additions & 1 deletion demo/GPMF_mp4reader.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,8 @@ float OpenGPMFSource(char *filename) //RAW or within MP4

if (fp)
{
uint32_t tag, qttag, qtsize32, len, skip, type = 0, subtype = 0, num;
uint32_t tag, qttag, qtsize32, skip, type = 0, subtype = 0, num;
size_t len;
int32_t nest = 0;
uint64_t nestsize[64] = { 0 };
uint64_t lastsize = 0, qtsize;
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -472,7 +472,7 @@ As of April 2017, only GoPro HERO5 cameras have a GPMF track. HERO4 Black will h
| --- | --- | --- | --- | --- |
| ACCL | 3-axis accelerometer | 200 | m/s² | All HERO5 cameras |
| GYRO | 3-axis gyroscope | 400 | rad/s | All HERO5 cameras |
| GPS5 | latitude, longitude, altitude, 2D ground speed, and 3D speed | 18 | deg, deg, m, m/s, m/s | HERO5 Black with GPS enabled |
| GPS5 | latitude, longitude, altitude (WGS 84), 2D ground speed, and 3D speed | 18 | deg, deg, m, m/s, m/s | HERO5 Black with GPS enabled |
| GPSU | UTC time and data from GPS | 1 | n/a | Within the GPS stream |
| GPSF | GPS Fix | 1 | n/a | Within the GPS stream: 0 - no lock, 2 or 3 - 2D or 3D Lock |
| GPSP | GPS Precision - Dilution of Precision (DOP x100) | 1 | n/a | Within the GPS stream, under 500 is good |
Expand Down

0 comments on commit d0e6c08

Please sign in to comment.