Xilinx Zynq-Video-Mixer-Tutorial LogicTronix June 2020
Xilinx Zynq-Video-Mixer-Tutorial LogicTronix June 2020
1. Overview
This project documentation is based on the video mixer design under Vivado 2018.3,
implemented on Digilent Zybo Z7-10 FPGA board.
The Zybo Z7 is an FPGA board made up with the Xilinx Zynq-7000 FPGA device. The main
feature of Zybo Z7 is on its rich set of multimedia and connectivity peripherals, so it is one of
low cost best-suited FPGA boards for computer vision implementations. It has interfaces like
MIPI CSI-2 compatible Pcam connector, HDMI input, HDMI output, and high DDR3L
bandwidth.
The video mixer design constitutes hardware design and software design. In hardware design,
video mixer IP, version 3.0, is used to mix different sorts of video streams over the master
stream and then into a single output video stream. This IP has to be controlled from the
Processing System (PS). Therefore, the hardware design consists of Zynq Processing System,
which then requires software design. In the software design part, it is necessary to initialize the
video mixer driver and other supportive drivers as well. After that, essentially, there requires
to set different control register values to start working.
All the hardware design and software design will be expounded in the following document.
Video mixer IP is one of the Xilinx® LogiCORE IPs. It provides a flexible video processing
block for alpha blending and compositing multiple video and graphics layers. This IP supports
Page 1 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
for up to nine layers, that is, one master layer and eight overlay layers, with an optional logo
layer, using a combination of video inputs from either frame buffer or streaming video cores,
through AXI4-Stream interfaces, is provided. The IP core is programmable through a
comprehensive register interface to control frame size, background color, layer position and
the AXI4-Lite interface. IP also consists of a comprehensive set of interrupt status bits for
processor monitoring [1].
• Supports (per pixel) alpha-blending of nine video/graphics and logo layers video/graphics
• Optional logo (in block RAM (BRAM)) layer with color transparency support
• Layers can either be memory mapped AXI4 interface or AXI4-Stream
• Provides programmable background color
• Provides programmable layer position and size
• Provides scaling of layers by 1x, 2x, or 4x
• Optional built-in color space conversion
• Supports RGB, YUV 444, YUV 422, YUV 420
• Supports 8, 10, 12, and 16 bits per color component input and output on stream interface,
8-bit and 10-bit per color component on memory interface
• Supports semi-planar memory formats next to packed memory formats
• Supports spatial resolutions from 64 × 64 up to 4,096 × 2,160
• Supports 4K60 in all supported device families
Page 2 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
3. Design Flow
This design flow step expounds about key hardware design steps in Vivado IP integrator and
software design steps in Xilinx SDK.
After clicking next, we go through different series of dialog to give project name and its
location directory and then adding block design and constraints files.
After following previous steps, we come to select the device to be implemented upon. User
can choose either board parts or directly board. The best thing is to select the board other
than part. Because, this allows us to access different board related presets while designing
hardware block.
Page 3 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
User can select different boards to implement this project. However, this documentation is
based on the zybo z7-10 board video mixer design, we currently choose Zybo Z7-10 board.
Clicking next shows another dialog that is related to new project summary. It displays about
project name, block design, constraints file and finally, board related information such as
type of board and its FPGA chip designation, product, family, package and speed grade.
After successful project creation, it opens new Vivado Window. Here, we start working
with Vivado IP Integrator. First of all, user needs to create new block design.
Page 4 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
We have to give the Design Name. We can give any name of it that designates the project.
By default, the design name is set to design_1.
We can give Directory and Specify source set. However, these value are already set when
we have specified the project directory in the beginning of project creation.
Click OK to open Vivado IP Integrator work space.
In this step, we have to add IP repositories in our project. This is only required when we
need to add IPs that are not available in Vivado IP catalog. That means to say that the
Vivado has already some of Licensed Xilinx IPs. And if our block design has IPs which is
not found in the Vivado IP catalog, then we need to add those missing IPs from adding IP
Repositories.
Page 5 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
Now, we come to work with IP integrator. Here, we add necessary IPs and connect them
as necessary to create logic circuit block design.
Next to Flow Navigator section, there is BLOCK DESIGN section with we given design
name design_1. It has several sub sections. Diagram is one of its subsections. On diagram
section top bar, there are several icons. Click icon to Add IP in the block design work
space. Or we can hit shortcut key Ctrl+I to add the IP.
Page 6 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
It opens pop-up IP catalog box, where we can type and search the specific IP to add in our
block design. This IP catalog displays IP only if it is present in the Vivado IP catalog. If it
is not found, we can Add Repository. This part has been explained in step 4.
We can now add the all IPs that are required for our design. Note that all required IPs and
their customizations and connections are explained in the hardware design section of this
document.
Following picture is of address editor which shows the addresses assigned for different
AXI IPs.
The final block design is shown in following figure, while the details of each IP
configuration is explained after the block design.
Page 7 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
Page 8 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
After successful bitstream generation, we need to export our hardware design, including
the corresponding bitstream, for the SDK part. If there is any already export hardware
design, we can overwrite it.
Page 9 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
The PS in Zynq 7000 is dual-core ARM cortex A9 processor or CPU placed in the same FPGA
chip along with the programmable logic(PL). This is the central processing system of the
project. It provides the configuration and control of all IP drivers and hence the video
processing. The DDR of processing system is used as frame buffer. This frame buffer is used
by video mixer IP to overlay memory mapped layer. In processing system, HP 0 Slave is
enabled, which provides video mixer to read data from DDR. GP0 Master is enabled, which is
used to configure the video processing chain. There are two clock signals, viz. FCLK_CLK0
and FCLK_CLK1. First clock is set to 148.5 MHz, which is used by video processing chain
while second clock is set to 200 MHz, which is supplied to DVI2RGB IP as RefClk.
Page 10 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
When, initially, processing system is added, the Vivado IP Integrator allows us to Run Block
Automation. By doing such automation, the Vivado IP Integrator automatically sets the board
related presets on the processing.
The real-time video stream is fed to board through hdmi_in port. This time the video signal is
in the form of TMDS signal. This type of signal is converted into 24 bit RGB format with
vertical and horizontal sync signals. It also allows to set the preferred resolution.
Page 11 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
This converts the parallel video and sync signals into AXI stream. Along with the image data
on TDATA, the start of frame is identified by the TUSER signal while the end of line is
identified by the TLAST signal.
Under the customization, this IP is configured in independent clock mode because, pixel clock
and AXI stream clocks are different.
This component remaps the format of the 24 bit video output into the correct RGB format. This
IP resides between Video In to AXI Stream IP and Video Mixer IP.
Page 12 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
This is the Vivado HLS generated IP, from one of the Xilinx LogiCORE IPs. It is a highly
configurable IP core that supports blending of up to nine video and/or graphics layers plus an
additional logo layer into one single output video stream. All layers except the master layer can
either be a memory mapped AXI4 interface or AXI4-Stream based. Alpha-blending (global or
per pixel) and scaling is supported per layer. Finally, built-in color space conversion between
RGB and YUV 4:4:4 and chroma re-sampling between YUV 4:4:4, YUV 4:2:2, and YUV 4:2:0
is optionally available.
The above picture depicts about the customization of video mixer that is done in this project.
This IP is customized in such a way that it has a master streaming layer with video format
RGB. Its samples per clock is set to 1. Number of overlays are 2, in which one is memory
mapped layer with video format is RGBX8 while another layer is stream layer with video
format RGB. The stream layer has stream input from TPG IP, this will be discussed in the
following section. Both layers are enabled with Global Alpha and Scaling Factor. Since this IP
supports eight overlay layers, we can add or remove any other layer by setting the value of
Number of Overlay Layers.
Page 13 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
From above picture, s_axis_video represents the port for master layer or video stream received
from AXI4-Stream SubSet Converter IP. s_axis_video2 is the port for the stream layer. The
video stream from TPG IP is fed to this port. Similarly, m_axi_mm_video1 is the port for
memory mapped layer. Video mixer IP reads the memory mapped data from DDR memory via
AXI Interconnect IP. This IP is connected to High Performance Slave Interface of Processing
System. And then processing system allows access to DDR memory.
Finally, m_axis_video is the port of video mixer, from which the resulting mixed video stream
are obtained. This resulting stream has stream and memory mapped layers overlaid to the
master video stream and is connected to AXI4 Stream to Video Out IP later.
This is also one of the Vivado HLS generated IP from Xilinx. This IP has AXI4 Stream
interface. It generates the video stream with different pattern. This pattern can be specified
from PS through coding. But currently, this IP is configured to generate color bar test patterns,
which is connected to stream overlay interface of video mixer IP.
Page 14 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
This IP resides after Video mixer IP. This function is just opposite to that of Video In to AXI
Stream IP. In other words, it converts the AXI Stream back into RGB form. This IP is also
customized to work in independent clock mode.
This IP does encoding. It converts RGB form of video stream to TMDS signals to hdmi_out
port. From this port, hdmi cable leads to output monitor to see the resulting video stream.
There are two VTC IPs are used. One is configured in detection mode and another is in
generation mode. Both IPs are governed by PS. When VTC is in detection mode, it detects
video timings and this is sent to PS. On contrary, VTC in generation mode generates the video
timing for the output. This IP is configured from PS, such as, the timing information detected
by detector VTC IP is now used to configure the generator VTC IP. It implies that based on
the timing detected by detector VTC IP, the generator VTC IP is configured to support output
resolution as input resolution. The video timing generation of generator VTC IP is controlled
by AXI4 Stream to Video Out IP. This is so because, the video stream and the video timing are
always locked state to produce output video.
Page 15 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
There are two of this IP. One is used to assert the hot plug detect (HPD) on the HDMI source.
Another is used for Video mixer and TPG IP reset.
Figure 23. AXI GPIO for resetting Video Mixer and TPG IPs
Page 16 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
Apart from above IPs, there are other IPs, which are usually automatically added and connected
by Vivado while doing Run Automatic Connection. There are two AXI Interconnect IPs.
One of which connects all AXI-LITE interface of IPs to General Purpose AXI Matster interface
of PS whereas another AXI Interconnect IP connects the memory mapped interface to High
Performance AXI Slave interface.
Similary, there is Processor System IP, which performs peripheral IP reset operation to all IPs
that are connected to FCLK_CLK0 clock source.
Page 17 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
After launching the Xilinx SDK, if the hardware export, including bitstream, was
successful, then we would see our hardware platform and bit file in the Project Explorer
pane.
Now, we have to create the new project to start coding and create software application to
launch upon the board PS.
Or shortcut key
Alt+Shift+N
Now, give the project name. Let all other options as it is. But one thing, we have to take
care is, the Hardware Platform option selection must be same as that in the Project
Explorer pane.
Page 18 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
Give the project name and click next to choose different application template.
Page 19 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
Best way to start is with Hello World application project for first time. However, one can
even start with Empty Application. But difference is, in empty application, user has to
include all the necessary files, including .c files and .h files, by himself/herself whereas
hello world application contains all necessary files to begin with.
After selecting hello world project, click Finish to open project related necessary stuffs and
lets start editing the main file, that is, helloworld.c file.
The main software application is explained here with in section by section format, while you
can get complete code from the attached “VIVADO Project”.
1. Including board specific, IP specific, operation specific header files, which allow to used
library function in code.
Page 20 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
xv_mix.h and xv_mix_l2.h are the header files related to video mixer IP.
2. Definition for xparameter variables. This is done in order to access the different devices,
their registers, memory, which are later used to initialize, configure the device and set their
respective values while running application on Processing System.
This includes address of UART, Generator VTC IP, Detector VTC IP, video mixer IP,
TPG IP, AXI GPIO.
3. Layer Buffer Address Definition
This is done to set buffer address in DDR for video mixer memory mapped overlay layer.
Layer address offset determines the next starting buffer address for another memory
mapped layer after current memory mapped layer. And chroma address offset determines
the next starting chroma buffer address for another memory mapped layer after current
memory mapped layer.
4. Declaration of global variables. So that, IP specific data are stored and are accessed globally
from anywhere of the code.
Page 21 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
This includes global variables of Generic Interrupt Controller, Video mixer, AXI Gpio,
TPG, VTC, Video Stream.
5. Setting overlay layer window
This is used to set the overlay layer window, such as, layer position in x any y coordinate
and dimension of layer in width and height. When overlay layers are enabled, then layers
are overlaid according to these parameters.
Page 22 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
First, make sure that the board is well configured to be programmed from the PC, and then
connect it to PC by programming cable.
Now, to begin, we first do bitstream programming to board. And we need to sure that the
right Hardware Platform and corresponding BitStream are selected. Then, do Program.
Successful bitstream programming can be monitored from Green LED on the target board.
Page 23 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
Make sure that the terminal is added and well connected to see the messages received from
the board after successful running of application.
In the terminal, we can see different options selection message to select different video
mixer related action. As per selection of option, we obtain different video mixer output,
output are detailed with different scenarios at the “final output section at last”.
Page 24 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
1. Interrupt Setup
This video mixer design runs under interrupt mode. Therefore, interrupt setup has to be
done. This interrupt setup consists of configuration of Generic Interrupt Controller (GIC).
GIC helps to connect the IP related interrupt to PS. Therefore, PS will be able to monitor
the interrupt and will execute Interrupt Service Routine (ISR).
This line of codes sets the Interrupt Service Routine, such as, it connects Video mixer
interrupt to Processing System Fabric Interrupt. XVMix_InterruptHandler is the
Interrupt handler of Video mixer.
This line of code now enables the GIC and starts the interrupt controller.
Page 25 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
2. Initialization of devices
These above lines of code initialize the Video mixer and TPG IPs.
These lines of code initialize detector VTC IP and generator VTC IP.
By these lines of code, the board asserts the hdmi_in_hpd, after which the video source
starts video stream through HDMI.
Page 26 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
These lines of code are used to reset the video mixer IP and TPG IP, through Reset AXI
GPIO IP. It resets the IPs for 1000us and then releases it for 1000us.
It disables the interrupt features and then enables the VTC IP as detector mode. Then 3
seconds delay is used to get the detection status of VTC IP. If status is received, then VTC
IP detects incoming video mode such as 720p or 1080p. And then, the video mode is
converted into timing information. This information is stored in timing pointer variable
TimingPtr.
The timing information that was stored in TimingPtr pointer variable, is now used to set
the timing parameters for generator VTC IP to generate the video mode timing. And then
Generator VTC IP is enabled.
Page 27 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
These lines of code, initially disables the master layer and then sets the master layer
resolution according to video mode, such as, resolution of incoming video stream detected
by detector VTC IP.
These lines of code consists of for loop statement for assigning buffer address to memory
mapped overlay layers one by one. For loop statement is so used because there are more
than one overlay layers in video mixer.
Initially, layer interfaced is checked. If layer is memory mapped layer, then if statement is
executed to set buffer address for this layer. While on the other hand, if layer is stream
layer, then buffer address is not set for it. This is because, stream layer does not require
buffer memory as it does not read from memory.
On the other hand, if overlay layer has different color format other than RGX8, then it is
required to set chroma buffer address.
Page 28 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
There are only two layers. Therefore, for loop only runs for twice. As the loop passes, the
buffer address is incremented through XVMIX_LAYER_ADDR_OFFSET value.
This line of code is used to copy the memory mapped overlay data into its buffer address.
The video mixer will read this data to display the overlay over the master layer. For writing
data to buffer address, we have to disable the cache and after writing, we need to enable the
cache.
These are the final coding for configuration of video mixer. First of all, the background
color is set. We can specify different background color. Currently, it is set to
XVMIX_BKGND_BLUE, that is, blue color with color depth value XVIDC_BPD_8, that is,
8 bit. The background color is only set for master layer. This is because, when master layer
is absent or disabled, then there is seen background color, which we have set.
After this, interrupt is enabled, by which, the video mixer starts in interrupt mode.
Therefore, it does not start automatically. Based on the interrupt handled, the IP works. In
such interrupt mode, the video mixer only works, depending upon two types of interrupt.
They are; ap_start and ap_ready. The first interrupt is generated, when IP starts and
second interrupt is generated when IP completes the frame processing and then gets ready
for processing another frame.
As each time IP generates the interrupt, this must be handled. For this, we need to set ISR.
This is set by using XVMix_SetCallback()function. Here “readFrame” is the ISR.
Each time interrupt is generated, the “readFrame” function is executed.
9. Configuration of TPG
Page 29 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
These lines of code are responsible for the configuration of TPG, as it sets the height and
width of test pattern, color format and type of test patter. Currently, type of test pattern is
set to XTPG_BKGND_COLOR_BARS, that is, vertical color bar. We can set different TPG
type.
The video mixer works based on the selection of different option as seen in the terminal.
For this, switching statement is used. According to selection value received from UART
terminal, the selection is made and respective operation is performed. From above code,
the last line of code, that is, XVMix_InterruptHandler(), is the interrupt handler of
Page 30 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
4. Final Output
When all steps go right, we will be able to see the output on the output monitor.
Page 31 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
4.1. Case 1:
When we make selection ‘1’, then case 1 is executed, which then leads to execution of enable
or disable of overlay layer including master layer. If master layer is disabled then background
color is displayed.
This is the output when both layers are enabled. Here, left red square is the memory mapped
layer while right one is the stream layer from TPG IP.
Page 32 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
4.2. Case 2:
When we make selection ‘2’, then case 2 is executed, which then leads to execution of code
that is related to setting the alpha value of selected overlay layer.
4.3. Case 3:
When we make selection ‘3’, then case 3 is executed, which then leads to execution of code
that is related to setting the scale factor of selected overlay layer.
Page 33 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
4.4. Case 4:
When we make selection ‘4’, then case 4 is executed, which then performs the changing the
position of selected overlay layer.
Page 34 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
4.5. Case 5:
When we make selection ‘5’, then case 5 is executed, which then displays the interrupt handled
message in the terminal.
This output shows the status of video mixer interrupt handling. As the interrupt is occurred
after processing the frame, the ISR is invoked which then prints this message in the terminal.
Page 35 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
4.6. Case 6:
When we make selection ‘6’, then case 6 is executed to display debug report status related to
selected overlay layer.
This output shows the debug report of entire video mixer IP.
4.7. Case 7:
And finally, when we make selection ‘7’, then case 7 is executed, which then performs the
software resets to start the running of application from beginning.
Page 36 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com
Reference Tutorial on “Video Mixer IP (v3.0) Feature Implementation on Zynq FPGA”
5. References
[1] Xilinx, "Video Mixer v3.0 LogiCORE IP Product Guide," Xilinx, 5 December 2018. [Online].
Available:
https://www.xilinx.com/support/documentation/ip_documentation/v_mix/v3_0/pg243-v-
mix.pdf.
[3] Xilinx,Inc, "Video Series 32 - Visualizing the Video_Mixer example design using the ZC702
evaulation kit's On-Board HDMI," [Online]. Available: https://forums.xilinx.com/t5/Design-and-
Debug-Techniques-Blog/Video-Series-32-Visualizing-the-Video-Mixer-example-design-using/ba-
p/1026338.
***
Thank you for going through this “Reference Tutorial”!
For any queries on “Video Mixture based Implementations” on Zynq UltraScale+ MPSoC or
Zynq 7000, please contact us at: [email protected]
Page 37 of 37
For any Queries, please mail us at: [email protected] or visit: www.logictronix.com