• Join
  • Sign In with my.TI Login
Texas Instruments
  • Products
  • Applications
  • Tools & Software
  • Support & Community
  • Sample & Buy
  • About TI
Sample & Purchase Cart Sample & Purchase Cart
  • Search
  • Advanced
TI E2E™ Community
  • Support Forums
  • Blogs
  • Groups
  • Videos
  • 简体中文
  • More ...
TI Home » TI E2E Community » Support Forums » Data Converters » Video Converters » Video Converters - Forum » When DVD is playing getting some white dotted lines at top of the scree
Share
Video Converters
  • Forum
  • Announcements
Options
  • Subscribe via RSS
Check out
Analog Wire blog
  • $core_v2_blog.Current.Name

    RS-485 - Who says you can't teach an old dog new tricks?

    Posted 4 days ago
    by Neel Seshan
    Would you agree that RS-485 has turned out to be one of the most...
  • $core_v2_blog.Current.Name

    Filter for thought

    Posted 5 days ago
    by Soufiane Bendaoud
    Have you ever wondered how engineers designed active filters...
  • $core_v2_blog.Current.Name

    Let’s take this driver out for a spin

    Posted 11 days ago
    by Soufiane Bendaoud
    Before I suggest a suitable op amp to drive an ADC, I look at...

When DVD is playing getting some white dotted lines at top of the scree

When DVD is playing getting some white dotted lines at top of the scree

This question is not answered
Satish Nadigatla
Posted by Satish Nadigatla
on Nov 22 2011 01:28 AM
Prodigy100 points

Hello Sir,

 

We are using TVP5150AM1 video decoder.When DVD video is playing we are getting the some unwanted dotted lines at the top of video.We need to cropp these unwanted lines at the top of the video screen.Please see below for the image which is marked in red colour.From the data sheet of "TVP5150AM1" we came to know that if we use AVID registers(11h, 12h) register setting then we can able to remove these unwanted data.But from the data sheet we are not able to set the register values.Requesting you to please provide some infromation how to set those registers.If you know any solution to this problem please share with us.

 

Thanks and Regards,

Satish

TVP5150AM1
Report Abuse
  • Reply
You have posted to a forum that requires a moderator to approve posts before they are publicly available.
All Replies
  • Larry Taylor
    Posted by Larry Taylor
    on Nov 22 2011 08:22 AM
    Genius16810 points

    Satish,

    The dashed line is closed caption VBI data that is carried on line 21.  Do you have a way to crop this line in the processor or vertically shift the display so it is not visible.  This line is typically cropped in the back-end and not by the TVP, since some processors need to process the data that is own this line.

    You are using embedded syncs, right?   Registers 11h-12h control horizontal horizontal position of AVID signal and the horizontal position of the EAV/SAV embedded sync codes. VBLNK settings control the vertical postion and duration of the AVID signal but do not alter the position of the embedded sync V-bit.  The embedded sync vertical position cannot be changed by a direct I2C resgister and is more difficult to control.  It is best to control this in the back-end processor.

    TVP5150AM1
    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Satish Nadigatla
    Posted by Satish Nadigatla
    on Nov 23 2011 03:04 AM
    Prodigy100 points

    Hello Larry Taylor,

    Thanks alot for the replay.We will try to cropp that unwanted dotten lines from back-end process.But we need some information how to set the VBLK(18h, 19h) registers.If you have any information how to set these regsiter values please share it with us.From the data sheet not getting complete inforamtion clearly.We tried setting those (18h-19h) registers , but we are geeting some extra lines on the screen.

    Thanks and Regards,

    Satish

    TVP5150AM1
    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Larry Taylor
    Posted by Larry Taylor
    on Nov 23 2011 08:05 AM
    Genius16810 points

    The VBLK Start/Stop registers affect the VBLK interval of the AVID output signal (pin26).  Increasing VBLK Stop (REG19h) by 1 should move the first line from the active portion of the AVID output signal.  For this to be effective at removing the line, the processor must use the AVID output signal to qualify active video.  The video lines to do not automatically get forced to black level during the VBLK interval.

    TVP5150AM1
    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Satish Nadigatla
    Posted by Satish Nadigatla
    on Nov 23 2011 08:05 AM
    Prodigy100 points

    Hello Larry Taylor,

     

    From your answer to one of post to shift the vertical position i got the below information.

    *************************************************************************************************

    Larry

    // First unlock the TVP5150AM1 for this update

    Set REG 0x21 = 0x51

    Set REG 0x22 = 0x50

    Set REG 0x23 = 0xFF

    SEt REG 0x24 = 0x04

    //Now modify the v-bit start register,

    Set REG 0x21 = 0x00 // Data MSB

    Set REG 0x22 = 0x04  // Data LSB

    Set REG 0x23 = 0x2B  //register address

    SEt REG 0x24 = 0x04  //register bank

    //and v-bit stop register

    Set REG 0x21 = 0x00 //register data MSB

    Set REG 0x22 = 0x03 //register data LSB

    Set REG 0x23 = 0x2C //register address

    SEt REG 0x24 = 0x04 //register bank

    ********************************************************************************************************

    I have modifed the above code.Please see the below for the same.

     

    Larry

    // First unlock the TVP5150AM1 for this update

    Set REG 0x21 = 0x51

    Set REG 0x22 = 0x50

    Set REG 0x23 = 0xFF

    SEt REG 0x24 = 0x04

    //Now modify the v-bit start register,

    Set REG 0x21 = 0x00 // Data MSB

    Set REG 0x22 = 0x09  // Data LSB

    Set REG 0x23 = 0x2B  //register address

    SEt REG 0x24 = 0x04  //register bank

    //and v-bit stop register

    Set REG 0x21 = 0x00 //register data MSB

    Set REG 0x22 = 0x08 //register data LSB

    Set REG 0x23 = 0x2C //register address

    SEt REG 0x24 = 0x04 //register bank

     

    With above changes the unwanted dotted lines are shifting below.That means the screen is shifting below.But i need the screen shold move up.Can you please suggest me possible register values to move the screen UP.

     

    Thanks and Regards,

    Satish

    TVP5150AM1
    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Satish Nadigatla
    Posted by Satish Nadigatla
    on Nov 24 2011 04:08 AM
    Prodigy100 points

    Hello Larry Taylor,

    Can you please let me know to shift the video up(vertical size increase) by changing the above register values.If  you have any document for doing these calculations please share with us or tell us how to do calculations for setting these register values.Waiting for your replay.Please help us in this problem.

    Thanks and Regards,

    Satish

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
  • Satish Nadigatla
    Posted by Satish Nadigatla
    on Nov 28 2011 04:44 AM
    Prodigy100 points

    Hello Larry Taylor,

     

    I was waiting for your replay.Can you please give some idea how to set those register values or give some information on those registers.Also please suggest different back-end methods to remove those unwanted lines.

    Thanks and Regards,

    Satish

    Report Abuse
    • Reply
    You have posted to a forum that requires a moderator to approve posts before they are publicly available.
TI E2E™ Community
  • Support Forums
  • Blogs
  • Videos
  • Groups
  • Site Support & Feedback
  • Settings
TI E2E™ Community Groups
  • TI University Program
  • Make the Switch
  • Microcontroller Projects
  • Motor Drive & Control
Other Communities
  • Deyisupport
  • Designsomething.org
  • beagleboard.org
  • TI on Element 14
  • TI on TechXchangeSM
Other Technical & Support Resources
  • WEBENCH® Design Center
  • Product Information Centers
  • Technical Documents
  • TI Design Network
  • TI Technical Articles
  • TI Training

All content and materials on this site are provided "as is". TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a particular purpose, title and non-infringement of any third party intellectual property right. TI and its respective suppliers and providers of content make no representations about the suitability of these materials for any purpose and disclaim all warranties and conditions with respect to these materials. No license, either express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a license from a third party, or a license from TI.

Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms of Use of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms of Use of this site. TI, its suppliers and providers of content reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.

Follow Us Texas Instruments on Facebook Texas Instruments on Twitter Texas Instruments on LinkedIn Texas Instruments on Google+
TI Worldwide | Contact Us | my.TI Login | Site Map | Corporate Citizenship | mobile m.ti.com (Mobile Version)

TI is a global semiconductor design and manufacturing company. Innovate with 100,000+ analog ICs and
embedded processors, along with software, tools and the industry’s largest sales/support staff.

© Copyright 1995-2013 Texas Instruments Incorporated. All rights reserved.
Trademarks | Privacy Policy | Terms of Use