├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── build-issue.md │ └── feature_request.md ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── assets ├── fonts │ ├── Helvetica-Bold.ttf │ ├── Helvetica-BoldOblique.ttf │ ├── Helvetica-Oblique.ttf │ ├── Helvetica.ttf │ ├── helvetica-compressed-5871d14b6903a.otf │ ├── helvetica-light-587ebe5a59211.ttf │ └── helvetica-rounded-bold-5871d05ead8de.otf ├── gpx2video-qt.png ├── legend.png ├── linux.png ├── marker │ ├── end.png │ ├── position.png │ └── start.png ├── overview.png ├── picto.png └── picto │ ├── DataOverlay_icn_acceleration.png │ ├── DataOverlay_icn_apparentWindAngle.png │ ├── DataOverlay_icn_avgspeed.png │ ├── DataOverlay_icn_aviationAltitude.png │ ├── DataOverlay_icn_aviation_slipskid.png │ ├── DataOverlay_icn_aviation_turnrate.png │ ├── DataOverlay_icn_boatDrift.png │ ├── DataOverlay_icn_cadence.png │ ├── DataOverlay_icn_compass.png │ ├── DataOverlay_icn_date.png │ ├── DataOverlay_icn_distance.png │ ├── DataOverlay_icn_duration.png │ ├── DataOverlay_icn_elevation.png │ ├── DataOverlay_icn_engineFuelRate.png │ ├── DataOverlay_icn_engineTorque.png │ ├── DataOverlay_icn_engine_load.png │ ├── DataOverlay_icn_engine_rpm.png │ ├── DataOverlay_icn_gforce.png │ ├── DataOverlay_icn_grade.png │ ├── DataOverlay_icn_hangtime.png │ ├── DataOverlay_icn_heartrate.png │ ├── DataOverlay_icn_jumps.png │ ├── DataOverlay_icn_laps.png │ ├── DataOverlay_icn_massAirFlowRate.png │ ├── DataOverlay_icn_maxspeed.png │ ├── DataOverlay_icn_pitch.png │ ├── DataOverlay_icn_position.png │ ├── DataOverlay_icn_power.png │ ├── DataOverlay_icn_rotations.png │ ├── DataOverlay_icn_speed.png │ ├── DataOverlay_icn_speedOverWater.png │ ├── DataOverlay_icn_stanceTime.png │ ├── DataOverlay_icn_temp.png │ ├── DataOverlay_icn_temperature.png │ ├── DataOverlay_icn_time.png │ ├── DataOverlay_icn_verticalOscillation.png │ ├── DataOverlay_icn_waterDepth.png │ ├── DataOverlay_icn_waterTemperature.png │ └── DataOverlay_icn_wind_speed.png ├── cmake └── FindOpenImageIO.cmake ├── docker └── Dockerfile ├── gpxlib ├── Algorithm.cpp ├── Algorithm.h ├── Bounds.cpp ├── Bounds.h ├── CMakeLists.txt ├── Copyright.cpp ├── Copyright.h ├── DGPSStation.cpp ├── DGPSStation.h ├── DateTime.cpp ├── DateTime.h ├── Decimal.cpp ├── Decimal.h ├── Degrees.cpp ├── Degrees.h ├── EMail.cpp ├── EMail.h ├── Extensions.cpp ├── Extensions.h ├── Fix.cpp ├── Fix.h ├── GPX.cpp ├── GPX.h ├── Latitude.cpp ├── Latitude.h ├── Link.cpp ├── Link.h ├── List.h ├── Longitude.cpp ├── Longitude.h ├── Metadata.cpp ├── Metadata.h ├── Node.cpp ├── Node.h ├── PT.cpp ├── PT.h ├── PTSeg.cpp ├── PTSeg.h ├── Parser.cpp ├── Parser.h ├── Person.cpp ├── Person.h ├── RTE.cpp ├── RTE.h ├── Report.cpp ├── Report.h ├── ReportCerr.cpp ├── ReportCerr.h ├── String.cpp ├── String_.h ├── TRK.cpp ├── TRK.h ├── TRKSeg.cpp ├── TRKSeg.h ├── URI.cpp ├── URI.h ├── Unsigned.cpp ├── Unsigned.h ├── WPT.cpp ├── WPT.h ├── Writer.cpp ├── Writer.h └── export.h ├── gtk ├── CMakeLists.txt ├── README.md ├── cmake │ ├── BuildTargetScript.cmake │ ├── CompileGResources.cmake │ ├── FindOpenImageIO.cmake │ ├── GenerateGXML.cmake │ └── GlibCompileResourcesSupport.cmake ├── data │ ├── com.progweb.gpx2video.desktop │ ├── com.progweb.gpx2video.desktop.in │ └── overview.png ├── icons │ ├── 48x48 │ │ └── apps │ │ │ └── com.progweb.gpx2video.png │ ├── CMakeLists.txt │ ├── com.progweb.gpx2video.svg │ ├── icon_res.gresource.xml │ └── scalable │ │ └── apps │ │ ├── com.progweb.gpx2video.svg │ │ └── gpx2video.svg └── src │ ├── CMakeLists.txt │ ├── about.cpp │ ├── about.h │ ├── application.cpp │ ├── application.h │ ├── area.cpp │ ├── area.h │ ├── audiodevice.cpp │ ├── audiodevice.h │ ├── compat.h │ ├── gl │ ├── glarea-gl.fs.glsl │ ├── glarea-gl.vs.glsl │ ├── glarea-gles.fs.glsl │ └── glarea-gles.vs.glsl │ ├── log.c │ ├── log.h │ ├── macros.h │ ├── main.cpp │ ├── prefs.cpp │ ├── prefs.h │ ├── renderer.cpp │ ├── renderer.h │ ├── resources.cpp │ ├── shader.cpp │ ├── shader.h │ ├── stream.cpp │ ├── stream.h │ ├── telemetryframe.cpp │ ├── telemetryframe.h │ ├── ui │ ├── gears_menu.ui │ ├── prefs.ui │ ├── telemetry_frame.ui │ ├── video_frame.ui │ ├── widget_frame.ui │ └── window.ui │ ├── ui_res.gresource.xml │ ├── videoframe.cpp │ ├── videoframe.h │ ├── videowidget.cpp │ ├── videowidget.h │ ├── widgetframe.cpp │ ├── widgetframe.h │ ├── widgets │ ├── avgridespeed.h │ ├── avgspeed.h │ ├── cadence.h │ ├── date.h │ ├── distance.h │ ├── duration.h │ ├── elevation.h │ ├── gforce.h │ ├── gpx.h │ ├── grade.h │ ├── heading.h │ ├── heartrate.h │ ├── image.h │ ├── lap.h │ ├── map.h │ ├── maxspeed.h │ ├── position.h │ ├── power.h │ ├── speed.h │ ├── temperature.h │ ├── text.h │ ├── time.h │ ├── track.h │ └── verticalspeed.h │ ├── window.cpp │ └── window.h ├── layoutlib ├── Boolean.cpp ├── Boolean.h ├── CMakeLists.txt ├── Decimal.cpp ├── Decimal.h ├── Layout.cpp ├── Layout.h ├── List.h ├── Map.cpp ├── Map.h ├── Node.cpp ├── Node.h ├── Parser.cpp ├── Parser.h ├── Report.cpp ├── Report.h ├── ReportCerr.cpp ├── ReportCerr.h ├── String.cpp ├── String_.h ├── Track.cpp ├── Track.h ├── Unsigned.cpp ├── Unsigned.h ├── Widget.cpp ├── Widget.h └── export.h ├── qt ├── GPX2VideoGeoFileTileCache.cpp ├── GPX2VideoGeoFileTileCache.h ├── GPX2VideoGeoServiceProviderFactory.cpp ├── GPX2VideoGeoServiceProviderFactory.h ├── GPX2VideoGeoTileFetcher.cpp ├── GPX2VideoGeoTileFetcher.h ├── GPX2VideoGeoTileProvider.cpp ├── GPX2VideoGeoTileProvider.h ├── GPX2VideoGeoTiledMapReply.cpp ├── GPX2VideoGeoTiledMapReply.h ├── GPX2VideoGeoTiledMappingManagerEngine.cpp ├── GPX2VideoGeoTiledMappingManagerEngine.h ├── README.md ├── gpx2video-qt.pro ├── gpx2video_plugin.json ├── log.c ├── log.h ├── macros.h ├── main.cpp ├── map.cpp ├── map.h ├── mapsettings.h ├── qml │ ├── main.qml │ └── qml.qrc ├── track.cpp ├── track.h └── tracksettings.h ├── samples ├── data.gnuplot ├── layout-1520x2704.xml ├── layout-1920x1080.xml ├── layout-2704x1520.xml └── layout-432x240.xml ├── src ├── application.cpp ├── application.h ├── audioparams.cpp ├── audioparams.h ├── cache.cpp ├── cache.h ├── datetime.cpp ├── datetime.h ├── decoder.cpp ├── decoder.h ├── encoder.cpp ├── encoder.h ├── evcurl++.cpp ├── evcurl.c ├── evcurl.h ├── exportcodec.cpp ├── exportcodec.h ├── extractor.cpp ├── extractor.h ├── extractorsettings.h ├── ffmpegutils.cpp ├── ffmpegutils.h ├── frame.cpp ├── frame.h ├── gpmf.cpp ├── gpmf.h ├── imagerenderer.cpp ├── imagerenderer.h ├── kalman.c ├── kalman.h ├── log.c ├── log.h ├── macros.h ├── map.cpp ├── map.h ├── mapsettings.h ├── media.cpp ├── media.h ├── oiio.cpp ├── oiio.h ├── oiioutils.cpp ├── oiioutils.h ├── renderer.cpp ├── renderer.h ├── samplebuffer.cpp ├── samplebuffer.h ├── stream.cpp ├── stream.h ├── telemetry.cpp ├── telemetry.h ├── telemetry │ ├── csv.h │ └── gpx.h ├── telemetrydata.h ├── telemetrymedia.cpp ├── telemetrymedia.h ├── telemetrysettings.h ├── test.cpp ├── test.h ├── timesync.cpp ├── timesync.h ├── track.cpp ├── track.h ├── tracksettings.h ├── utils.cpp ├── utils.h ├── version.h.in ├── videoparams.cpp ├── videoparams.h ├── videorenderer.cpp ├── videorenderer.h ├── videowidget.cpp ├── videowidget.h └── widgets │ ├── avgridespeed.h │ ├── avgspeed.h │ ├── cadence.h │ ├── date.h │ ├── distance.h │ ├── duration.h │ ├── elevation.h │ ├── gforce.h │ ├── gpx.h │ ├── grade.h │ ├── heading.h │ ├── heartrate.h │ ├── image.h │ ├── lap.h │ ├── maxspeed.h │ ├── position.h │ ├── power.h │ ├── speed.h │ ├── temperature.h │ ├── text.h │ ├── time.h │ └── verticalspeed.h ├── tests ├── CMakeLists.txt ├── Makefile ├── gpxtrk.cpp ├── main1.c ├── main2.c ├── main3.c ├── main4-get.c ├── main4.c ├── main5-oiio.cpp ├── main5-qt.cpp ├── main6-oiio.cpp ├── map.c ├── test-decoder.c ├── test-extract.c ├── test-packet.c ├── time.c └── transcoding.c ├── tools ├── CMakeLists.txt ├── data.csv ├── data.gpx ├── data.tcx ├── gpx2video.cpp ├── gpx2video.h ├── gpxtools.cpp └── gpxtools.h └── utmconvert ├── Makefile ├── utmconvert.cpp ├── utmconvert.h └── utmconvert.i /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/build-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/.github/ISSUE_TEMPLATE/build-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/Helvetica-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/fonts/Helvetica-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Helvetica-BoldOblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/fonts/Helvetica-BoldOblique.ttf -------------------------------------------------------------------------------- /assets/fonts/Helvetica-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/fonts/Helvetica-Oblique.ttf -------------------------------------------------------------------------------- /assets/fonts/Helvetica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/fonts/Helvetica.ttf -------------------------------------------------------------------------------- /assets/fonts/helvetica-compressed-5871d14b6903a.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/fonts/helvetica-compressed-5871d14b6903a.otf -------------------------------------------------------------------------------- /assets/fonts/helvetica-light-587ebe5a59211.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/fonts/helvetica-light-587ebe5a59211.ttf -------------------------------------------------------------------------------- /assets/fonts/helvetica-rounded-bold-5871d05ead8de.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/fonts/helvetica-rounded-bold-5871d05ead8de.otf -------------------------------------------------------------------------------- /assets/gpx2video-qt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/gpx2video-qt.png -------------------------------------------------------------------------------- /assets/legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/legend.png -------------------------------------------------------------------------------- /assets/linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/linux.png -------------------------------------------------------------------------------- /assets/marker/end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/marker/end.png -------------------------------------------------------------------------------- /assets/marker/position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/marker/position.png -------------------------------------------------------------------------------- /assets/marker/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/marker/start.png -------------------------------------------------------------------------------- /assets/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/overview.png -------------------------------------------------------------------------------- /assets/picto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_acceleration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_acceleration.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_apparentWindAngle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_apparentWindAngle.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_avgspeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_avgspeed.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_aviationAltitude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_aviationAltitude.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_aviation_slipskid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_aviation_slipskid.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_aviation_turnrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_aviation_turnrate.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_boatDrift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_boatDrift.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_cadence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_cadence.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_compass.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_date.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_distance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_distance.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_duration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_duration.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_elevation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_elevation.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_engineFuelRate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_engineFuelRate.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_engineTorque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_engineTorque.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_engine_load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_engine_load.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_engine_rpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_engine_rpm.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_gforce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_gforce.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_grade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_grade.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_hangtime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_hangtime.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_heartrate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_heartrate.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_jumps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_jumps.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_laps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_laps.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_massAirFlowRate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_massAirFlowRate.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_maxspeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_maxspeed.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_pitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_pitch.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_position.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_power.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_rotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_rotations.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_speed.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_speedOverWater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_speedOverWater.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_stanceTime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_stanceTime.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_temp.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_temperature.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_time.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_verticalOscillation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_verticalOscillation.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_waterDepth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_waterDepth.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_waterTemperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_waterTemperature.png -------------------------------------------------------------------------------- /assets/picto/DataOverlay_icn_wind_speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/assets/picto/DataOverlay_icn_wind_speed.png -------------------------------------------------------------------------------- /cmake/FindOpenImageIO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/cmake/FindOpenImageIO.cmake -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /gpxlib/Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Algorithm.cpp -------------------------------------------------------------------------------- /gpxlib/Algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Algorithm.h -------------------------------------------------------------------------------- /gpxlib/Bounds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Bounds.cpp -------------------------------------------------------------------------------- /gpxlib/Bounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Bounds.h -------------------------------------------------------------------------------- /gpxlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/CMakeLists.txt -------------------------------------------------------------------------------- /gpxlib/Copyright.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Copyright.cpp -------------------------------------------------------------------------------- /gpxlib/Copyright.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Copyright.h -------------------------------------------------------------------------------- /gpxlib/DGPSStation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/DGPSStation.cpp -------------------------------------------------------------------------------- /gpxlib/DGPSStation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/DGPSStation.h -------------------------------------------------------------------------------- /gpxlib/DateTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/DateTime.cpp -------------------------------------------------------------------------------- /gpxlib/DateTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/DateTime.h -------------------------------------------------------------------------------- /gpxlib/Decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Decimal.cpp -------------------------------------------------------------------------------- /gpxlib/Decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Decimal.h -------------------------------------------------------------------------------- /gpxlib/Degrees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Degrees.cpp -------------------------------------------------------------------------------- /gpxlib/Degrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Degrees.h -------------------------------------------------------------------------------- /gpxlib/EMail.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/EMail.cpp -------------------------------------------------------------------------------- /gpxlib/EMail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/EMail.h -------------------------------------------------------------------------------- /gpxlib/Extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Extensions.cpp -------------------------------------------------------------------------------- /gpxlib/Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Extensions.h -------------------------------------------------------------------------------- /gpxlib/Fix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Fix.cpp -------------------------------------------------------------------------------- /gpxlib/Fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Fix.h -------------------------------------------------------------------------------- /gpxlib/GPX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/GPX.cpp -------------------------------------------------------------------------------- /gpxlib/GPX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/GPX.h -------------------------------------------------------------------------------- /gpxlib/Latitude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Latitude.cpp -------------------------------------------------------------------------------- /gpxlib/Latitude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Latitude.h -------------------------------------------------------------------------------- /gpxlib/Link.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Link.cpp -------------------------------------------------------------------------------- /gpxlib/Link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Link.h -------------------------------------------------------------------------------- /gpxlib/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/List.h -------------------------------------------------------------------------------- /gpxlib/Longitude.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Longitude.cpp -------------------------------------------------------------------------------- /gpxlib/Longitude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Longitude.h -------------------------------------------------------------------------------- /gpxlib/Metadata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Metadata.cpp -------------------------------------------------------------------------------- /gpxlib/Metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Metadata.h -------------------------------------------------------------------------------- /gpxlib/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Node.cpp -------------------------------------------------------------------------------- /gpxlib/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Node.h -------------------------------------------------------------------------------- /gpxlib/PT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/PT.cpp -------------------------------------------------------------------------------- /gpxlib/PT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/PT.h -------------------------------------------------------------------------------- /gpxlib/PTSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/PTSeg.cpp -------------------------------------------------------------------------------- /gpxlib/PTSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/PTSeg.h -------------------------------------------------------------------------------- /gpxlib/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Parser.cpp -------------------------------------------------------------------------------- /gpxlib/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Parser.h -------------------------------------------------------------------------------- /gpxlib/Person.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Person.cpp -------------------------------------------------------------------------------- /gpxlib/Person.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Person.h -------------------------------------------------------------------------------- /gpxlib/RTE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/RTE.cpp -------------------------------------------------------------------------------- /gpxlib/RTE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/RTE.h -------------------------------------------------------------------------------- /gpxlib/Report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Report.cpp -------------------------------------------------------------------------------- /gpxlib/Report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Report.h -------------------------------------------------------------------------------- /gpxlib/ReportCerr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/ReportCerr.cpp -------------------------------------------------------------------------------- /gpxlib/ReportCerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/ReportCerr.h -------------------------------------------------------------------------------- /gpxlib/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/String.cpp -------------------------------------------------------------------------------- /gpxlib/String_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/String_.h -------------------------------------------------------------------------------- /gpxlib/TRK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/TRK.cpp -------------------------------------------------------------------------------- /gpxlib/TRK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/TRK.h -------------------------------------------------------------------------------- /gpxlib/TRKSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/TRKSeg.cpp -------------------------------------------------------------------------------- /gpxlib/TRKSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/TRKSeg.h -------------------------------------------------------------------------------- /gpxlib/URI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/URI.cpp -------------------------------------------------------------------------------- /gpxlib/URI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/URI.h -------------------------------------------------------------------------------- /gpxlib/Unsigned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Unsigned.cpp -------------------------------------------------------------------------------- /gpxlib/Unsigned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Unsigned.h -------------------------------------------------------------------------------- /gpxlib/WPT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/WPT.cpp -------------------------------------------------------------------------------- /gpxlib/WPT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/WPT.h -------------------------------------------------------------------------------- /gpxlib/Writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Writer.cpp -------------------------------------------------------------------------------- /gpxlib/Writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/Writer.h -------------------------------------------------------------------------------- /gpxlib/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gpxlib/export.h -------------------------------------------------------------------------------- /gtk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/CMakeLists.txt -------------------------------------------------------------------------------- /gtk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/README.md -------------------------------------------------------------------------------- /gtk/cmake/BuildTargetScript.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/cmake/BuildTargetScript.cmake -------------------------------------------------------------------------------- /gtk/cmake/CompileGResources.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/cmake/CompileGResources.cmake -------------------------------------------------------------------------------- /gtk/cmake/FindOpenImageIO.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/cmake/FindOpenImageIO.cmake -------------------------------------------------------------------------------- /gtk/cmake/GenerateGXML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/cmake/GenerateGXML.cmake -------------------------------------------------------------------------------- /gtk/cmake/GlibCompileResourcesSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/cmake/GlibCompileResourcesSupport.cmake -------------------------------------------------------------------------------- /gtk/data/com.progweb.gpx2video.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/data/com.progweb.gpx2video.desktop -------------------------------------------------------------------------------- /gtk/data/com.progweb.gpx2video.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/data/com.progweb.gpx2video.desktop.in -------------------------------------------------------------------------------- /gtk/data/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/data/overview.png -------------------------------------------------------------------------------- /gtk/icons/48x48/apps/com.progweb.gpx2video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/icons/48x48/apps/com.progweb.gpx2video.png -------------------------------------------------------------------------------- /gtk/icons/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_library(iconsres ${GPX2VIDEO_ICONS_RESOURCES}) 3 | 4 | -------------------------------------------------------------------------------- /gtk/icons/com.progweb.gpx2video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/icons/com.progweb.gpx2video.svg -------------------------------------------------------------------------------- /gtk/icons/icon_res.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/icons/icon_res.gresource.xml -------------------------------------------------------------------------------- /gtk/icons/scalable/apps/com.progweb.gpx2video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/icons/scalable/apps/com.progweb.gpx2video.svg -------------------------------------------------------------------------------- /gtk/icons/scalable/apps/gpx2video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/icons/scalable/apps/gpx2video.svg -------------------------------------------------------------------------------- /gtk/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/CMakeLists.txt -------------------------------------------------------------------------------- /gtk/src/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/about.cpp -------------------------------------------------------------------------------- /gtk/src/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/about.h -------------------------------------------------------------------------------- /gtk/src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/application.cpp -------------------------------------------------------------------------------- /gtk/src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/application.h -------------------------------------------------------------------------------- /gtk/src/area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/area.cpp -------------------------------------------------------------------------------- /gtk/src/area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/area.h -------------------------------------------------------------------------------- /gtk/src/audiodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/audiodevice.cpp -------------------------------------------------------------------------------- /gtk/src/audiodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/audiodevice.h -------------------------------------------------------------------------------- /gtk/src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/compat.h -------------------------------------------------------------------------------- /gtk/src/gl/glarea-gl.fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/gl/glarea-gl.fs.glsl -------------------------------------------------------------------------------- /gtk/src/gl/glarea-gl.vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/gl/glarea-gl.vs.glsl -------------------------------------------------------------------------------- /gtk/src/gl/glarea-gles.fs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/gl/glarea-gles.fs.glsl -------------------------------------------------------------------------------- /gtk/src/gl/glarea-gles.vs.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/gl/glarea-gles.vs.glsl -------------------------------------------------------------------------------- /gtk/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/log.c -------------------------------------------------------------------------------- /gtk/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/log.h -------------------------------------------------------------------------------- /gtk/src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/macros.h -------------------------------------------------------------------------------- /gtk/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/main.cpp -------------------------------------------------------------------------------- /gtk/src/prefs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/prefs.cpp -------------------------------------------------------------------------------- /gtk/src/prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/prefs.h -------------------------------------------------------------------------------- /gtk/src/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/renderer.cpp -------------------------------------------------------------------------------- /gtk/src/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/renderer.h -------------------------------------------------------------------------------- /gtk/src/resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/resources.cpp -------------------------------------------------------------------------------- /gtk/src/shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/shader.cpp -------------------------------------------------------------------------------- /gtk/src/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/shader.h -------------------------------------------------------------------------------- /gtk/src/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/stream.cpp -------------------------------------------------------------------------------- /gtk/src/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/stream.h -------------------------------------------------------------------------------- /gtk/src/telemetryframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/telemetryframe.cpp -------------------------------------------------------------------------------- /gtk/src/telemetryframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/telemetryframe.h -------------------------------------------------------------------------------- /gtk/src/ui/gears_menu.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/ui/gears_menu.ui -------------------------------------------------------------------------------- /gtk/src/ui/prefs.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/ui/prefs.ui -------------------------------------------------------------------------------- /gtk/src/ui/telemetry_frame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/ui/telemetry_frame.ui -------------------------------------------------------------------------------- /gtk/src/ui/video_frame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/ui/video_frame.ui -------------------------------------------------------------------------------- /gtk/src/ui/widget_frame.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/ui/widget_frame.ui -------------------------------------------------------------------------------- /gtk/src/ui/window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/ui/window.ui -------------------------------------------------------------------------------- /gtk/src/ui_res.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/ui_res.gresource.xml -------------------------------------------------------------------------------- /gtk/src/videoframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/videoframe.cpp -------------------------------------------------------------------------------- /gtk/src/videoframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/videoframe.h -------------------------------------------------------------------------------- /gtk/src/videowidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/videowidget.cpp -------------------------------------------------------------------------------- /gtk/src/videowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/videowidget.h -------------------------------------------------------------------------------- /gtk/src/widgetframe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgetframe.cpp -------------------------------------------------------------------------------- /gtk/src/widgetframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgetframe.h -------------------------------------------------------------------------------- /gtk/src/widgets/avgridespeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/avgridespeed.h -------------------------------------------------------------------------------- /gtk/src/widgets/avgspeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/avgspeed.h -------------------------------------------------------------------------------- /gtk/src/widgets/cadence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/cadence.h -------------------------------------------------------------------------------- /gtk/src/widgets/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/date.h -------------------------------------------------------------------------------- /gtk/src/widgets/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/distance.h -------------------------------------------------------------------------------- /gtk/src/widgets/duration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/duration.h -------------------------------------------------------------------------------- /gtk/src/widgets/elevation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/elevation.h -------------------------------------------------------------------------------- /gtk/src/widgets/gforce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/gforce.h -------------------------------------------------------------------------------- /gtk/src/widgets/gpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/gpx.h -------------------------------------------------------------------------------- /gtk/src/widgets/grade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/grade.h -------------------------------------------------------------------------------- /gtk/src/widgets/heading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/heading.h -------------------------------------------------------------------------------- /gtk/src/widgets/heartrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/heartrate.h -------------------------------------------------------------------------------- /gtk/src/widgets/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/image.h -------------------------------------------------------------------------------- /gtk/src/widgets/lap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/lap.h -------------------------------------------------------------------------------- /gtk/src/widgets/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/map.h -------------------------------------------------------------------------------- /gtk/src/widgets/maxspeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/maxspeed.h -------------------------------------------------------------------------------- /gtk/src/widgets/position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/position.h -------------------------------------------------------------------------------- /gtk/src/widgets/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/power.h -------------------------------------------------------------------------------- /gtk/src/widgets/speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/speed.h -------------------------------------------------------------------------------- /gtk/src/widgets/temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/temperature.h -------------------------------------------------------------------------------- /gtk/src/widgets/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/text.h -------------------------------------------------------------------------------- /gtk/src/widgets/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/time.h -------------------------------------------------------------------------------- /gtk/src/widgets/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/track.h -------------------------------------------------------------------------------- /gtk/src/widgets/verticalspeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/widgets/verticalspeed.h -------------------------------------------------------------------------------- /gtk/src/window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/window.cpp -------------------------------------------------------------------------------- /gtk/src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/gtk/src/window.h -------------------------------------------------------------------------------- /layoutlib/Boolean.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Boolean.cpp -------------------------------------------------------------------------------- /layoutlib/Boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Boolean.h -------------------------------------------------------------------------------- /layoutlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/CMakeLists.txt -------------------------------------------------------------------------------- /layoutlib/Decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Decimal.cpp -------------------------------------------------------------------------------- /layoutlib/Decimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Decimal.h -------------------------------------------------------------------------------- /layoutlib/Layout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Layout.cpp -------------------------------------------------------------------------------- /layoutlib/Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Layout.h -------------------------------------------------------------------------------- /layoutlib/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/List.h -------------------------------------------------------------------------------- /layoutlib/Map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Map.cpp -------------------------------------------------------------------------------- /layoutlib/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Map.h -------------------------------------------------------------------------------- /layoutlib/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Node.cpp -------------------------------------------------------------------------------- /layoutlib/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Node.h -------------------------------------------------------------------------------- /layoutlib/Parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Parser.cpp -------------------------------------------------------------------------------- /layoutlib/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Parser.h -------------------------------------------------------------------------------- /layoutlib/Report.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Report.cpp -------------------------------------------------------------------------------- /layoutlib/Report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Report.h -------------------------------------------------------------------------------- /layoutlib/ReportCerr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/ReportCerr.cpp -------------------------------------------------------------------------------- /layoutlib/ReportCerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/ReportCerr.h -------------------------------------------------------------------------------- /layoutlib/String.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/String.cpp -------------------------------------------------------------------------------- /layoutlib/String_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/String_.h -------------------------------------------------------------------------------- /layoutlib/Track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Track.cpp -------------------------------------------------------------------------------- /layoutlib/Track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Track.h -------------------------------------------------------------------------------- /layoutlib/Unsigned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Unsigned.cpp -------------------------------------------------------------------------------- /layoutlib/Unsigned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Unsigned.h -------------------------------------------------------------------------------- /layoutlib/Widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Widget.cpp -------------------------------------------------------------------------------- /layoutlib/Widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/Widget.h -------------------------------------------------------------------------------- /layoutlib/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/layoutlib/export.h -------------------------------------------------------------------------------- /qt/GPX2VideoGeoFileTileCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoFileTileCache.cpp -------------------------------------------------------------------------------- /qt/GPX2VideoGeoFileTileCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoFileTileCache.h -------------------------------------------------------------------------------- /qt/GPX2VideoGeoServiceProviderFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoServiceProviderFactory.cpp -------------------------------------------------------------------------------- /qt/GPX2VideoGeoServiceProviderFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoServiceProviderFactory.h -------------------------------------------------------------------------------- /qt/GPX2VideoGeoTileFetcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoTileFetcher.cpp -------------------------------------------------------------------------------- /qt/GPX2VideoGeoTileFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoTileFetcher.h -------------------------------------------------------------------------------- /qt/GPX2VideoGeoTileProvider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoTileProvider.cpp -------------------------------------------------------------------------------- /qt/GPX2VideoGeoTileProvider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoTileProvider.h -------------------------------------------------------------------------------- /qt/GPX2VideoGeoTiledMapReply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoTiledMapReply.cpp -------------------------------------------------------------------------------- /qt/GPX2VideoGeoTiledMapReply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoTiledMapReply.h -------------------------------------------------------------------------------- /qt/GPX2VideoGeoTiledMappingManagerEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoTiledMappingManagerEngine.cpp -------------------------------------------------------------------------------- /qt/GPX2VideoGeoTiledMappingManagerEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/GPX2VideoGeoTiledMappingManagerEngine.h -------------------------------------------------------------------------------- /qt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/README.md -------------------------------------------------------------------------------- /qt/gpx2video-qt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/gpx2video-qt.pro -------------------------------------------------------------------------------- /qt/gpx2video_plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/gpx2video_plugin.json -------------------------------------------------------------------------------- /qt/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/log.c -------------------------------------------------------------------------------- /qt/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/log.h -------------------------------------------------------------------------------- /qt/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/macros.h -------------------------------------------------------------------------------- /qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/main.cpp -------------------------------------------------------------------------------- /qt/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/map.cpp -------------------------------------------------------------------------------- /qt/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/map.h -------------------------------------------------------------------------------- /qt/mapsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/mapsettings.h -------------------------------------------------------------------------------- /qt/qml/main.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/qml/main.qml -------------------------------------------------------------------------------- /qt/qml/qml.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/qml/qml.qrc -------------------------------------------------------------------------------- /qt/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/track.cpp -------------------------------------------------------------------------------- /qt/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/track.h -------------------------------------------------------------------------------- /qt/tracksettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/qt/tracksettings.h -------------------------------------------------------------------------------- /samples/data.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/samples/data.gnuplot -------------------------------------------------------------------------------- /samples/layout-1520x2704.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/samples/layout-1520x2704.xml -------------------------------------------------------------------------------- /samples/layout-1920x1080.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/samples/layout-1920x1080.xml -------------------------------------------------------------------------------- /samples/layout-2704x1520.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/samples/layout-2704x1520.xml -------------------------------------------------------------------------------- /samples/layout-432x240.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/samples/layout-432x240.xml -------------------------------------------------------------------------------- /src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/application.cpp -------------------------------------------------------------------------------- /src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/application.h -------------------------------------------------------------------------------- /src/audioparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/audioparams.cpp -------------------------------------------------------------------------------- /src/audioparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/audioparams.h -------------------------------------------------------------------------------- /src/cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/cache.cpp -------------------------------------------------------------------------------- /src/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/cache.h -------------------------------------------------------------------------------- /src/datetime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/datetime.cpp -------------------------------------------------------------------------------- /src/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/datetime.h -------------------------------------------------------------------------------- /src/decoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/decoder.cpp -------------------------------------------------------------------------------- /src/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/decoder.h -------------------------------------------------------------------------------- /src/encoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/encoder.cpp -------------------------------------------------------------------------------- /src/encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/encoder.h -------------------------------------------------------------------------------- /src/evcurl++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/evcurl++.cpp -------------------------------------------------------------------------------- /src/evcurl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/evcurl.c -------------------------------------------------------------------------------- /src/evcurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/evcurl.h -------------------------------------------------------------------------------- /src/exportcodec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/exportcodec.cpp -------------------------------------------------------------------------------- /src/exportcodec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/exportcodec.h -------------------------------------------------------------------------------- /src/extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/extractor.cpp -------------------------------------------------------------------------------- /src/extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/extractor.h -------------------------------------------------------------------------------- /src/extractorsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/extractorsettings.h -------------------------------------------------------------------------------- /src/ffmpegutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/ffmpegutils.cpp -------------------------------------------------------------------------------- /src/ffmpegutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/ffmpegutils.h -------------------------------------------------------------------------------- /src/frame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/frame.cpp -------------------------------------------------------------------------------- /src/frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/frame.h -------------------------------------------------------------------------------- /src/gpmf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/gpmf.cpp -------------------------------------------------------------------------------- /src/gpmf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/gpmf.h -------------------------------------------------------------------------------- /src/imagerenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/imagerenderer.cpp -------------------------------------------------------------------------------- /src/imagerenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/imagerenderer.h -------------------------------------------------------------------------------- /src/kalman.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/kalman.c -------------------------------------------------------------------------------- /src/kalman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/kalman.h -------------------------------------------------------------------------------- /src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/log.c -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/log.h -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/map.cpp -------------------------------------------------------------------------------- /src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/map.h -------------------------------------------------------------------------------- /src/mapsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/mapsettings.h -------------------------------------------------------------------------------- /src/media.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/media.cpp -------------------------------------------------------------------------------- /src/media.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/media.h -------------------------------------------------------------------------------- /src/oiio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/oiio.cpp -------------------------------------------------------------------------------- /src/oiio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/oiio.h -------------------------------------------------------------------------------- /src/oiioutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/oiioutils.cpp -------------------------------------------------------------------------------- /src/oiioutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/oiioutils.h -------------------------------------------------------------------------------- /src/renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/renderer.cpp -------------------------------------------------------------------------------- /src/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/renderer.h -------------------------------------------------------------------------------- /src/samplebuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/samplebuffer.cpp -------------------------------------------------------------------------------- /src/samplebuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/samplebuffer.h -------------------------------------------------------------------------------- /src/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/stream.cpp -------------------------------------------------------------------------------- /src/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/stream.h -------------------------------------------------------------------------------- /src/telemetry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/telemetry.cpp -------------------------------------------------------------------------------- /src/telemetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/telemetry.h -------------------------------------------------------------------------------- /src/telemetry/csv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/telemetry/csv.h -------------------------------------------------------------------------------- /src/telemetry/gpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/telemetry/gpx.h -------------------------------------------------------------------------------- /src/telemetrydata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/telemetrydata.h -------------------------------------------------------------------------------- /src/telemetrymedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/telemetrymedia.cpp -------------------------------------------------------------------------------- /src/telemetrymedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/telemetrymedia.h -------------------------------------------------------------------------------- /src/telemetrysettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/telemetrysettings.h -------------------------------------------------------------------------------- /src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/test.cpp -------------------------------------------------------------------------------- /src/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/test.h -------------------------------------------------------------------------------- /src/timesync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/timesync.cpp -------------------------------------------------------------------------------- /src/timesync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/timesync.h -------------------------------------------------------------------------------- /src/track.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/track.cpp -------------------------------------------------------------------------------- /src/track.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/track.h -------------------------------------------------------------------------------- /src/tracksettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/tracksettings.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/utils.h -------------------------------------------------------------------------------- /src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/version.h.in -------------------------------------------------------------------------------- /src/videoparams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/videoparams.cpp -------------------------------------------------------------------------------- /src/videoparams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/videoparams.h -------------------------------------------------------------------------------- /src/videorenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/videorenderer.cpp -------------------------------------------------------------------------------- /src/videorenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/videorenderer.h -------------------------------------------------------------------------------- /src/videowidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/videowidget.cpp -------------------------------------------------------------------------------- /src/videowidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/videowidget.h -------------------------------------------------------------------------------- /src/widgets/avgridespeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/avgridespeed.h -------------------------------------------------------------------------------- /src/widgets/avgspeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/avgspeed.h -------------------------------------------------------------------------------- /src/widgets/cadence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/cadence.h -------------------------------------------------------------------------------- /src/widgets/date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/date.h -------------------------------------------------------------------------------- /src/widgets/distance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/distance.h -------------------------------------------------------------------------------- /src/widgets/duration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/duration.h -------------------------------------------------------------------------------- /src/widgets/elevation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/elevation.h -------------------------------------------------------------------------------- /src/widgets/gforce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/gforce.h -------------------------------------------------------------------------------- /src/widgets/gpx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/gpx.h -------------------------------------------------------------------------------- /src/widgets/grade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/grade.h -------------------------------------------------------------------------------- /src/widgets/heading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/heading.h -------------------------------------------------------------------------------- /src/widgets/heartrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/heartrate.h -------------------------------------------------------------------------------- /src/widgets/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/image.h -------------------------------------------------------------------------------- /src/widgets/lap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/lap.h -------------------------------------------------------------------------------- /src/widgets/maxspeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/maxspeed.h -------------------------------------------------------------------------------- /src/widgets/position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/position.h -------------------------------------------------------------------------------- /src/widgets/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/power.h -------------------------------------------------------------------------------- /src/widgets/speed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/speed.h -------------------------------------------------------------------------------- /src/widgets/temperature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/temperature.h -------------------------------------------------------------------------------- /src/widgets/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/text.h -------------------------------------------------------------------------------- /src/widgets/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/time.h -------------------------------------------------------------------------------- /src/widgets/verticalspeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/src/widgets/verticalspeed.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/gpxtrk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/gpxtrk.cpp -------------------------------------------------------------------------------- /tests/main1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/main1.c -------------------------------------------------------------------------------- /tests/main2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/main2.c -------------------------------------------------------------------------------- /tests/main3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/main3.c -------------------------------------------------------------------------------- /tests/main4-get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/main4-get.c -------------------------------------------------------------------------------- /tests/main4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/main4.c -------------------------------------------------------------------------------- /tests/main5-oiio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/main5-oiio.cpp -------------------------------------------------------------------------------- /tests/main5-qt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/main5-qt.cpp -------------------------------------------------------------------------------- /tests/main6-oiio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/main6-oiio.cpp -------------------------------------------------------------------------------- /tests/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/map.c -------------------------------------------------------------------------------- /tests/test-decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/test-decoder.c -------------------------------------------------------------------------------- /tests/test-extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/test-extract.c -------------------------------------------------------------------------------- /tests/test-packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/test-packet.c -------------------------------------------------------------------------------- /tests/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/time.c -------------------------------------------------------------------------------- /tests/transcoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tests/transcoding.c -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tools/data.csv -------------------------------------------------------------------------------- /tools/data.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tools/data.gpx -------------------------------------------------------------------------------- /tools/data.tcx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tools/data.tcx -------------------------------------------------------------------------------- /tools/gpx2video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tools/gpx2video.cpp -------------------------------------------------------------------------------- /tools/gpx2video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tools/gpx2video.h -------------------------------------------------------------------------------- /tools/gpxtools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tools/gpxtools.cpp -------------------------------------------------------------------------------- /tools/gpxtools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/tools/gpxtools.h -------------------------------------------------------------------------------- /utmconvert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/utmconvert/Makefile -------------------------------------------------------------------------------- /utmconvert/utmconvert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/utmconvert/utmconvert.cpp -------------------------------------------------------------------------------- /utmconvert/utmconvert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/utmconvert/utmconvert.h -------------------------------------------------------------------------------- /utmconvert/utmconvert.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/progweb/gpx2video/HEAD/utmconvert/utmconvert.i --------------------------------------------------------------------------------