Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 367 Bytes

README.template.md

File metadata and controls

26 lines (20 loc) · 367 Bytes

decode-h265

Decode VPP pipeline taking encoded video frames in h265 format and decoding them.

stateDiagram
    direction LR
    state Decode-VPP {
	direction LR
	state media {
	direction LR
	h265
	}
	
    state video_source {
	direction LR
		demux --> parse 
    }
		
	media --> video_source
    video_source --> decode
    decode --> frames
} 
Loading