Update the VideoDEcodePipeline image (#242)

* Update the VideoDEcodePipeline image

* update the file extension

* update the image to add connection between parser and decoder
Этот коммит содержится в:
Aryan Salmanpour
2024-02-13 15:51:45 -05:00
коммит произвёл GitHub
родитель c082303b2d
Коммит d96afc62e8
3 изменённых файлов: 1 добавлений и 1 удалений
Двоичные данные
Двоичный файл не отображается.

До

Ширина:  |  Высота:  |  Размер: 240 KiB

Двоичные данные
Двоичный файл не отображается.

После

Ширина:  |  Высота:  |  Размер: 54 KiB

+1 -1
Просмотреть файл
@@ -1,6 +1,6 @@
# Video decoding pipeline
<p align="center"><img width="70%" src="../data/VideoDecoderPipeline.PNG" /></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.