For H.265, the preset slow
appears to have more blocking artifacts (mosaic) than the preset ultrafast
, which makes the quality of preset_slow
look worse.
We test it with the sample code:
/usr/src/jetson_multimedia_api/samples/01_video_encode#./video_encode car.yuv 1920 1080 H265 car_hpt1_presetUltrafast.265 -hpt 1 -ifi 50 --econstqp -qpi 45 45 45 -fps 25 1
/usr/src/jetson_multimedia_api/samples/01_video_encode#./video_encode car.yuv 1920 1080 H265 car_hpt4_prestSlow.265 -hpt 4 -ifi 50 --econstqp -qpi 45 45 45 -fps 25 1
According to the bitstream analyzer, the deblock
filter is disabled for both preset slow
and preset medium
, which may be the reason for the increased blocking artifacts. Currently, the code does not allow enabling deblock
. Is there any way to enable it?
car_hpt1_presetUltrafast.zip (111.2 KB)
car_hpt4_prestSlow.zip (100.4 KB)