Important
Warning, this is an experimental project.
Use this software at your own risk.
WFB-ng client (Video Decoder) for Rockchip platform powered by the Rockchip MPP library. It also displays a simple cairo based OSD that shows the bandwidth, decoding latency, and framerate of the decoded video, and wfb-ng link statistics.
This project is based on a unique frozen development FPVue_rk by Gee He.
Tested on RK3566 (Radxa Zero 3W) and RK3588s (Orange Pi 5).
Build on the Rockchip linux system directly.
- drm, cairo, mpp, logging, json
sudo apt install libdrm-dev libcairo-dev librockchip-mpp-dev libspdlog-dev nlohmann-json3-dev
- gstreamer
sudo apt install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev libgstreamer-plugins-bad1.0-dev
Build and run application in production environment:
cmake -B build
sudo cmake --build build --target install
build/pixelpilot
Build and run application for debugging purposes:
cmake -B build -DCMAKE_BUILD_TYPE=Debug
cmake --build build
build/pixelpilot --osd
Show command line options:
pixelpilot --help
OSD is set-up declaratively in /etc/pixelpilot/config_osd.json
file (or whatever is set via --osd-config
command line key.
OSD is described as an array of widgets which may subscribe to fact updates (they receive each fact
update they subscribe to) and those widgets are periodically rendered on the screen (in the order they
declared in config). So the goal is that widgets would decide how they should be rendered based on
the values of the facts they are subscribed to. If widget needs to render not the latest value of the
fact, but some processed value (like average / max / total etc), the widget should keep the necessary
state for that. There is a helper class MovingAverage
that would be helpful to calculate common
statistical parameters.
Each fact has a specific datatype: one of int
(signed integer) / uint
(unsigned integer) /
double
(floating point) / bool
(true/false) / string
(text). Type cast is currently not
implemented, so it is important to use the right type in the widget code and templates.
Facts may also have tags: a set of string key->value pairs. Widget may filter facts by tags as well as by name. Currently there are several generic OSD widgets and several specific ad-hoc ones. There are quite a lot of facts to which widgets can subscribe to:
Fact | Type | Description |
---|---|---|
dvr.recording |
bool | Is DVR currently recording? |
video.width |
uint | The width of the video stream |
video.height |
uint | The height of the video stream |
video.displayed_frame |
uint | Published with value "1" each time a new video frame is displayed |
video.decode_and_handover_ms |
uint | Time from the moment packet is received to time it is displayed on screen |
video.decoder_feed_time_ms |
uint | Time to feed the video packet to hardware decoder |
gstreamer.received_bytes |
uint | Number of bytes received from gstreamer (published for each packet) |
osd.custom_message |
str | The custom message passed via --osd-custom-message feature |
There are many facts based on Mavlink telemetry, see mavlink.c
. All of them have tags "sysid" and
"compid", but some have extra tags.
Currently implemented fact categories are grouped by Mavlink message types:
Fact | Type | Description |
---|---|---|
mavlink.heartbeet.base_mode.armed |
bool | Is drone armed? |
mavlink.raw_imu.* |
int | Raw values from gyroscope and accelerometer, See RAW_IMU |
mavlink.sys_status.* |
int/uint | Some of the fields from SYS_STATUS |
mavlink.battery_status.* |
int | Some of the fields from BATTERY_STATUS |
mavlink.rc_channels_raw.chanN |
uint | Raw values of remote control chanels (N is from 1 to 8) |
mavlink.gps_raw.* |
int/uint | Raw data from GNSS sensor, see GPS_RAW_INT |
mavlink.vfr_hud.* |
double | Metrics common for fixed wing OSDs, see VFR_HUD |
mavlink.global_position_int.* |
int | Position estimation based on sensor fusion, see GLOBAL_POSITION_INT |
mavlink.attitude.* |
double | See ATTITUDE |
mavlink.radio_status.* |
uint/int | Status of various radio equipment. Tags {sysid: 3, compid: 68} encode the injected status of WFB-ng receiver |
More can be easily added later. You can use DebugWidget
to inspect the current raw value of the fact(s).
Currently we have generic widgets and more ad-hoc specific ones. Generic widgets normally can be used to display any fact (as long as datatype matches):
TextWidget
- displays a static string of textIconTextWidget
- displays a graphical icon followed by a static textTplTextWidget
- displays a string of text by replacing placeholders with the fact valuesIconTplTextWidget
- displays a graphical icon followed by templatized text stringBoxWidget
- displays a static square. Might be good as a background.BarChartWidget
- displays a simple bar chart for the single fact's statistics. Each bar represents either minimum or maximum or sum or count or average of the fact over time interval. Can be used to show eg the average video bitrate or RSSI or FPS.PopupWidget
- displays a stacked pop-ups with text facts which fade-away after timeout.DebugWidget
- displays debug information (name, type, tags, value) about fact(s)
Specific widgets expect quite concrete facts as input:
DvrStatusWidget
- shows up when DVR is recording and is hidden when not. Usesdvr.recording
factVideoWidget
- shows FPS and video resolution. Usesvideo.displayed_frame
,video.width
,video.height
factsVideoBitrateWidget
- shows video bitrate (not radio link, but video!). Usesgstreamer.received_bytes
factVideoDecodeLatencyWidget
- shows video frame decode and display latency (avg/min/max). Usesvideo.decode_and_handover_ms
factGPSWidget
- displays GPS fix type (no fix / 2D fix / 3D fix etc) and GPS coordinates. Usesmavlink.gps_raw.fix_type
,mavlink.gps_raw.lat
andmavlink.gps_raw.lon
facts
- Video is cropped when the fpv feed resolution is bigger than the screen mode.
- Crashes when video feed resolution is higher than the screen resolution.
It uses gstreamer
to read the RTP media stream from video UDP.
It uses mpp
library to decode MPEG frames using Rockchip hardware decoder.
It uses Direct Rendering Manager (DRM) to
display video on the screen, see drm.c
.
It uses mavlink
decoder to read Mavlink telemetry from telemetry UDP (if enabled), see mavlink.c
It uses cairo
library to draw OSD elements (if enabled), see osd.c
.
It writes non-decoded MPEG stream to file as DVR (if enabled) using minimp4.h
library.
Pixelpilot starts several threads:
- main thread:
controls gstreamer which reads RTP, extracts MPEG frames and
- feeds them to MPP hardware decoder
- sends them to DVR thread via mutex-protected
std::queue
(if enabled)
- DVR_THREAD (if enabled):
reads video frames and start/stop/shutdown commands from main thread via
std::queue
and writes frames them to disk usingminimp4
library. It yields on a condition variable for DVR queue - FRAME_THREAD:
reads decoded video frames from MPP hardware decoder and forwards them to
DISPLAY_THREAD
through DRMoutput_list
protected byvideo_mutex
. Seems that thread vields onmpi->decode_get_frame()
call waiting for HW decoder to return a new frame - DISPLAY_THREAD:
reads decoded frames and OSD from
video_mutex
-protectedoutput_list
and callsdrm*
functions to render them on the screen. The loop yields onvideo_mutex
andvideo_cond
waiting for a new frame to display from FRAME_THREAD - MAVLINK_THREAD (if OSD and mavlink configured):
reads mavlink packets from UDP, decodes and updates
osd_vars
(without any mutex). The loop yields on UDP read. - OSD_THREAD (if OSD is enabled):
takes
drm_fd
,output_list
and JSON config as thread parameters, receives Facts through mutex-with-timeout-protectedstd::queue
, feeds Facts to widgets and periodically draws widgets on a buffer insideoutput_list
using Cairo library. There exists legacy OSD, is based onosd_vars
, draws using Cairo library, to be removed. The loop yields on queue's mutex with timeout (timeout in order to re-draw OSD at fixed intervals).
- update project version in
CMakeList.txt
,project(pixelpilot, VERSION <X.Y.Z>)
, commit - push that commit to master (either directly or with PR)
- tag the tip of the master branch with the same
<X.Y.Z>
version - run
git push --tags
; it will publish a new GitHub release