decodingPipeline.md

Remove token
Este commit está contenido en:
Kiriti Gowda
2024-02-09 10:41:03 -08:00
cometido por GitHub
padre 1fd1223807
commit 3211b77aff
+1 -1
Ver fichero
@@ -1,6 +1,6 @@
# Video decoding pipeline
<p align="center"><img width="70%" src="https://raw.githubusercontent.com/ROCm/rocDecode/develop/docs/data/VideoDecoderPipeline.PNG?token=GHSAT0AAAAAACJXKIIZNT57RMQGFXUXZCVEZOGP37Q" /></p>
<p align="center"><img width="70%" src="../data/VideoDecoderPipeline.PNG" /></p>
There are three main components in the rocDecode shown in the figure above: Demuxer, Video Parser APIs, and Video Decode APIs.
The Demuxer is based on FFMPEG. The demuxer extracts a segment of video data and sends it to the Video Parser. The parser then extracts crucial information such as picture and slice parameters, which is then sent to the Decoder APIs. These APIs submit the information to the hardware for the decoding of a frame. This process repeats in a loop until all frames have been decoded.