A NUMERIC COMPRESSION ALGORITHM FOR THE HP PRIME CALCULATOR DR. JACKIE F. WOLDERING HHC SEPT , 2015 NASHVILLE, TN.

Size: px
Start display at page:

Download "A NUMERIC COMPRESSION ALGORITHM FOR THE HP PRIME CALCULATOR DR. JACKIE F. WOLDERING HHC SEPT , 2015 NASHVILLE, TN."

Transcription

1 A NUMERIC COMPRESSION ALGORITHM FOR THE HP PRIME CALCULATOR DR. JACKIE F. WOLDERING HHC SEPT , 2015 NASHVILLE, TN.

2 ABSTRACT VCR Plus+ Instant Programmer uses short (1 8 digit) codes to encrypt television listing information. Each VCR Plus+ PlusCode decrypts into channel number, date, start time and program duration. These codes were published in periodicals with TV listings and used to simplify VCR programming. Encryption and decryption methods are illustrated through a program on the HP Prime calculator. Codes are obsolete; information is for mathematical and calculator research purposes only. VCR Plus+, Instant Programmer, PlusCodes and CallSet are all trademarks of Rovi Corporation (formerly Macrovision Solutions Corporation and successors to Gemstar TV Guide International, Inc.).

3 HISTORY OF THE ALGORITHM System was invented by Dr. Henry C. Yuen and Dr. Daniel S. Kwoh to simplify VCR programming. Overall goal was to make recording a program on a VCR as simple as entering a 1 8 digit code. Algorithm uses a Huffman style encoding to map common times and channels to shortest codes. Short duration, prime time, low channel number, early in month might map to 4 digits or less. Example: Encoding channel 2 at 7:30 P.M. for 30 minutes on 9/1/2015 maps to the code value 59. Longer duration, odd starting time, higher channel, later in month might map to 7 8 digit codes. Example: Encoding channel 150 at 3:00 A.M. for 6 hours on 9/30/2015 maps to the code

4 PARAMETERS OF THE ALGORITHM 8 digit code allows for a maximum of 10^8 or 100,000,000 possible codes for any given month. Maximum 31 days per month accommodated in a 5 bit field with values 0 31 (last value unused). 288 possible starting times (every 5 minutes = 12 per hour * 24 hours per day = 288 starting times). 56 possible durations = 36 durations in 5 minute increments from minutes (0:05 to 3:00 hours) plus an additional 20 durations in 15 minute increments from minutes (3:15 to 8:00 hours). 192 possible channels can be accommodated using this encoding system (inadequate for cable today). 32 days * 288 start times * 56 durations * 192 channels = 99,090,432 codes, just under 100,000,000!

5 LISTS USED BY THE ALGORITHM HP Prime uses lists L1 and L2 to provide two way mapping of 192 time/duration combinations. 48 possible starting times (every half hour) and 4 possible durations (0:30, 1:00, 1:30, 2:00). This part of the algorithm maps the most popular shows to the least number of code digits. Lists L3 and L4 are used to scramble and unscramble 7 digit and 8 digit codes, respectively. List L5 assigns a name to a channel number, and may be adjusted to the user s local channels. Channel names not shown by VCR Plus+ devices, only included in HP program for convenience. Function LIST() creates L1 L5 and is called if program finds SIZE of L1 or L2 not equal to 192.

6 TIME FRAME OF THE ALGORITHM Algorithm good for 100 years from March 1, 1989 to February 28, 2089, covering 1200 months! Encryption creates different codes for same time/duration/channel/day during each month/year. 6 digit codes and less are on a 16 year cycle, while 7 8 digit codes are unique for 100 year cycle. 1 6 digit codes for Sept., 2015 would match those for 9/1999, 9/2031, 9/2047, 9/2063, 9/2079. Additional encryption also used to control distribution of codes, prevent reverse engineering. Gemstar Development Corporation licensed codes to magazines, newspapers and TV Guide. Additional worldwide licensing used the names G Code (Japan/China/New Zealand/Australia), VideoPlus+ (Ireland and United Kingdom) and ShowView (rest of Europe and South Africa).

7 VCR PLUS+ VIP 8 & VIP 18 INSTANT PROGRAMMER Gemstar VIP 8 Programmer VCR Plus+ VIP 18 Programmer

8 VCR PLUS+ VIP 18M AND CPS 1 CONTROL TOWER VCR Plus+ VIP 18M w/callset VCR Plus+ CPS 1 Control Tower

9 OTHER VCR PLUS+ PROGRAMMABLE DEVICES Panasonic Light Tower Philips Magnavox 4 Head VCR

10 HISTORY OF VCR PLUS+ PLUSCODES PlusCodes were published in TV listings starting March, 1989 and ceased publication in May, PlusCodes were in 500+ periodicals in U.S.A., with peak distribution in the late 1990s, early 2000s. US patent #5,335,079 8/2/1994 by Henry C. Yuen & Daniel S. Kwoh, assigned to Gemstar Development Corporation for Apparatus and Method Using Compressed Codes for Recorder Preprogramming Gemstar International Group Ltd. bought TV Guide, Inc. from Rupert Murdoch s News Corporation on October 5, 1999 for $9.2 billion in Gemstar stock. Unfortunately, tech bubble burst soon thereafter. Gemstar TV Guide International, Inc. was sold to Macrovision on December 7, 2007 for $2.8 billion. PlusCodes discontinued due to DVRs, cable networks with channels, reduced newspaper circulation, conversion of broadcast television from analog to digital and streaming video services. Consumers who want to use VCR Plus+ devices, can obtain codes from

11 DECODING ALGORITHM OVERVIEW FROM CRYPTOLOGIA

12 THE HP PRIME DECODING PROGRAM FLOW CHART Year, Month 1 8 Digit PlusCode from Newspaper, Magazine, Internet DECO FUN1 MTOP SHUF TWID PlusCode, Year, Month, Day, Day of Week, Starting Time, Ending Time, Program Length, Channel Number and Channel Identifier

13 THE HP PRIME ENCODING PROGRAM FLOW CHART Year, Month, Day, Start Time, Program Length, Channel Number ENCO ITWD ITLV IMTP IFUN PlusCode, Year, Month, Day, Day of Week, Starting Time, Ending Time, Program Length, Channel Number and Channel Identifier

14 INTERESTING HP PRIME CODING TECHNIQUES Original code is unmasked by performing repeated additions of digits to form a unique new number. Length looping technique makes sure that translated code is same length as original code. Shirriff, Welch and Kinsman described this as mod 10 no carry matrix multiplication by key , but is mod 10 remainders from 1, 1+2, 1+2+3,..., derived from looping. HP Prime program uses n:=reverse(asc(string(code)) 48); to parse code digits into an array. HP Prime program uses RETURN EXPR(CHAR(REVERSE(n)+48)); where 48 converts ASCII to/from binary. Decoding uses L1 to map codes to time slots, while encoding uses L2 to do the reverse mapping.

15 INTERESTING CODING TECHNIQUES (CONTINUED) MTOP performs mod 10 no carry matrix multiplication in the form of a loop to calculate the offset. Table L3 is used for 7 digit and L4 is used for 8 digit numbers to do additional scrambling/unscrambling. SHUF uses BITAND function to rearrange bits; TWID uses CASE/IF/THEN/END multiway branching. PLUS menu program uses the CHOOSE command to decide between DECODE and ENCODE. PLUS saves screen size from whatever app was previously running, sets to 320 x 220 pixels, restores. PLUS menu uses RECT and TEXTOUT commands to draw and fill boxes, FREEZE to display output.

16 RUNNING THE HP PRIME DECODING PROGRAM

17 RUNNING THE HP PRIME ENCODING PROGRAM

18 NOTES FOR RUNNING DECODING AND ENCODING Decoding needs year ( ), month (1 12) and code ( ). Valid 3/1/1989 2/28/2089. Encoding needs year and month as above, day from 1 31 (Feb: 1 28/29, Apr, Jun, Sep, Nov: 1 30). Encoding start time is in 24 hour HHMM format with HH=00 23 hours and MM=00 55 minutes. Encoding start time minutes should be in 5 minute increments 0, 5, 10, 15,, 55 minutes. Encoding program length is in HMM format, where H=0 8 hours and MM=00 55 minutes. Encoding program length can be in 5 minute increments from 0:05 to 3:00 (5 minutes to 3 hours), and in 15 minute increments from 3:15 to 8:00 (3 hours 15 minutes to 8 hours). Max length is 8 hours. Encoding channel numbers range from 1 to 192. Out of range arguments will be set to min/max. It is possible to create some codes that give Err: CODE or Err: DATE on real VCR Plus+ devices.

19 FINAL THOUGHTS Program was originally attempted on an HP 50G, but it was rather slow and difficult to run correctly. HP Prime program is based on public domain program vcrpp1.c written in C programming language. Program vcrpp1.c and corrected program vcrpp2.c are in the directory along with HP Prime program. Shirriff, Welch and Kinsman paper Decoding a VCR Controller Code and update are also in directory. Individual functions within the PLUS program can be referenced, such as DOTW(9, 26, 2015) = SAT. Entering and canceling more than 200 codes into a VCR Plus+ Instant Programmer will lock it up! There is an entirely separate group of 100,000,000 one day codes starting with 0; algorithm unknown! VCR Plus+ devices are collectible electronics. Check ebay, thrift stores and garage sales for low prices.

20 REFERENCES 1) Wikipedia Video Recorder Scheduling Algorithm 2) Wikipedia Gemstar TV Guide International TV_Guide_International. 3) H.C. Yuen & D.S. Kwoh, Apparatus and Method for Using Compressed Code for Recorder Programming, U.S. Patent #5,335,079, Aug. 2, 1994, 4) K. Shirriff, C. Welch, A. Kinsman Decoding a VCR Controller Code Cryptologia, 16(3), July 1992, pp ) K. Shirriff VCR Controller Code: Additional Notes 6) Anonymous VCRPlus+ Encoding, Decoding and Regression Test Code 7) Officially generated and supported VCRPlus+ PlusCodes may be found at:

21 ANY QUESTIONS? Thank you for attending HHC 2015 and for participating in this presentation!

A Numeric Compression Algorithm for the HP Prime Calculator Dr. Jackie F. Woldering

A Numeric Compression Algorithm for the HP Prime Calculator Dr. Jackie F. Woldering A Numeric Compression Algorithm for the HP Prime Calculator Dr. Jackie F. Woldering 1. History of the Algorithm The VCR Plus+ Instant Programmer is a device for programming a video cassette recorder (VCR)

More information

Digital Video Recorder From Waitsfield Cable

Digital Video Recorder From Waitsfield Cable www.waitsfieldcable.com 496-5800 Digital Video Recorder From Waitsfield Cable Pause live television! Rewind and replay programs so you don t miss a beat. Imagine coming home to your own personal library

More information

Proposed Standard Revision of ATSC Digital Television Standard Part 5 AC-3 Audio System Characteristics (A/53, Part 5:2007)

Proposed Standard Revision of ATSC Digital Television Standard Part 5 AC-3 Audio System Characteristics (A/53, Part 5:2007) Doc. TSG-859r6 (formerly S6-570r6) 24 May 2010 Proposed Standard Revision of ATSC Digital Television Standard Part 5 AC-3 System Characteristics (A/53, Part 5:2007) Advanced Television Systems Committee

More information

Live events staging. Media centers

Live events staging. Media centers Christie Spyder X80 80 megapixel, true 4K@60Hz performance across multiple displays Auditoriums Control rooms Live events staging Post-production Broadcast studios Corporate lobbies Media centers Sports

More information

Sapera LT 8.0 Acquisition Parameters Reference Manual

Sapera LT 8.0 Acquisition Parameters Reference Manual Sapera LT 8.0 Acquisition Parameters Reference Manual sensors cameras frame grabbers processors software vision solutions P/N: OC-SAPM-APR00 www.teledynedalsa.com NOTICE 2015 Teledyne DALSA, Inc. All rights

More information

Motion Video Compression

Motion Video Compression 7 Motion Video Compression 7.1 Motion video Motion video contains massive amounts of redundant information. This is because each image has redundant information and also because there are very few changes

More information

Multimedia Time Warping System. Akiko Campbell Presentation-2 Summer/2004

Multimedia Time Warping System. Akiko Campbell Presentation-2 Summer/2004 Multimedia Time Warping System Akiko Campbell Presentation-2 Summer/2004 Outline Overview Facts Features Multimedia Time Warping System Conclusion Effect of TiVo on VoD Overview Facts A Linux box that

More information

RECOMMENDATION ITU-R BT (Questions ITU-R 25/11, ITU-R 60/11 and ITU-R 61/11)

RECOMMENDATION ITU-R BT (Questions ITU-R 25/11, ITU-R 60/11 and ITU-R 61/11) Rec. ITU-R BT.61-4 1 SECTION 11B: DIGITAL TELEVISION RECOMMENDATION ITU-R BT.61-4 Rec. ITU-R BT.61-4 ENCODING PARAMETERS OF DIGITAL TELEVISION FOR STUDIOS (Questions ITU-R 25/11, ITU-R 6/11 and ITU-R 61/11)

More information

NOTICE. (Formulated under the cognizance of the CTA R4 Video Systems Committee.)

NOTICE. (Formulated under the cognizance of the CTA R4 Video Systems Committee.) CTA Bulletin Recommended Practice for ATSC 3.0 Television Sets, Audio June 2017 NOTICE Consumer Technology Association (CTA) Standards, Bulletins and other technical publications are designed to serve

More information

NUMB3RS Activity: Coded Messages. Episode: The Mole

NUMB3RS Activity: Coded Messages. Episode: The Mole Teacher Page 1 : Coded Messages Topic: Inverse Matrices Grade Level: 10-11 Objective: Students will learn how to apply inverse matrix multiplication to the coding of values. Time: 15 minutes Materials:

More information

Optical Technologies Micro Motion Absolute, Technology Overview & Programming

Optical Technologies Micro Motion Absolute, Technology Overview & Programming Optical Technologies Micro Motion Absolute, Technology Overview & Programming TN-1003 REV 180531 THE CHALLENGE When an incremental encoder is turned on, the device needs to report accurate location information

More information

MTL Software. Overview

MTL Software. Overview MTL Software Overview MTL Windows Control software requires a 2350 controller and together - offer a highly integrated solution to the needs of mechanical tensile, compression and fatigue testing. MTL

More information

1 OVERVIEW 2 WHAT IS THE CORRECT TIME ANYWAY? Application Note 3 Transmitting Time of Day using XDS Packets 2.1 UTC AND TIMEZONES

1 OVERVIEW 2 WHAT IS THE CORRECT TIME ANYWAY? Application Note 3 Transmitting Time of Day using XDS Packets 2.1 UTC AND TIMEZONES 1 OVERVIEW This application note describes how to properly encode Time of Day information using EIA-608-B Extended Data Services (XDS) packets. In the United States, the Public Broadcasting System (PBS)

More information

inside i-guidetm user reference manual 09ROVI1204 User i-guide Manual R16.indd 1

inside i-guidetm user reference manual 09ROVI1204 User i-guide Manual R16.indd 1 inside i-guidetm user reference manual 09ROVI1204 User i-guide Manual R16.indd 1 4/6/10 12:26:18 PM Copyright 2010 Rovi Corporation. All rights reserved. Rovi and the Rovi logo are trademarks of Rovi Corporation

More information

ATSC Digital Television Standard: Part 6 Enhanced AC-3 Audio System Characteristics

ATSC Digital Television Standard: Part 6 Enhanced AC-3 Audio System Characteristics ATSC Digital Television Standard: Part 6 Enhanced AC-3 Audio System Characteristics Document A/53 Part 6:2010, 6 July 2010 Advanced Television Systems Committee, Inc. 1776 K Street, N.W., Suite 200 Washington,

More information

The Discussion of this exercise covers the following points:

The Discussion of this exercise covers the following points: Exercise 3-1 Digital Baseband Processing EXERCISE OBJECTIVE When you have completed this exercise, you will be familiar with various types of baseband processing used in digital satellite communications.

More information

C-MAX. TSG200 Time signal generator TSG200. Time Signal Generator. Manual TSG200. RF Technology Specialist. Version. Revision. SPEC No.

C-MAX. TSG200 Time signal generator TSG200. Time Signal Generator. Manual TSG200. RF Technology Specialist. Version. Revision. SPEC No. Manual Time signal generator RF Technology Specialist Time Signal Generator A6 1 of 24 Manual The allows to transmit the time signal in any location. This feature opens a wide range of usage for the, e.g.

More information

This document last edited May 2015 for version Some commands may not be available in previous versions of firmware.

This document last edited May 2015 for version Some commands may not be available in previous versions of firmware. AP22 Screen Commands This document last edited May 2015 for version 2.90. Some commands may not be available in previous versions of firmware. Instructions To start any of the command screens below you

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

FPGA Laboratory Assignment 4. Due Date: 06/11/2012

FPGA Laboratory Assignment 4. Due Date: 06/11/2012 FPGA Laboratory Assignment 4 Due Date: 06/11/2012 Aim The purpose of this lab is to help you understanding the fundamentals of designing and testing memory-based processing systems. In this lab, you will

More information

NATIONAL COMMUNICATIONS AUTHORITY

NATIONAL COMMUNICATIONS AUTHORITY NATIONAL COMMUNICATIONS AUTHORITY Rules for the Assignment of Logical Channel Numbers (LCNs) Background Digital Terrestrial Television (DTT) technologies provide for the delivery of Service Information

More information

(12) Patent Application Publication (10) Pub. No.: US 2007/ A1

(12) Patent Application Publication (10) Pub. No.: US 2007/ A1 (19) United States (12) Patent Application Publication (10) Pub. No.: US 2007/0230902 A1 Shen et al. US 20070230902A1 (43) Pub. Date: Oct. 4, 2007 (54) (75) (73) (21) (22) (60) DYNAMIC DISASTER RECOVERY

More information

Appeal decision. Appeal No France. Tokyo, Japan. Tokyo, Japan. Tokyo, Japan. Tokyo, Japan. Tokyo, Japan

Appeal decision. Appeal No France. Tokyo, Japan. Tokyo, Japan. Tokyo, Japan. Tokyo, Japan. Tokyo, Japan Appeal decision Appeal No. 2015-21648 France Appellant THOMSON LICENSING Tokyo, Japan Patent Attorney INABA, Yoshiyuki Tokyo, Japan Patent Attorney ONUKI, Toshifumi Tokyo, Japan Patent Attorney EGUCHI,

More information

User Guide. TotalGuide xd for ipad. User Guide FOR INTERNAL USE ONLY - NOT FOR DISTRIBUTION TO CONSUMERS OR THIRD PARTIES

User Guide. TotalGuide xd for ipad. User Guide FOR INTERNAL USE ONLY - NOT FOR DISTRIBUTION TO CONSUMERS OR THIRD PARTIES TotalGuide xd for ipad User Guide FOR INTERNAL USE ONLY - NOT FOR DISTRIBUTION TO CONSUMERS OR THIRD PARTIES LEGAL NOTICE Copyright 2014 Rovi Corporation. All rights reserved. TotalGuide xd, i-guide and

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

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

Always handle the satellite receiver carefully. Avoid excessive shock and vibration at all times as this can damage the hard drive.

Always handle the satellite receiver carefully. Avoid excessive shock and vibration at all times as this can damage the hard drive. Congratulations on choosing DISH Network. You are about to experience the excitement and convenience of Digital Broadcast Satellite (DBS) service, which delivers the very best in picture and sound quality.

More information

American DJ. Show Designer. Software Revision 2.08

American DJ. Show Designer. Software Revision 2.08 American DJ Show Designer Software Revision 2.08 American DJ 4295 Charter Street Los Angeles, CA 90058 USA E-mail: support@ameriandj.com Web: www.americandj.com OVERVIEW Show Designer is a new lighting

More information

Video Cassette Recorder

Video Cassette Recorder 3-865-319-12 (2) Video Cassette Recorder Operating Instructions PAL NTSC 4.43 SLV-SE80UX 1999 by Sony Corporation WARNING To prevent fire or shock hazard, do not expose the unit to rain or moisture. To

More information

Free TV Australia Operational Practice OP-45 Application of Time Related Tables in Australian DVB-T Systems Issue 4 October 2012 Page 1 of 9

Free TV Australia Operational Practice OP-45 Application of Time Related Tables in Australian DVB-T Systems Issue 4 October 2012 Page 1 of 9 Page 1 of 9 1. SCOPE This Operational Practice recommends the method of applying the Time Date Table (TDT) and Time Offset Table (TOT) sections for digital terrestrial television broadcasting in Australia.

More information

Case Study: Can Video Quality Testing be Scripted?

Case Study: Can Video Quality Testing be Scripted? 1566 La Pradera Dr Campbell, CA 95008 www.videoclarity.com 408-379-6952 Case Study: Can Video Quality Testing be Scripted? Bill Reckwerdt, CTO Video Clarity, Inc. Version 1.0 A Video Clarity Case Study

More information

THE ASTRO LINE SERIES GEMINI 5200 INSTRUCTION MANUAL

THE ASTRO LINE SERIES GEMINI 5200 INSTRUCTION MANUAL THE ASTRO LINE SERIES GEMINI 5200 INSTRUCTION MANUAL INTRODUCTION The Gemini 5200 is another unit in a multi-purpose series of industrial control products that are field-programmable to solve multiple

More information

Error Resilience for Compressed Sensing with Multiple-Channel Transmission

Error Resilience for Compressed Sensing with Multiple-Channel Transmission Journal of Information Hiding and Multimedia Signal Processing c 2015 ISSN 2073-4212 Ubiquitous International Volume 6, Number 5, September 2015 Error Resilience for Compressed Sensing with Multiple-Channel

More information

Limit and Mask Test Application Module

Limit and Mask Test Application Module Limit and Mask Test Application Module DPO4LMT Datasheet Features & Benefits Conduct Limit Test Pass/Fail Testing against a Golden Waveform with Tolerances Perform Mask Testing on ITU-T, ANSI T1.102, and

More information

Always there to help you. Register your product and get support at SRP5018. Question? Contact Philips.

Always there to help you. Register your product and get support at  SRP5018. Question? Contact Philips. Always there to help you Register your product and get support at www.philips.com/support Question? Contact Philips SRP5018 User manual Contents 1 Your universal remote 2 Introduction 2 Overview of the

More information

FD Trinitron Colour Television

FD Trinitron Colour Television R 4-205-569-32(1) FD Trinitron Television Instruction Manual GB KV-14LM1U 2000 by Sony Corporation NOTICE FOR CUSTOMERS IN THE UNITED KINGDOM A moulded plug complying with BS1363 is fitted to this equipment

More information

ISSN (Print) Original Research Article. Coimbatore, Tamil Nadu, India

ISSN (Print) Original Research Article. Coimbatore, Tamil Nadu, India Scholars Journal of Engineering and Technology (SJET) Sch. J. Eng. Tech., 016; 4(1):1-5 Scholars Academic and Scientific Publisher (An International Publisher for Academic and Scientific Resources) www.saspublisher.com

More information

Software Quick Manual

Software Quick Manual XX177-24-00 Virtual Matrix Display Controller Quick Manual Vicon Industries Inc. does not warrant that the functions contained in this equipment will meet your requirements or that the operation will be

More information

passport guide user manual

passport guide user manual passport guide user manual Copyright 2011 Rovi Corporation. All rights reserved. Rovi and the Rovi logo are trademarks of Rovi Corporation. Passport is a registered trademark of Rovi Corporation and/or

More information

welcome to i-guide 09ROVI1204 User i-guide Manual R16.indd 3

welcome to i-guide 09ROVI1204 User i-guide Manual R16.indd 3 welcome to i-guide Introducing the interactive program guide from Rovi and your cable system. i-guide is intuitive, intelligent and inspiring. It unlocks a world of greater choice, convenience and control

More information

Quick Reference Guide

Quick Reference Guide Quick Reference Guide 1.800.796.4567 3rivers.net The interactive programming guide from TV Guide. It s intuitive, intelligent and inspiring. i-guide unlocks a world of greater choice, convenience and control

More information

Optimization of Multi-Channel BCH Error Decoding for Common Cases. Russell Dill Master's Thesis Defense April 20, 2015

Optimization of Multi-Channel BCH Error Decoding for Common Cases. Russell Dill Master's Thesis Defense April 20, 2015 Optimization of Multi-Channel BCH Error Decoding for Common Cases Russell Dill Master's Thesis Defense April 20, 2015 Bose-Chaudhuri-Hocquenghem (BCH) BCH is an Error Correcting Code (ECC) and is used

More information

RECOMMENDATION ITU-R BT Studio encoding parameters of digital television for standard 4:3 and wide-screen 16:9 aspect ratios

RECOMMENDATION ITU-R BT Studio encoding parameters of digital television for standard 4:3 and wide-screen 16:9 aspect ratios ec. ITU- T.61-6 1 COMMNATION ITU- T.61-6 Studio encoding parameters of digital television for standard 4:3 and wide-screen 16:9 aspect ratios (Question ITU- 1/6) (1982-1986-199-1992-1994-1995-27) Scope

More information

This document describes software package upgrade for WV-S6131/S Release version: Release Note Reference Number: S6131_013.

This document describes software package upgrade for WV-S6131/S Release version: Release Note Reference Number: S6131_013. WVS6131/S6111 Release Note 1.10 July, '17 1.12 Sept., '17 1.13 Oct., '17 Ver1.70 Nov.,'17 A B U Issue (Phenomenon) Occurrence condition Aborted video transmission in multicast transmission. When On is

More information

DCL Time Controller WTDCL. Universal Lighting Technologies is a subsidiary of Panasonic Electric Works Co., Ltd., a member of the Panasonic Group

DCL Time Controller WTDCL. Universal Lighting Technologies is a subsidiary of Panasonic Electric Works Co., Ltd., a member of the Panasonic Group DCL Time Controller WTDCL Universal Lighting Technologies is a subsidiary of Panasonic Electric Works Co., Ltd., a member of the Panasonic Group Table of Contents 1. Introduction 2. Operation 2.1. On/Off

More information

Video Cassette Recorder

Video Cassette Recorder 3-868-7-11 (1) Video Cassette Recorder Operating Instructions PAL NTSC4.43 SLV-SE700G SLV-SE700I SLV-SE800G SLV-SE800I 000 Sony Corporation WARNING To prevent fire or shock hazard, do not expose the unit

More information

VC-1 Patent Portfolio License Briefing*

VC-1 Patent Portfolio License Briefing* VC-1 Patent Portfolio License Briefing* V12/20/17 *This presentation is for information purposes only. Actual license agreements will provide the only definitive and reliable statement of license terms.

More information

TELEVISION. Entertainment Plans. Interactive Guide and DVR (Digital Video Recorder) Manual ARVIG arvig.net

TELEVISION. Entertainment Plans. Interactive Guide and DVR (Digital Video Recorder) Manual ARVIG arvig.net TELEVISION Entertainment Plans Interactive Guide and DVR (Digital Video Recorder) Manual 888.99.ARVIG arvig.net . TABLE OF CONTENTS Interactive Guide Remote Control... 3 Changing the Channel... 4 Picture-In-Picture

More information

A NEW METHOD FOR RECALCULATING THE PROGRAM CLOCK REFERENCE IN A PACKET-BASED TRANSMISSION NETWORK

A NEW METHOD FOR RECALCULATING THE PROGRAM CLOCK REFERENCE IN A PACKET-BASED TRANSMISSION NETWORK A NEW METHOD FOR RECALCULATING THE PROGRAM CLOCK REFERENCE IN A PACKET-BASED TRANSMISSION NETWORK M. ALEXANDRU 1 G.D.M. SNAE 2 M. FIORE 3 Abstract: This paper proposes and describes a novel method to be

More information

medlab One Channel ECG OEM Module EG 01000

medlab One Channel ECG OEM Module EG 01000 medlab One Channel ECG OEM Module EG 01000 Technical Manual Copyright Medlab 2012 Version 2.4 11.06.2012 1 Version 2.4 11.06.2012 Revision: 2.0 Completely revised the document 03.10.2007 2.1 Corrected

More information

Reference Parameters for Digital Terrestrial Television Transmissions in the United Kingdom

Reference Parameters for Digital Terrestrial Television Transmissions in the United Kingdom Reference Parameters for Digital Terrestrial Television Transmissions in the United Kingdom DRAFT Version 7 Publication date: XX XX 2016 Contents Section Page 1 Introduction 1 2 Reference System 2 Modulation

More information

Celect Communications. Complete TV Users Guide

Celect Communications. Complete TV Users Guide Celect Communications Complete TV Users Guide 1 Contents Setting up your Remote... 4 Remote Guide... 5 Using the Guide Button... 8 Searching...10 Reminders...12 DVR Guide...13 Important Note...26 TV Main

More information

OBJECT-BASED IMAGE COMPRESSION WITH SIMULTANEOUS SPATIAL AND SNR SCALABILITY SUPPORT FOR MULTICASTING OVER HETEROGENEOUS NETWORKS

OBJECT-BASED IMAGE COMPRESSION WITH SIMULTANEOUS SPATIAL AND SNR SCALABILITY SUPPORT FOR MULTICASTING OVER HETEROGENEOUS NETWORKS OBJECT-BASED IMAGE COMPRESSION WITH SIMULTANEOUS SPATIAL AND SNR SCALABILITY SUPPORT FOR MULTICASTING OVER HETEROGENEOUS NETWORKS Habibollah Danyali and Alfred Mertins School of Electrical, Computer and

More information

Video Application Starter Kits

Video Application Starter Kits Video Application Starter Kits ABOUT Z³ TECHNOLOGY Z 3 Technology is the market leader in providing production-ready embedded multimedia solutions and systems. From our founders to our world-class engineers

More information

Complete TV Users Guide

Complete TV Users Guide Celect Communications Complete TV Users Guide Connected Your pathway to the world 1 2 Contents Setting up your Remote... 4 Remote Guide... 5 Using the Guide Button... 8 Searching...10 Reminders...12 DVR

More information

The Kaffeine Handbook. Jürgen Kofler Christophe Thommeret Mauro Carvalho Chehab

The Kaffeine Handbook. Jürgen Kofler Christophe Thommeret Mauro Carvalho Chehab Jürgen Kofler Christophe Thommeret Mauro Carvalho Chehab 2 Contents 1 Kaffeine Player 5 1.1 The Start Window...................................... 5 1.2 Play a File..........................................

More information

SPECTRUM s GUIDE TO USING CUSTOMER-OWNED

SPECTRUM s GUIDE TO USING CUSTOMER-OWNED Equipment Compatibility Analog & Digital LEGAL SPECTRUM s GUIDE TO USING CUSTOMER-OWNED EQUIPMENT WITH CABLE SERVICES Extra steps may be required for all cable TV features to work with the cablecompatible

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

Version 3.1. Getting Started Guide. Scientific Atlanta

Version 3.1. Getting Started Guide. Scientific Atlanta Version 3.1 Getting Started Guide Scientific Atlanta September 1, 2008 Passport Echo 3.1 Getting Started Guide (for Scientific Atlanta set-tops) Passport Echo 3.1 September 1, 2008 2008 Macrovision Solutions

More information

Video System Characteristics of AVC in the ATSC Digital Television System

Video System Characteristics of AVC in the ATSC Digital Television System A/72 Part 1:2014 Video and Transport Subsystem Characteristics of MVC for 3D-TVError! Reference source not found. ATSC Standard A/72 Part 1 Video System Characteristics of AVC in the ATSC Digital Television

More information

99 Washington Street Melrose, MA Fax TestEquipmentDepot.com OPERATION MANUAL. The Best Thing on Cable

99 Washington Street Melrose, MA Fax TestEquipmentDepot.com OPERATION MANUAL. The Best Thing on Cable 99 Washington Street Melrose, MA 02176 Fax 781-665-0780 TestEquipmentDepot.com OPERATION MANUAL The Best Thing on Cable Table of Contents INDEX I General Information Introduction... 3 Features: RSVP 2

More information

P1: OTA/XYZ P2: ABC c01 JWBK457-Richardson March 22, :45 Printer Name: Yet to Come

P1: OTA/XYZ P2: ABC c01 JWBK457-Richardson March 22, :45 Printer Name: Yet to Come 1 Introduction 1.1 A change of scene 2000: Most viewers receive analogue television via terrestrial, cable or satellite transmission. VHS video tapes are the principal medium for recording and playing

More information

The BAT WAVE ANALYZER project

The BAT WAVE ANALYZER project The BAT WAVE ANALYZER project Conditions of Use The Bat Wave Analyzer program is free for personal use and can be redistributed provided it is not changed in any way, and no fee is requested. The Bat Wave

More information

NOTICE. (Formulated under the cognizance of the CTA R4.8 DTV Interface Subcommittee.)

NOTICE. (Formulated under the cognizance of the CTA R4.8 DTV Interface Subcommittee.) ANSI/CTA Standard DTV 1394 Interface Specification ANSI/CTA-775-C R-2013 (Formerly ANSI/CEA-775-C R-2013) September 2008 NOTICE Consumer Technology Association (CTA) Standards, Bulletins and other technical

More information

Digital Satellite Module. Guide

Digital Satellite Module. Guide Digital Satellite Module Guide 2 This product fulfils the conditions stated in the EEU directives 89/336 and 73/23. Contents 3 Daily use, 4 Find out how to use the Beo4 remote control with the Digital

More information

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation.

No Trade Secrets. Microsoft does not claim any trade secret rights in this documentation. [MS-CFB]: Intellectual Property Rights Notice for Open Specifications Documentation Technical Documentation. Microsoft publishes Open Specifications documentation for protocols, file formats, languages,

More information

Wilkes Repair: wilkes.net River Street, Wilkesboro, NC COMMUNICATIONS

Wilkes Repair: wilkes.net River Street, Wilkesboro, NC COMMUNICATIONS 1 Wilkes COMMUNICATIONS 336.973.3103 877.973.3104 Repair: 336.973.4000 Email: wilkesinfo@wilkes.net wilkes.net 1400 River Street, Wilkesboro, NC 28697 2 Table of Contents REMOTE CONTROL DIAGRAM 4 PLAYBACK

More information

ESP-LXD Controller Decoder Programming Guide

ESP-LXD Controller Decoder Programming Guide ESP-LXD Controller Decoder Programming Guide Contents How To Use The Programming Guide... 1 Program and Decoder Information...1 Apply Decoder Address Labels...2 Fill Out Programming Guide...2 Sample Program

More information

VLT AutomationDrive FC 301/FC 302

VLT AutomationDrive FC 301/FC 302 Introduction The can be used as feedback source for closed-loop control or as master source for synchronizing control. Configure the encoder option in parameter group 17-** Feedback Option, see the VLT

More information

DIGISPOT II. User Manual LOGGER. Software

DIGISPOT II. User Manual LOGGER. Software DIGISPOT II LOGGER Software User Manual September 2002 Version 2.12.xx Copy - Right: R.Barth KG Hamburg I m p r e s s u m This product has been developed by joint efforts of both companies based on the

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

Dolby MS11 Compliance Testing with APx500 Series Audio Analyzers

Dolby MS11 Compliance Testing with APx500 Series Audio Analyzers Dolby MS11 with APx500 Series Dolby MS11 Compliance Testing with APx500 Series Audio Analyzers Every device that bears a Dolby logo is required to go through a compliance test process to ensure that it

More information

Dual Link DVI Receiver Implementation

Dual Link DVI Receiver Implementation Dual Link DVI Receiver Implementation This application note describes some features of single link receivers that must be considered when using 2 devices for a dual link application. Specific characteristics

More information

DisplayPort 1.4 Link Layer Compliance

DisplayPort 1.4 Link Layer Compliance DisplayPort 1.4 Link Layer Compliance Neal Kendall Product Marketing Manager Teledyne LeCroy quantumdata Product Family neal.kendall@teledyne.com April 2018 Agenda DisplayPort 1.4 Source Link Layer Compliance

More information

Video Cassette Recorder

Video Cassette Recorder 3-868-69-E1 (1) Video Cassette Recorder Operating Instructions PAL NTSC4.43 SLV-SE600A/E SLV-SX600E SLV-SE650D SLV-SE700D1/D/E1/E SLV-SX700D/E SLV-SE800D1/D/E SLV-SX800D 000 Sony Corporation WARNING To

More information

Video Scrambling And Descrambling For Satellite And Cable TV By Rudolf F. Graf READ ONLINE

Video Scrambling And Descrambling For Satellite And Cable TV By Rudolf F. Graf READ ONLINE Video Scrambling And Descrambling For Satellite And Cable TV By Rudolf F. Graf READ ONLINE If you are searching for the ebook by Rudolf F. Graf Video Scrambling and Descrambling for Satellite and Cable

More information

Interface Document. Synchronization of External Equipment to:

Interface Document. Synchronization of External Equipment to: Technical Paper Publication No. S96/10956 Issue 02 Feb 10, 1997 Interface Document Synchronization of to: Model DA10 Digital Film Sound Processor Model DA20 Digital Film Sound Processor Model CP500 Digital

More information

DIGITAL SYSTEM FUNDAMENTALS (ECE421) DIGITAL ELECTRONICS FUNDAMENTAL (ECE422) COUNTERS

DIGITAL SYSTEM FUNDAMENTALS (ECE421) DIGITAL ELECTRONICS FUNDAMENTAL (ECE422) COUNTERS COURSE / CODE DIGITAL SYSTEM FUNDAMENTALS (ECE421) DIGITAL ELECTRONICS FUNDAMENTAL (ECE422) COUNTERS One common requirement in digital circuits is counting, both forward and backward. Digital clocks and

More information

Dynamic Range Management in. Kenneth Hunold Broadcast Applications Engineer Dolby Laboratories, Inc.

Dynamic Range Management in. Kenneth Hunold Broadcast Applications Engineer Dolby Laboratories, Inc. Dynamic Range Management in Proposed ATSC Recommended Practice A/85 Kenneth Hunold Broadcast Applications Engineer Dolby Laboratories, Inc. Dynamic Range Control (DRC) in DTV Audio (AC-3) Where did the

More information

DIGITAL VIDEO RECORDING (DVR) SERVICES

DIGITAL VIDEO RECORDING (DVR) SERVICES DIGITAL VIDEO RECORDING (DVR) SERVICES With a Digital Video Recorder (DVR) set-top box, you can easily record your favorite programs and then play them back anytime. The DVR and Picture-In-Picture (PIP)

More information

passport guide user manual

passport guide user manual passport guide user manual Copyright 2011 Rovi Corporation. All rights reserved. Rovi and the Rovi logo are trademarks of Rovi Corporation. Passport is a registered trademark of Rovi Corporation and/or

More information

Mobile DTV Viewer. User Manual. Mobile DTV ATSC-M/H DVB-H 1Seg. Digital TV ATSC DVB-T, DVB-T2 ISDB-T V 4. decontis GmbH Sachsenstr.

Mobile DTV Viewer. User Manual. Mobile DTV ATSC-M/H DVB-H 1Seg. Digital TV ATSC DVB-T, DVB-T2 ISDB-T V 4. decontis GmbH Sachsenstr. Mobile DTV ATSC-M/H DVB-H 1Seg Digital TV ATSC DVB-T, DVB-T2 ISDB-T V 4 decontis GmbH Sachsenstr. 8 02708 Löbau Germany +49 3585 862915 +49 3585 415629 www.com dvbsam@com 1 Introduction... 5 2 System Requirements...

More information

SPG700 Multiformat Reference Sync Generator Release Notes

SPG700 Multiformat Reference Sync Generator Release Notes xx ZZZ SPG700 Multiformat Reference Sync Generator Release Notes This document supports firmware version 3.0. www.tek.com *P077123104* 077-1231-04 Copyright Tektronix. All rights reserved. Licensed software

More information

Always there to help you. Register your product and get support at SRP3013. Question? Contact Philips.

Always there to help you. Register your product and get support at  SRP3013. Question? Contact Philips. Always there to help you Register your product and get support at www.philips.com/support Question? Contact Philips SRP3013 User manual Contents 1 Your universal remote 2 Introduction 2 Overview of the

More information

Dual Link DVI Receiver Implementation

Dual Link DVI Receiver Implementation Dual Link DVI Receiver Implementation This application note describes some features of single link receivers that must be considered when using 2 devices for a dual link application. Specific characteristics

More information

Digital TV Troubleshooting Tips

Digital TV Troubleshooting Tips Analog Channels Only - Page 2 Analog Pass-Through: Making a Non-Analog Pass-Through Box Work - Page 2 Audio Vanishes on Some Programs, but Fine on Others - Page 2 Black Bars on Edges of Picture - Page

More information

USER GUIDE. Get the most out of your DTC TV service!

USER GUIDE. Get the most out of your DTC TV service! TV USER GUIDE Get the most out of your DTC TV service! 1 800-367-4274 www.dtccom.net TV Customer Care Technical Support 615-529-2955 615-273-8288 Carthage Area Carthage Area 615-588-1277 615-588-1282 www.dtccom.net

More information

Basics of BISS scrambling. Newtec. Innovative solutions for satellite communications

Basics of BISS scrambling. Newtec. Innovative solutions for satellite communications Basics of BISS scrambling Contents Definition of scrambling BISS modes BISS mode 1 BISS mode E Calculation of encrypted session word Buried ID Injected ID Connection diagram Rate adaptation Back panel

More information

ATSC Candidate Standard: A/341 Amendment SL-HDR1

ATSC Candidate Standard: A/341 Amendment SL-HDR1 ATSC Candidate Standard: A/341 Amendment SL-HDR1 Doc. S34-268r1 21 August 2017 Advanced Television Systems Committee 1776 K Street, N.W. Washington, D.C. 20006 202-872-9160 The Advanced Television Systems

More information

User Guide USING THE REMOTE CONTROL ABOUT THE REMOTE CONTROL. Page 3-2

User Guide USING THE REMOTE CONTROL ABOUT THE REMOTE CONTROL. Page 3-2 User Guide USING THE REMOTE CONTROL ABOUT THE REMOTE CONTROL The remote control is designed for use with applicable DBS receivers. It provides easy access to all the features of the Bell ExpressVu system,

More information

B3ZS Encoder/Decoder Reference Design APPLICATION NOTE OCTOBER 2001 APPLICABLE TDK DEVICES 78P P7200L 78P7202L 78P7203L 78P7204L

B3ZS Encoder/Decoder Reference Design APPLICATION NOTE OCTOBER 2001 APPLICABLE TDK DEVICES 78P P7200L 78P7202L 78P7203L 78P7204L B3ZS Encoder/Decoder Reference Design APPLICATION E INTRODUCTION In DS3 applications, Binary Three Zero Suppression (BZ3S) coding is required when transmitting a sequence of three zeros or more. Often

More information

GDB9 INSTRUCTION MANUAL DIGITAL TERRESTRIAL RECEIVER

GDB9 INSTRUCTION MANUAL DIGITAL TERRESTRIAL RECEIVER GDB9 INSTRUCTION MANUAL DIGITAL TERRESTRIAL RECEIVER Goodmans Support: www.goodmans.co.uk/support Please read these instructions before use and keep for future reference IMPORTANT SAFETY INSTRUCTIONS Thank

More information

Television Audience 2010 & 2011

Television Audience 2010 & 2011 Television Audience 2010 & 2011 Overview The 51 st edition of Television Audience continues your collection of TV Audience reports. This report continues to include annual trends of population and television

More information

ENGINEERING COMMITTEE Digital Video Subcommittee SCTE

ENGINEERING COMMITTEE Digital Video Subcommittee SCTE ENGINEERING COMMITTEE Digital Video Subcommittee SCTE 138 2009 STREAM CONDITIONING FOR SWITCHING OF ADDRESSABLE CONTENT IN DIGITAL TELEVISION RECEIVERS NOTICE The Society of Cable Telecommunications Engineers

More information

Implementation of a turbo codes test bed in the Simulink environment

Implementation of a turbo codes test bed in the Simulink environment University of Wollongong Research Online Faculty of Informatics - Papers (Archive) Faculty of Engineering and Information Sciences 2005 Implementation of a turbo codes test bed in the Simulink environment

More information

Film-Tech. The information contained in this Adobe Acrobat pdf file is provided at your own risk and good judgment.

Film-Tech. The information contained in this Adobe Acrobat pdf file is provided at your own risk and good judgment. Film-Tech The information contained in this Adobe Acrobat pdf file is provided at your own risk and good judgment. These manuals are designed to facilitate the exchange of information related to cinema

More information

THE TIVO SERVICE QUICK GUIDE

THE TIVO SERVICE QUICK GUIDE THE TIVO SERVICE QUICK GUIDE 2017 TiVo Inc. Reproduction of all or any portion of this Quick Guide without TiVo s express prior written permission (in each instance) is prohibited. All rights reserved.

More information

Television brian egan isnm 2004

Television brian egan isnm 2004 Introduction Mechanical early developments. Electrical how it works. Digital advantages over analogue. brian egan isnm Mechanical television First televisions were mechanical based on revolving disc, first

More information

BER MEASUREMENT IN THE NOISY CHANNEL

BER MEASUREMENT IN THE NOISY CHANNEL BER MEASUREMENT IN THE NOISY CHANNEL PREPARATION... 2 overview... 2 the basic system... 3 a more detailed description... 4 theoretical predictions... 5 EXPERIMENT... 6 the ERROR COUNTING UTILITIES module...

More information

Fast Quadrature Decode TPU Function (FQD)

Fast Quadrature Decode TPU Function (FQD) PROGRAMMING NOTE Order this document by TPUPN02/D Fast Quadrature Decode TPU Function (FQD) by Jeff Wright 1 Functional Overview The fast quadrature decode function is a TPU input function that uses two

More information