Performance Debugging
Rockchip Platform Support
7.13 Performance Debugging
Confirm that the MPP decoder is actually being used:
GST_DEBUG='2,*mpp*:4' gst-play-1.0 test.mp4Measure decoding and display frame rates:
GST_DEBUG=fpsdisplaysink:7 \
gst-play-1.0 --flags=3 \
--videosink='fpsdisplaysink video-sink=waylandsink signal-fps-measurements=true text-overlay=false sync=false' \
test.mp4Export decoder output:
gst-launch-1.0 filesrc location=test.mp4 \
! parsebin \
! mppvideodec \
! filesink location=/tmp/decoded.yuvWhen AFBC is not enabled, you can also enable the MPP built-in dump function:
export mpp_debug=0x400AFBC data cannot be viewed directly with a regular YUV player. A corresponding decompression tool and the correct width, height, format, and mode parameters are required.

