Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Latest commit

 

History

History

decode-vpp

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Decode VPP

Decode VPP pipelines take encoded video frames and produce raw frames after performing crop, scale and color space conversion.

stateDiagram
    direction LR
    state Decode-VPP {
	direction LR
    state video_source {
	direction LR
		demux --> parse 
    }
	
	state vpp {
	direction LR
		crop --> scale
		scale --> csc
	}
	
	media --> video_source
    video_source --> decode
    decode --> vpp
	vpp --> frames
} 
Loading