Technical Note PowerPC Embedded Processors Video Security with PowerPC

Size: px
Start display at page:

Download "Technical Note PowerPC Embedded Processors Video Security with PowerPC"

Transcription

1 Introduction For many reasons, digital platforms are becoming increasingly popular for video security applications. In comparison to traditional analog support, a digital solution can more effectively customize both system performance and cost in terms of resolution, frame acquisition frequency, storage, and transmission. This technical note describes a practical implementation, including test results and optimization, of a digital video platform based on IBM PowerPC technology. Considerations When developing a new system, one begins by considering how much pixel resolution per frame is needed and at what frequency images should be acquired. Based on these two parameters, there are numerous options available for compressing, broadcasting, and storing information. Compression: The MPEG algorithm has a long computational time requirement and the compression rate is very high. lternately, the Motion JPEG algorithm needs less computational time, but there is more data to transfer and store. Broadcasting: Ethernet network, Internet, wireless Storage: Compact Flash, hard disk igital Video Platform Implementation Most video surveillance systems do not require a very high resolution or a very quick sampling rate. This means that, with a fast enough transmission link, it is possible to transmit every frame acquired and compressed with a JPEG algorithm. If you choose a powerful enough CPU, you might be able to perform image compression in software and thereby reduce the system complexity and cost. The following example describes an implementation that performs image compression in-software with a powerful processor, such as the PowerPC 405EP running at 266 MHz, with the IBM PowerPC architecture. In this implementation (shown in the block diagram in Figure 1 on page 2), the video stream comes from a CC camera or from a video decoder. Suppose a resolution of 288 * 360 pixel (about 300 KB per frame) and a medium resolution of 12 frames per second. This amount of data must be managed by a very fast processor (one able to pick up all bytes, transfer them into a large memory, and make all the calculations required for the compression). Therefore, you need to choose a processor with a fast direct memory access (M) and sufficient million instructions per second (MIPS). n Ethernet MC enables sharing the video in a local network or with a remote host. The solution can be found in a processor like the PowerPC 405EP, which has all the required features: a powerful 32-bit core at 266 MHz, fast M channels, an SRM controller, and two Ethernet MCs. In Figure 1 on page 2, an SRM (K4S561632C) is used. This SRM offers a very effective compromise between speed, density, and price to fulfill the large memory requirements demanded for data manipulation. The SRM video decoder data bus and two flash memories (one for the boot phase of the system and one for the code storage) are connected on the processor bus. For these components, the following STMicroelectronics flash memory products are used: a flash with boot sectors (M50FW040N1T) and a high-density/lowcost flash for the code (M58LV064150N1T). STMicroelectronics can also supply the network interface with the MMI to be linked with the PowerPC MC (STE100P). ecember 8, 2003 Page 1

2 Figure 1. PowerPC 405EP block diagram Compression and Broadcasting K4S561632C SRM M50FW040N Boot Flash 4 Mb (512 k x 8-bit/256k x 16-bit) Package: 48 pin TSOP CMOS 3.0 Volt only, Boot Sector Flash Memory 256 Mb CMOS SRM Packages: 54 pin TSOP Freq.: 100 MHz Cas Latency: 3(2) S R M M58LV Flash 64 Mb (4M x 16-bit) CMOS 3.0 Volt-only package: 48 pin TSOP, Uniform Sector Flash Memory with Versatile I/O Memory Bus EBI PowerPC 405EP Controls M IQ T Video ecoding F I F O Video ecoder N L O G x2 channels Video Camera RJ45 STE100P Ethernet Controller E T H ETH I 2 C ebugging Interface The total bytes transfer in our hypothesis is: 288 * 360 * 3 bytes (per pixel) * 12 frame/s = 3.7 MB/s The video decoder bus has an 8-bit width, so having 133 MHz for the EBI (but 50 ns minimum access time for the decoder), we must insert 6 wait states and 2 clocks for a read of 8 bits. This means 1/133 * 8 = 60 ns to read 1 byte. You can then enable the 32 bytes buffer of the PowerPC M, considering that it takes 60 * 32 = about 2 µs to read 32 bytes. To this time, you must add the time spent in BURST writing the data in the SRM: 8 x (32 bits x 1/133 MHz) = 1.92 µs + (1/133 MHz) = 1.92 µs ns (where 7.52 ns is negligible compared to 1.92 µs) Our results show that we can transfer 1/2 µs * 32 bytes = 16 MB/s. We see that the transfer rate on the PowerPC 405EP EBI is so fast that we can consider transferring up to 4 camera video signals simultaneously. Page 2 ecember 8, 2003

3 fter all data are transferred in the SRM, we can start performing the JPEG algorithm that will reduce the size of data by 20 times. The JPEG algorithm reduces every frame from 300 KB to 15 KB. Test escription The following test was performed by Wind River on an IBM PowerPC platform to show the application environment and test results. Wind River performed tests on an Olivia platform (a PowerPC 405GP evaluation board made by Wind River) based on the PowerPC 405 VEST CPU. This chip is less powerful than the PowerPC 405EP used in the implementation described previously (150 MIPS for the VEST versus 300 MIPS for the PowerPC 405EP). In this test, Wind River PowerPC 405 Tornado 2 (TK ZC-0) was installed and Olivia band support package (BSP) (from Wind River and IBM) release 1.3/3 was used. For JPEG compression software, open source files were downloaded from the Internet: Time-stamps were located at the beginning and at the end of the encoding routine. n encoding time of T~235 µs was retrieved for each frame. The encoding time can be divided as shown in Figure 2. Figure 2. Encoding time where: Time 1: Reading BMP from RM Time 2: Compressed JPEG picture read and copied into its own buffer Time 3: Compression process The 158 µs are the result of the compression of 18 picture blocks of 16 * 360 each (16 lines of 360). Each block is thus encoded in 8~9 µs. Optimization and Results Our requirement of 12 frames/second gives 1000 µs /12 frames/s = 84 µs for frame-encoding time. Using the above test conditions, we could reach 235 µs for the whole operation. We then need to gain a ratio of 3:1 to stay within 84 µs. This gain seems achievable considering the following: CPU performance: Tests were performed on the VEST chip, given for 150 MIPS. The PowerPC 405EP is given for 300 MIPS. We can expect a gain in the range of 2:1. ecember 8, 2003 Page 3

4 Source code: The compression source code can be optimized. The main parts of the algorithm handle file reading and the block compression process (some loops can probably be avoided). Part of the compression algorithm can be coded in-assembler using the special extension instruction set macxxx. We expect a gain in the range of 2:1. rchitecture-specific: The use of the PowerPC 405EP cache could be tuned to perform part of the compression process in the instruction cache; this is to be studied in a future article. Conclusion Our conclusion is that, with software optimization and with a more powerful CPU such as the PowerPC 405EP, a compression time of less than 60 µs/frame (235 µs/4) for a CIF PL video picture with a compression ratio of 20:1 can be obtained. s an example, a hard disk size to store one day of video would consist of: 15 KB x 12 f/s x 3600 s x 24 = 15.5 GB instead of 300 KB x 12 f/s x 3600 s x 24 = 311 GB. Using the components listed in Table 1, it should be possible to share one 32-GB hard disk for two digital video streams per 24 hours. Table 1. Components and part numbers Component Part Number Supplier Boot Flash M50FW040N STMicroelectronics Processor PPC405EP IBM FLSH M58LV STMicroelectronics SRM K4S561632C Samsung Ethernet Controller STE100P STMicroelectronics rticle from Paolo Trere, Field pplication Engineer WBC Milano Revision Log Revision ate Contents of Modification ecember 8, 2003 Initial release (00). ecember 8, 2003 Page 4

5 Copyright International Business Machines Corporation 2003 ll Rights Reserved Printed in the United States of merica ecember 2003 The following are trademarks of International Business Machines Corporation in the United States, or other countries, or both. IBM IBM Logo PowerPC Other company, product, and service names may be trademarks or service marks of others. ll information contained in this document is subject to change without notice. The products described in this document are NOT intended for use in applications such as implantation, life support, or other hazardous uses where malfunction could result in death, bodily injury, or catastrophic property damage. The information contained in this document does not affect or change IBM product specifications or warranties. Nothing in this document shall operate as an express or implied license or indemnity under the intellectual property rights of IBM or third parties. ll information contained in this document was obtained in specific environments, and is presented as an illustration. The results obtained in other operating environments may vary. THE INFORMTION CONTINE IN THIS OCUMENT IS PROVIE ON N S IS BSIS. In no event will IBM be liable for damages arising directly or indirectly from any use of the information contained in this document. IBM Microelectronics ivision 2070 Route 52, Bldg. 330 Hopewell Junction, NY The IBM home page can be found at ibm.com The IBM Microelectronics ivision home page can be found ibm.com/chips ecember 8, 2003

GFT Channel Slave Generator

GFT Channel Slave Generator GFT1018 8 Channel Slave Generator Features 8 independent delay channels 1 ps time resolution < 100 ps rms jitter for optical triggered delays 1 second range Electrical or optical output Three trigger modes

More information

Cisco Explorer 8650HD DVR

Cisco Explorer 8650HD DVR Cisco Explorer 8650HD DVR The Cisco Explorer 8650HD DVR provides high quality video, audio, DVR, and two-way capabilities that cable operators have come to expect. The platform provides faster processing

More information

Implementation of an MPEG Codec on the Tilera TM 64 Processor

Implementation of an MPEG Codec on the Tilera TM 64 Processor 1 Implementation of an MPEG Codec on the Tilera TM 64 Processor Whitney Flohr Supervisor: Mark Franklin, Ed Richter Department of Electrical and Systems Engineering Washington University in St. Louis Fall

More information

Lossless Compression Algorithms for Direct- Write Lithography Systems

Lossless Compression Algorithms for Direct- Write Lithography Systems Lossless Compression Algorithms for Direct- Write Lithography Systems Hsin-I Liu Video and Image Processing Lab Department of Electrical Engineering and Computer Science University of California at Berkeley

More information

DT3162. Ideal Applications Machine Vision Medical Imaging/Diagnostics Scientific Imaging

DT3162. Ideal Applications Machine Vision Medical Imaging/Diagnostics Scientific Imaging Compatible Windows Software GLOBAL LAB Image/2 DT Vision Foundry DT3162 Variable-Scan Monochrome Frame Grabber for the PCI Bus Key Features High-speed acquisition up to 40 MHz pixel acquire rate allows

More information

Table 1. EBI Bus Control Signals

Table 1. EBI Bus Control Signals HT32 Series EBI /N: AN0470E Overview The parallel bus interface used for the HT32 microcontroller family, named EBI or the External Bus Interface, allows access to external asynchronous parallel bus devices

More information

OL_H264e HDTV H.264/AVC Baseline Video Encoder Rev 1.0. General Description. Applications. Features

OL_H264e HDTV H.264/AVC Baseline Video Encoder Rev 1.0. General Description. Applications. Features OL_H264e HDTV H.264/AVC Baseline Video Encoder Rev 1.0 General Description Applications Features The OL_H264e core is a hardware implementation of the H.264 baseline video compression algorithm. The core

More information

CBF500 High resolution Streak camera

CBF500 High resolution Streak camera High resolution Streak camera Features 400 900 nm spectral sensitivity 5 ps impulse response 10 ps trigger jitter Trigger external or command 5 to 50 ns analysis duration 1024 x 1024, 12-bit readout camera

More information

GALILEO Timing Receiver

GALILEO Timing Receiver GALILEO Timing Receiver The Space Technology GALILEO Timing Receiver is a triple carrier single channel high tracking performances Navigation receiver, specialized for Time and Frequency transfer application.

More information

AN-ENG-001. Using the AVR32 SoC for real-time video applications. Written by Matteo Vit, Approved by Andrea Marson, VERSION: 1.0.0

AN-ENG-001. Using the AVR32 SoC for real-time video applications. Written by Matteo Vit, Approved by Andrea Marson, VERSION: 1.0.0 Written by Matteo Vit, R&D Engineer Dave S.r.l. Approved by Andrea Marson, CTO Dave S.r.l. DAVE S.r.l. www.dave.eu VERSION: 1.0.0 DOCUMENT CODE: AN-ENG-001 NO. OF PAGES: 8 AN-ENG-001 Using the AVR32 SoC

More information

GM69010H DisplayPort, HDMI, and component input receiver Features Applications

GM69010H DisplayPort, HDMI, and component input receiver Features Applications DisplayPort, HDMI, and component input receiver Data Brief Features DisplayPort 1.1 compliant receiver DisplayPort link comprising four main lanes and one auxiliary channel HDMI 1.3 compliant receiver

More information

AE16 DIGITAL AUDIO WORKSTATIONS

AE16 DIGITAL AUDIO WORKSTATIONS AE16 DIGITAL AUDIO WORKSTATIONS 1. Storage Requirements In a conventional linear PCM system without data compression the data rate (bits/sec) from one channel of digital audio will depend on the sampling

More information

PCI Express JPEG Frame Grabber Hardware Manual Model 817 Rev.E April 09

PCI Express JPEG Frame Grabber Hardware Manual Model 817 Rev.E April 09 PCI Express JPEG Frame Grabber Hardware Manual Model 817 Rev.E April 09 Table of Contents TABLE OF CONTENTS...2 LIMITED WARRANTY...3 SPECIAL HANDLING INSTRUCTIONS...4 INTRODUCTION...5 OPERATION...6 Video

More information

AND9191/D. KAI-2093 Image Sensor and the SMPTE Standard APPLICATION NOTE.

AND9191/D. KAI-2093 Image Sensor and the SMPTE Standard APPLICATION NOTE. KAI-09 Image Sensor and the SMPTE Standard APPLICATION NOTE Introduction The KAI 09 image sensor is designed to provide HDTV resolution video at 0 fps in a progressive scan mode. In this mode, the sensor

More information

EAN-Performance and Latency

EAN-Performance and Latency EAN-Performance and Latency PN: EAN-Performance-and-Latency 6/4/2018 SightLine Applications, Inc. Contact: Web: sightlineapplications.com Sales: sales@sightlineapplications.com Support: support@sightlineapplications.com

More information

Synchronization Issues During Encoder / Decoder Tests

Synchronization Issues During Encoder / Decoder Tests OmniTek PQA Application Note: Synchronization Issues During Encoder / Decoder Tests Revision 1.0 www.omnitek.tv OmniTek Advanced Measurement Technology 1 INTRODUCTION The OmniTek PQA system is very well

More information

Hardware Platform Design for Real-Time Video Applications

Hardware Platform Design for Real-Time Video Applications Hardware Platform Design for Real-Time Video pplications. Ben titallah*, P. Kadionik**, F. Ghozzi*, P.uel**, N. Masmoudi*, P.Marchegay** *Laboratoire d Electronique et des Technologies de l Information

More information

GM60028H. DisplayPort transmitter. Features. Applications

GM60028H. DisplayPort transmitter. Features. Applications DisplayPort transmitter Data Brief Features DisplayPort 1.1a compliant transmitter HDCP 1.3 support DisplayPort link comprising four main lanes and one auxiliary channel Output bandwidth sufficient to

More information

Commsonic. Satellite FEC Decoder CMS0077. Contact information

Commsonic. Satellite FEC Decoder CMS0077. Contact information Satellite FEC Decoder CMS0077 Fully compliant with ETSI EN-302307-1 / -2. The IP core accepts demodulated digital IQ inputs and is designed to interface directly with the CMS0059 DVB-S2 / DVB-S2X Demodulator

More information

DT3130 Series for Machine Vision

DT3130 Series for Machine Vision Compatible Windows Software DT Vision Foundry GLOBAL LAB /2 DT3130 Series for Machine Vision Simultaneous Frame Grabber Boards for the Key Features Contains the functionality of up to three frame grabbers

More information

Nutaq. PicoDigitizer-125. Up to 64 Channels, 125 MSPS ADCs, FPGA-based DAQ Solution With Up to 32 Channels, 1000 MSPS DACs PRODUCT SHEET. nutaq.

Nutaq. PicoDigitizer-125. Up to 64 Channels, 125 MSPS ADCs, FPGA-based DAQ Solution With Up to 32 Channels, 1000 MSPS DACs PRODUCT SHEET. nutaq. Nutaq Up to 64 Channels, 125 MSPS ADCs, FPGA-based DAQ Solution With Up to 32 Channels, 1000 MSPS DACs PRODUCT SHEET QUEBEC I MONTREAL I N E W YO R K I nutaq.com Nutaq The PicoDigitizer 125-Series is a

More information

OL_H264MCLD Multi-Channel HDTV H.264/AVC Limited Baseline Video Decoder V1.0. General Description. Applications. Features

OL_H264MCLD Multi-Channel HDTV H.264/AVC Limited Baseline Video Decoder V1.0. General Description. Applications. Features OL_H264MCLD Multi-Channel HDTV H.264/AVC Limited Baseline Video Decoder V1.0 General Description Applications Features The OL_H264MCLD core is a hardware implementation of the H.264 baseline video compression

More information

Multicore Design Considerations

Multicore Design Considerations Multicore Design Considerations Multicore: The Forefront of Computing Technology We re not going to have faster processors. Instead, making software run faster in the future will mean using parallel programming

More information

GM68020H. DisplayPort receiver. Features. Applications

GM68020H. DisplayPort receiver. Features. Applications DisplayPort receiver Data Brief Features DisplayPort 1.1a compliant receiver HDCP 1.3 support DisplayPort link comprising four main lanes and one auxiliary channel Input bandwidth sufficient to receive

More information

Cisco Explorer 4642HD and 4652HD High- Definition Set-Tops

Cisco Explorer 4642HD and 4652HD High- Definition Set-Tops Data Sheet Cisco Explorer 4642HD and 4652HD High- Definition Set-Tops Power, flexibility, and advanced security features highlight the Cisco Explorer 4642HD and 4652HD High-Definition Set-Tops. Additionally,

More information

FEATURES MPEG4/MJPEG DVR

FEATURES MPEG4/MJPEG DVR FEATURES MPEG4/MJPEG DVR Technology Compression format providing crystal clear images with real time performance. Multiplex Allow live display, record, playback, backup and network operation at the same

More information

Qs7-1 DEVELOPMENT OF AN IMAGE COMPRESSION AND AUTHENTICATION MODULE FOR VIDEO SURVEILLANCE SYSTEMS. DlSTRlBUllON OF THIS DOCUMENT IS UNLlditEb,d

Qs7-1 DEVELOPMENT OF AN IMAGE COMPRESSION AND AUTHENTICATION MODULE FOR VIDEO SURVEILLANCE SYSTEMS. DlSTRlBUllON OF THIS DOCUMENT IS UNLlditEb,d DEVELOPMENT OF AN IMAGE COMPRESSION AND AUTHENTICATION MODULE FOR VIDEO SURVEILLANCE SYSTEMS Qs7-1 William R. Hale Sandia National Laboratories Albuquerque, NM 87185 Charles S. Johnson Sandia National

More information

Hardware Implementation of Block GC3 Lossless Compression Algorithm for Direct-Write Lithography Systems

Hardware Implementation of Block GC3 Lossless Compression Algorithm for Direct-Write Lithography Systems Hardware Implementation of Block GC3 Lossless Compression Algorithm for Direct-Write Lithography Systems Hsin-I Liu, Brian Richards, Avideh Zakhor, and Borivoje Nikolic Dept. of Electrical Engineering

More information

B. The specified product shall be manufactured by a firm whose quality system is in compliance with the I.S./ISO 9001/EN 29001, QUALITY SYSTEM.

B. The specified product shall be manufactured by a firm whose quality system is in compliance with the I.S./ISO 9001/EN 29001, QUALITY SYSTEM. VideoJet 8000 8-Channel, MPEG-2 Encoder ARCHITECTURAL AND ENGINEERING SPECIFICATION Section 282313 Closed Circuit Video Surveillance Systems PART 2 PRODUCTS 2.01 MANUFACTURER A. Bosch Security Systems

More information

Video Disk Recorder DSR-DR1000

Video Disk Recorder DSR-DR1000 Video Disk Recorder F o r P r o f e s s i o n a l R e s u l t s 01 FEATURES Features Product Overview Extensive DVCAM-stream recording time The incorporates a large-capacity hard drive, which can record

More information

SignalTap Plus System Analyzer

SignalTap Plus System Analyzer SignalTap Plus System Analyzer June 2000, ver. 1 Data Sheet Features Simultaneous internal programmable logic device (PLD) and external (board-level) logic analysis 32-channel external logic analyzer 166

More information

Cisco Explorer 4640HD and 4650HD High-Definition Set-Tops

Cisco Explorer 4640HD and 4650HD High-Definition Set-Tops Cisco Explorer 4640HD and 4650HD High-Definition Set-Tops Power, flexibility, and advanced security features highlight the Cisco Explorer 4640HD and 4650HD High-Definition Set-Tops. The 4640HD and 4650HD

More information

SOC Single Channel H264 + Audio Encoder module

SOC Single Channel H264 + Audio Encoder module SOC Single Channel H264 + Audio Encoder module Integration Manual Revision 1.1 06/16/2016 2016 SOC Technologies Inc. SOC is disclosing this user manual (the "Documentation") to you solely for use in the

More information

SCode V3.5.1 (SP-601 and MP-6010) Digital Video Network Surveillance System

SCode V3.5.1 (SP-601 and MP-6010) Digital Video Network Surveillance System V3.5.1 (SP-601 and MP-6010) Digital Video Network Surveillance System Core Technologies Image Compression MPEG4. It supports high compression rate with good image quality and reduces the requirement of

More information

IEEE802.11a Based Wireless AV Module(WAVM) with Digital AV Interface. Outline

IEEE802.11a Based Wireless AV Module(WAVM) with Digital AV Interface. Outline IEEE802.11a Based Wireless AV Module() with Digital AV Interface TOSHIBA Corp. T.Wakutsu, N.Shibuya, E.Kamagata, T.Matsumoto, Y.Nagahori, T.Sakamoto, Y.Unekawa, K.Tagami, M.Serizawa Outline Background

More information

R&S TS-BCAST DVB-H IP Packet Inserter Compact DVB H signal generator with integrated IP packet inserter

R&S TS-BCAST DVB-H IP Packet Inserter Compact DVB H signal generator with integrated IP packet inserter Test & Measurement Product Brochure 02.00 R&S TS-BCAST DVB-H IP Packet Inserter Compact DVB H signal generator with integrated IP packet inserter R&S TS-BCAST DVB-H IP packet Inserter At a glance The R&S

More information

SCode V3.5.1 (SP-501 and MP-9200) Digital Video Network Surveillance System

SCode V3.5.1 (SP-501 and MP-9200) Digital Video Network Surveillance System V3.5.1 (SP-501 and MP-9200) Digital Video Network Surveillance System Core Technologies Image Compression MPEG4. It supports high compression rate with good image quality and reduces the requirement of

More information

PMC-704 Dual Independent Graphics Input/Output PMC

PMC-704 Dual Independent Graphics Input/Output PMC P R O D U C T D ATA S H E E T PMC-704 Dual Independent Graphics Input/Output PMC Features ATI Technologies RADEON Mobility 9000 Visual Processor Unit with - 64 Mbytes integrated high-speed DDR SDRAM -

More information

Pivoting Object Tracking System

Pivoting Object Tracking System Pivoting Object Tracking System [CSEE 4840 Project Design - March 2009] Damian Ancukiewicz Applied Physics and Applied Mathematics Department da2260@columbia.edu Jinglin Shen Electrical Engineering Department

More information

DT9837 Series. High Performance, USB Powered Modules for Sound & Vibration Analysis. Key Features:

DT9837 Series. High Performance, USB Powered Modules for Sound & Vibration Analysis. Key Features: DT9837 Series High Performance, Powered Modules for Sound & Vibration Analysis The DT9837 Series high accuracy dynamic signal acquisition modules are ideal for portable noise, vibration, and acoustic measurements.

More information

AT720USB. Digital Video Interfacing Products. DVB-C (QAM-B, 8VSB) Input Receiver & Recorder & TS Player DVB-ASI & DVB-SPI outputs

AT720USB. Digital Video Interfacing Products. DVB-C (QAM-B, 8VSB) Input Receiver & Recorder & TS Player DVB-ASI & DVB-SPI outputs Digital Video Interfacing Products AT720USB DVB-C (QAM-B, 8VSB) Input Receiver & Recorder & TS Player DVB-ASI & DVB-SPI outputs Standard Features - High Speed USB 2.0. - Windows XP, Vista, Win 7 ( 64bit

More information

Digital Media. Daniel Fuller ITEC 2110

Digital Media. Daniel Fuller ITEC 2110 Digital Media Daniel Fuller ITEC 2110 Daily Question: Video How does interlaced scan display video? Email answer to DFullerDailyQuestion@gmail.com Subject Line: ITEC2110-26 Housekeeping Project 4 is assigned

More information

Communication Theory and Engineering

Communication Theory and Engineering Communication Theory and Engineering Master's Degree in Electronic Engineering Sapienza University of Rome A.A. 2018-2019 Practice work 14 Image signals Example 1 Calculate the aspect ratio for an image

More information

Part 1: Introduction to Computer Graphics

Part 1: Introduction to Computer Graphics Part 1: Introduction to Computer Graphics 1. Define computer graphics? The branch of science and technology concerned with methods and techniques for converting data to or from visual presentation using

More information

Taos - A Revolutionary Zero Latency, Multi-Channel, High-Definition H.264 Video Codec Architecture

Taos - A Revolutionary Zero Latency, Multi-Channel, High-Definition H.264 Video Codec Architecture WHITE PAPER Taos - A Revolutionary Zero Latency, Multi-Channel, High-Definition H.264 Video Codec Architecture Introduction The Taos H.264 video codec architecture addresses crucial requirements for latency,

More information

Solutions to Embedded System Design Challenges Part II

Solutions to Embedded System Design Challenges Part II Solutions to Embedded System Design Challenges Part II Time-Saving Tips to Improve Productivity In Embedded System Design, Validation and Debug Hi, my name is Mike Juliana. Welcome to today s elearning.

More information

Digital Representation

Digital Representation Chapter three c0003 Digital Representation CHAPTER OUTLINE Antialiasing...12 Sampling...12 Quantization...13 Binary Values...13 A-D... 14 D-A...15 Bit Reduction...15 Lossless Packing...16 Lower f s and

More information

Modular DAA with 2/4 Wire Convertor. XE0002D Block Diagram

Modular DAA with 2/4 Wire Convertor. XE0002D Block Diagram XE0002D August 2005 Modular DAA with 2/4 Wire Convertor Description The XE0002D is a compact DAA module designed for applications requiring voice, data or fax transfer. It complies with FCC Part 68 rules

More information

Rec. ITU-R BT RECOMMENDATION ITU-R BT * WIDE-SCREEN SIGNALLING FOR BROADCASTING

Rec. ITU-R BT RECOMMENDATION ITU-R BT * WIDE-SCREEN SIGNALLING FOR BROADCASTING Rec. ITU-R BT.111-2 1 RECOMMENDATION ITU-R BT.111-2 * WIDE-SCREEN SIGNALLING FOR BROADCASTING (Signalling for wide-screen and other enhanced television parameters) (Question ITU-R 42/11) Rec. ITU-R BT.111-2

More information

VLSI Chip Design Project TSEK06

VLSI Chip Design Project TSEK06 VLSI Chip Design Project TSEK06 Project Description and Requirement Specification Version 1.1 Project: High Speed Serial Link Transceiver Project number: 4 Project Group: Name Project members Telephone

More information

IMS B007 A transputer based graphics board

IMS B007 A transputer based graphics board IMS B007 A transputer based graphics board INMOS Technical Note 12 Ray McConnell April 1987 72-TCH-012-01 You may not: 1. Modify the Materials or use them for any commercial purpose, or any public display,

More information

ICUE GRID. IP Video Wall Management and Control KEY FEATURES PRODUCT DESCRIPTION

ICUE GRID. IP Video Wall Management and Control KEY FEATURES PRODUCT DESCRIPTION IP Video Wall Management and Control PRODUCT DESCRIPTION ICUE-GRID is an IP Video Wall Presenter for multiple content sources within the video wall. It allows complete on-the-fly control over the visualised

More information

AT70XUSB. Digital Video Interfacing Products

AT70XUSB. Digital Video Interfacing Products Digital Video Interfacing Products AT70XUSB DVB-C (QAM-A) Cable TV Input DVB-C to DVB-ASI Converter Receiver, Recorder & Converter Small Handheld size No External Power Supply needed Standard Features

More information

V6118 EM MICROELECTRONIC - MARIN SA. 2, 4 and 8 Mutiplex LCD Driver

V6118 EM MICROELECTRONIC - MARIN SA. 2, 4 and 8 Mutiplex LCD Driver EM MICROELECTRONIC - MARIN SA 2, 4 and 8 Mutiplex LCD Driver Description The is a universal low multiplex LCD driver. The version 2 drives two ways multiplex (two blackplanes) LCD, the version 4, four

More information

Using the VideoEdge IP Encoder with Intellex IP

Using the VideoEdge IP Encoder with Intellex IP This application note explains the tradeoffs inherent in using IP video and provides guidance on optimal configuration of the VideoEdge IP encoder with Intellex IP. The VideoEdge IP Encoder is a high performance

More information

Chapter 1: Data Storage. Copyright 2015 Pearson Education, Inc.

Chapter 1: Data Storage. Copyright 2015 Pearson Education, Inc. Chapter 1: Data Storage Chapter 1: Data Storage 1.1 Bits and Their Storage 1.2 Main Memory 1.3 Mass Storage 1.4 Representing Information as Bit Patterns 1.5 The Binary System 1-2 Chapter 1: Data Storage

More information

Understanding Compression Technologies for HD and Megapixel Surveillance

Understanding Compression Technologies for HD and Megapixel Surveillance When the security industry began the transition from using VHS tapes to hard disks for video surveillance storage, the question of how to compress and store video became a top consideration for video surveillance

More information

Obsolete Product(s) - Obsolete Product(s)

Obsolete Product(s) - Obsolete Product(s) Single-chip digital video format converter Data Brief Features Package: 208-pin PQFP Digital input Interlaced/progressive output Motion Adaptive Noise Reduction Cross Color Suppressor (CCS) Per-pixel MADi/patented

More information

Design Challenge of a QuadHDTV Video Decoder

Design Challenge of a QuadHDTV Video Decoder Design Challenge of a QuadHDTV Video Decoder Youn-Long Lin Department of Computer Science National Tsing Hua University MPSOC27, Japan More Pixels YLLIN NTHU-CS 2 NHK Proposes UHD TV Broadcast Super HiVision

More information

Data Storage and Manipulation

Data Storage and Manipulation Data Storage and Manipulation Data Storage Bits and Their Storage: Gates and Flip-Flops, Other Storage Techniques, Hexadecimal notation Main Memory: Memory Organization, Measuring Memory Capacity Mass

More information

SMPTE-259M/DVB-ASI Scrambler/Controller

SMPTE-259M/DVB-ASI Scrambler/Controller SMPTE-259M/DVB-ASI Scrambler/Controller Features Fully compatible with SMPTE-259M Fully compatible with DVB-ASI Operates from a single +5V supply 44-pin PLCC package Encodes both 8- and 10-bit parallel

More information

News from Rohde&Schwarz Number 195 (2008/I)

News from Rohde&Schwarz Number 195 (2008/I) BROADCASTING TV analyzers 45120-2 48 R&S ETL TV Analyzer The all-purpose instrument for all major digital and analog TV standards Transmitter production, installation, and service require measuring equipment

More information

8/30/2010. Chapter 1: Data Storage. Bits and Bit Patterns. Boolean Operations. Gates. The Boolean operations AND, OR, and XOR (exclusive or)

8/30/2010. Chapter 1: Data Storage. Bits and Bit Patterns. Boolean Operations. Gates. The Boolean operations AND, OR, and XOR (exclusive or) Chapter 1: Data Storage Bits and Bit Patterns 1.1 Bits and Their Storage 1.2 Main Memory 1.3 Mass Storage 1.4 Representing Information as Bit Patterns 1.5 The Binary System 1.6 Storing Integers 1.8 Data

More information

Digital Video Telemetry System

Digital Video Telemetry System Digital Video Telemetry System Item Type text; Proceedings Authors Thom, Gary A.; Snyder, Edwin Publisher International Foundation for Telemetering Journal International Telemetering Conference Proceedings

More information

STi5105 High-performance advanced SD decoder for set-top box Features

STi5105 High-performance advanced SD decoder for set-top box Features High-performance advanced SD decoder for set-top box Data Brief Features Enhanced ST20 32-bit VL-RISC CPU 200 MHz, single cycle cache, 4 Kbyte instruction cache, 4 Kbyte data cache, 2 Kbyte SRAM Unified

More information

An FPGA Based Solution for Testing Legacy Video Displays

An FPGA Based Solution for Testing Legacy Video Displays An FPGA Based Solution for Testing Legacy Video Displays Dale Johnson Geotest Marvin Test Systems Abstract The need to support discrete transistor-based electronics, TTL, CMOS and other technologies developed

More information

PCI Frame Grabber. Model 611 (Rev.D)

PCI Frame Grabber. Model 611 (Rev.D) SENSORAY CO., INC. PCI Frame Grabber Model 611 (Rev.D) July 2001 Sensoray 2001 7313 SW Tech Center Dr. Tigard, OR 97223 Phone 503.684.8073 Fax 503.684.8164 sales@sensoray.com www.sensoray.com Table of

More information

DT9834 Series High-Performance Multifunction USB Data Acquisition Modules

DT9834 Series High-Performance Multifunction USB Data Acquisition Modules DT9834 Series High-Performance Multifunction USB Data Acquisition Modules DT9834 Series High Performance, Multifunction USB DAQ Key Features: Simultaneous subsystem operation on up to 32 analog input channels,

More information

Content storage architectures

Content storage architectures Content storage architectures DAS: Directly Attached Store SAN: Storage Area Network allocates storage resources only to the computer it is attached to network storage provides a common pool of storage

More information

ECMF4-20A42N10. Common mode filter with ESD protection for high speed serial interface. Features. Applications. Description

ECMF4-20A42N10. Common mode filter with ESD protection for high speed serial interface. Features. Applications. Description Common mode filter with ESD protection for high speed serial interface Features Datasheet - production data Figure 1. Pin configuration (top view) 5GHz differential bandwidth to comply with HDMI 2.0, HDMI

More information

Evaluation of SGI Vizserver

Evaluation of SGI Vizserver Evaluation of SGI Vizserver James E. Fowler NSF Engineering Research Center Mississippi State University A Report Prepared for the High Performance Visualization Center Initiative (HPVCI) March 31, 2000

More information

EECS150 - Digital Design Lecture 12 - Video Interfacing. Recap and Outline

EECS150 - Digital Design Lecture 12 - Video Interfacing. Recap and Outline EECS150 - Digital Design Lecture 12 - Video Interfacing Oct. 8, 2013 Prof. Ronald Fearing Electrical Engineering and Computer Sciences University of California, Berkeley (slides courtesy of Prof. John

More information

Display Interfaces. Display solutions from Inforce. MIPI-DSI to Parallel RGB format

Display Interfaces. Display solutions from Inforce. MIPI-DSI to Parallel RGB format Display Interfaces Snapdragon processors natively support a few popular graphical displays like MIPI-DSI/LVDS and HDMI or a combination of these. HDMI displays that output any of the standard resolutions

More information

PCM ENCODING PREPARATION... 2 PCM the PCM ENCODER module... 4

PCM ENCODING PREPARATION... 2 PCM the PCM ENCODER module... 4 PCM ENCODING PREPARATION... 2 PCM... 2 PCM encoding... 2 the PCM ENCODER module... 4 front panel features... 4 the TIMS PCM time frame... 5 pre-calculations... 5 EXPERIMENT... 5 patching up... 6 quantizing

More information

Macronix OctaFlash Serial NOR Flash White Paper

Macronix OctaFlash Serial NOR Flash White Paper Macronix OctaFlash Serial NOR Flash White Paper Introduction Macronix, a leading provider of non-volatile memory solutions, is the world s leading supplier of ROM and Serial NOR Flash products. Macronix

More information

USBLC6-4SC6Y. Automotive very low capacitance ESD protection. Features. Applications. Description. Benefits. Complies with the following standards

USBLC6-4SC6Y. Automotive very low capacitance ESD protection. Features. Applications. Description. Benefits. Complies with the following standards Automotive very low capacitance ESD protection Datasheet production data Features 4 data-line protection Protects V BUS Very low capacitance: 3 pf Very low leakage current: 10 na SOT23-6L package RoHS

More information

VGA Controller. Leif Andersen, Daniel Blakemore, Jon Parker University of Utah December 19, VGA Controller Components

VGA Controller. Leif Andersen, Daniel Blakemore, Jon Parker University of Utah December 19, VGA Controller Components VGA Controller Leif Andersen, Daniel Blakemore, Jon Parker University of Utah December 19, 2012 Fig. 1. VGA Controller Components 1 VGA Controller Leif Andersen, Daniel Blakemore, Jon Parker University

More information

Interfacing the TLC5510 Analog-to-Digital Converter to the

Interfacing the TLC5510 Analog-to-Digital Converter to the Application Brief SLAA070 - April 2000 Interfacing the TLC5510 Analog-to-Digital Converter to the TMS320C203 DSP Perry Miller Mixed Signal Products ABSTRACT This application report is a summary of the

More information

QRF5000 MDU ENCODER. Data Sheet

QRF5000 MDU ENCODER. Data Sheet Radiant Communications Corporation 5001 Hadley Road South Plainfield NJ 07080 Tel (908) 757-7444 Fax (908) 757-8666 WWW.RCCFIBER.COM QRF5000 MDU ENCODER Data Sheet Version 1.1 1 Caution Verify proper grounding

More information

Video Disk Recorder DSR-DR1000A/DR1000AP

Video Disk Recorder DSR-DR1000A/DR1000AP Video Disk Recorder /DR1000AP 04 INTRODUCTION An Affordable, yet Powerful DVCAM Hard Disk Recorder, Offering a Further Enhanced Level of Operational Convenience and New Opportunities Since its introduction

More information

AT660PCI. Digital Video Interfacing Products. DVB-S2/S (QPSK) Satellite Receiver & Recorder & TS Player DVB-ASI & DVB-SPI outputs

AT660PCI. Digital Video Interfacing Products. DVB-S2/S (QPSK) Satellite Receiver & Recorder & TS Player DVB-ASI & DVB-SPI outputs Digital Video Interfacing Products AT660PCI DVB-S2/S (QPSK) Satellite Receiver & Recorder & TS Player DVB-ASI & DVB-SPI outputs Standard Features - PCI 2.2, 32 bit, 33/66MHz 3.3V. - Bus Master DMA, Scatter

More information

ATI Theater 650 Pro: Bringing TV to the PC. Perfecting Analog and Digital TV Worldwide

ATI Theater 650 Pro: Bringing TV to the PC. Perfecting Analog and Digital TV Worldwide ATI Theater 650 Pro: Bringing TV to the PC Perfecting Analog and Digital TV Worldwide Introduction: A Media PC Revolution After years of build-up, the media PC revolution has begun. Driven by such trends

More information

First Encounters with the ProfiTap-1G

First Encounters with the ProfiTap-1G First Encounters with the ProfiTap-1G Contents Introduction... 3 Overview... 3 Hardware... 5 Installation... 7 Talking to the ProfiTap-1G... 14 Counters... 14 Graphs... 15 Meters... 17 Log... 17 Features...

More information

IQDEC01. Composite Decoder, Synchronizer, Audio Embedder with Noise Reduction - 12 bit. Does this module suit your application?

IQDEC01. Composite Decoder, Synchronizer, Audio Embedder with Noise Reduction - 12 bit. Does this module suit your application? The IQDEC01 provides a complete analog front-end with 12-bit composite decoding, synchronization and analog audio ingest in one compact module. It is ideal for providing the bridge between analog legacy

More information

Model UH-2C-3S 3-port HDMI UTP Extender

Model UH-2C-3S 3-port HDMI UTP Extender Model UH-2C-3S 3-port HDMI UTP Extender Split and Extend HDMI Audio Video to 3 remote receiver on 2 Cat6 Cables includes one local HDMI loop output UMA1191 Rev. A SUPPORT & ORDERING INFORMATION For technical

More information

USBLC6-2SC6Y. Automotive very low capacitance ESD protection. Features. Applications. Description. Benefits. Complies with the following standards

USBLC6-2SC6Y. Automotive very low capacitance ESD protection. Features. Applications. Description. Benefits. Complies with the following standards Automotive very low capacitance ESD protection Datasheet production data Features 2 data lines protected Protects V BUS Very low capacitance: 2.5 pf Very low leakage current: 10 na SOT23-6L package RoHS

More information

Maintenance/ Discontinued

Maintenance/ Discontinued A/D, D/C Converters for Image Signal Processing MN657011H Low Power 8-Bit, 3-Channel CMOS D/A Converter for Image Processing Overview The MN657011H is an 8-bit, 3-channel CMOS digitalto-analog converter

More information

Display and NetViz technology inside Air Traffic Management architecture

Display and NetViz technology inside Air Traffic Management architecture Esterline Belgium BVBA Pres. Kennedypark 35 A 8500 Kortrijk Belgium Tel: +32 56 27 20 00 Fax: +32 56 27 21 00 www.esterline.com NYSE Symbol: ESL White Paper Featuring CODIS, CMC ELECTRONICS and TREALITY

More information

AND9185/D. Large Signal Output Optimization for Interline CCD Image Sensors APPLICATION NOTE

AND9185/D. Large Signal Output Optimization for Interline CCD Image Sensors APPLICATION NOTE Large Signal Output Optimization for Interline CCD Image Sensors General Description This application note applies to the following Interline Image Sensors and should be used with each device s specification

More information

Senior Design Project: Blind Transmitter

Senior Design Project: Blind Transmitter Senior Design Project: Blind Transmitter Marvin Lam Mamadou Sall Ramtin Malool March 19, 2007 As the technology industry progresses we cannot help but to note that products are becoming both smaller and

More information

AT2700USB. Digital Video Interfacing Products. DVB-C QAM-A/B/C IF and RF ( VHF & UHF ) Output DVB-ASI & DVB-SPI Inputs

AT2700USB. Digital Video Interfacing Products. DVB-C QAM-A/B/C IF and RF ( VHF & UHF ) Output DVB-ASI & DVB-SPI Inputs Digital Video Interfacing Products AT2700USB DVB-C QAM-A/B/C IF and RF ( VHF & UHF ) Output DVB-ASI & DVB-SPI Inputs Standard Features DVB-C Modulator with VHF & UHF up converter. - High Speed USB 2.0.

More information

Frame Processing Time Deviations in Video Processors

Frame Processing Time Deviations in Video Processors Tensilica White Paper Frame Processing Time Deviations in Video Processors May, 2008 1 Executive Summary Chips are increasingly made with processor designs licensed as semiconductor IP (intellectual property).

More information

Hi3520A H.264 Codec Processor. Brief Data Sheet. Issue 01. Date

Hi3520A H.264 Codec Processor. Brief Data Sheet. Issue 01. Date Brief Data Sheet Issue 01 Date 2012-05-04 . 2012. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means without prior written consent of HiSilicon Technologies

More information

DC-105 Quick Installation Guide

DC-105 Quick Installation Guide DC-105 Quick Installation Guide PACKAGE CONTENTS 2 POWER ON 2 CONNECT TO A DVB-T RECEIVER 3 ADJUST THE FOCUS OF THE LENS 3 CONNECT TO A CVBS MONITOR 4 MIC-IN 4 USB UART DONGLE 5 MONITOR BOOT MESSAGES 7

More information

OPEN STANDARD GIGABIT ETHERNET LOW LATENCY VIDEO DISTRIBUTION ARCHITECTURE

OPEN STANDARD GIGABIT ETHERNET LOW LATENCY VIDEO DISTRIBUTION ARCHITECTURE 2012 NDIA GROUND VEHICLE SYSTEMS ENGINEERING AND TECHNOLOGY SYMPOSIUM VEHICLE ELECTRONICS AND ARCHITECTURE (VEA) MINI-SYMPOSIUM AUGUST 14-16, MICHIGAN OPEN STANDARD GIGABIT ETHERNET LOW LATENCY VIDEO DISTRIBUTION

More information

Stream Labs, JSC. Stream Logo SDI 2.0. User Manual

Stream Labs, JSC. Stream Logo SDI 2.0. User Manual Stream Labs, JSC. Stream Logo SDI 2.0 User Manual Nov. 2004 LOGO GENERATOR Stream Logo SDI v2.0 Stream Logo SDI v2.0 is designed to work with 8 and 10 bit serial component SDI input signal and 10-bit output

More information

How Does H.264 Work? SALIENT SYSTEMS WHITE PAPER. Understanding video compression with a focus on H.264

How Does H.264 Work? SALIENT SYSTEMS WHITE PAPER. Understanding video compression with a focus on H.264 SALIENT SYSTEMS WHITE PAPER How Does H.264 Work? Understanding video compression with a focus on H.264 Salient Systems Corp. 10801 N. MoPac Exp. Building 3, Suite 700 Austin, TX 78759 Phone: (512) 617-4800

More information

Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme

Lehrstuhl für Informatik 4 Kommunikation und verteilte Systeme Chapter 2: Basics Chapter 3: Multimedia Systems Communication Aspects and Services Chapter 4: Multimedia Systems Storage Aspects Optical Storage Media Multimedia File Systems Multimedia Database Systems

More information

MPEG decoder Case. K.A. Vissers UC Berkeley Chamleon Systems Inc. and Pieter van der Wolf. Philips Research Eindhoven, The Netherlands

MPEG decoder Case. K.A. Vissers UC Berkeley Chamleon Systems Inc. and Pieter van der Wolf. Philips Research Eindhoven, The Netherlands MPEG decoder Case K.A. Vissers UC Berkeley Chamleon Systems Inc. and Pieter van der Wolf Philips Research Eindhoven, The Netherlands 1 Outline Introduction Consumer Electronics Kahn Process Networks Revisited

More information

VG5761, VG5661 VD5761, VD5661 Data brief

VG5761, VG5661 VD5761, VD5661 Data brief VG5761, VG5661 VD5761, VD5661 Data brief Automotive 1.6-2.3 megapixel high-dynamic global shutter image sensor Features Product summary Root part number Resolution (megapixel) Package VG5661 1.6 IM2BGA

More information