OneCCcam HD CCCam CardSharing Server

CCcamSharing.com Best CCcam Since 2003  HD and 3D No Freezez get 11% Discount now   Coupon Code :87053A6640
Mobi-Times.com     Free Mobile Software | Mobile Downloads | iPhones Software all Data Avalible
OneCCcam.com      No Freezez HD CCcam Server 6 Cline Pack 1Gbps Internet All Packages All Satellite All PPV
CCCamshop.com   3D & HD Freezez Free Custom Packages CCcam Reseller No.1 Choice CCcam

Advertisement

 

Thread: VDR Latest

Reply To Thread
Results 1 to 5 of 5
  1. Collapse Details
    VDR Latest 
    #1
    Super Moderator josagi's Avatar
    Join Date
    Feb 2009
    Location
    Spain
    Posts
    6,327
    Thanks
    1,270
    Thanked 1,245 Times in 969 Posts
    Downloads
    0
    Uploads
    0
    Default

    New vdr - version 1.7.5


    Code:
    The changes:
    
    - Fixed a hangup when replaying a TS recording with subtitles activated (reported
    by Timo Helkio).
    - Fixed handling the 'new' indicator in the recordings menu for TS recordings
    (thanks to Derek Kelly).
    - Added cap_sys_nice to the capabilities that are not dropped (thanks to Rolf
    Ahrenberg).
    - Updated the Italian OSD texts (thanks to Diego Pierotto).
    - Added cRecordingInfo::GetEvent() (thanks to Marcel Unbehaun).
    - Improved synchronizing the progress display, trick modes and subtitle display
    to the actual audio/video. This now works independent of any buffer sizes the
    output device might use.
    + The cBackTrace class has been replaced with cPtsIndex, which keeps track
    of the PTS timestamps of recently played frames.
    + cDevice::GetSTC() is now required to deliver the STC even in trick modes.
    It is sufficient if it returns the PTS of the most recently presented
    audio/video frame.
    + The full-featured DVB cards need an improved firmware in order to return
    proper STC values in trick modes (thanks to Oliver Endriss for enhancing the
    av7110 firmware).
    - Adapted cFrameDetector::Analyze() to HD NTSC broadcasts that split frames over
    several payload units (thanks to Derek Kelly for reporting this and helping in
    testing).
    - Modified cFrameDetector::Analyze() to make it process whole frames at once, so
    that file I/O overhead is minimized during recording (reported by Günter
    Niedermeier).
    - Added command line help for the '-i' option.
    - Fixed cDvbPlayer::NextFile() to handle files larger than 2GB (thanks to Jose
    Alberto Reguero).
    - Improved replay at the begin and end of a recording. The very first and very last
    frame is now sent to the output device repeatedly until GetSTC() reports that it
    has been played. cDvbPlayer::Action() no longer calls DeviceFlush() (thanks to
    Reinhard Nissl for making sure vdr-xine no longer needs this).
    - Added missing '[]' to the delete operator in cMenuEditStrItem::~cMenuEditStrItem().
    - Added missing virtual destructor to cPalette.
    - Now freeing configDirectory before setting it to a new value in
    cPlugin::SetConfigDirectory().
    - Fixed a crash when jumping to an editing mark in an audio recording.
    - Fixed the 'VideoOnly' condition in the PlayPes() and PlayTs() calls in
    cDvbPlayer::Action() (thanks to Reinhard Nissl).
    - cDevice::PlayTs() now plays as many TS packets as possible in one call.
    - Making sure any floating point numbers written use a decimal point (thanks to
    Oliver Endriss for pointing out a problem with the F record in the info file of
    a recording).
    - Fixed detecting the frame rate for radio recordings.
    - Added missing AUDIO_PAUSE/AUDIO_CONTINUE calls to cDvbDevice (thanks to Oliver
    Endriss).
    - No longer writing the video type into channels.conf if VPID is 0 (thanks to
    Oliver Endriss for reporting this).
    - Improved efficiency of cEIT::cEIT() (thanks to Tobias Bratfisch).
    Attached Files

    Reply With Quote
     

  2. Collapse Details
    Vdr 
    #2
    Super Moderator bu_Ali65's Avatar
    Join Date
    Sep 2008
    Location
    Kuwait
    Posts
    12,143
    Thanks
    339
    Thanked 1,349 Times in 1,084 Posts
    Downloads
    0
    Uploads
    0
    Default

    VDR Version 1.7.7

    Code:
    - The new function cDevice::GetVideoSize() returns the size and   aspect ratio
      of the video material currently displayed. This function is used to determine
      the proper size of the OSD. Plugin authors should implement this function in
      classes derived from cDevice, if they are able to replay video.
    - The OSD and font sizes are now defined in percent of the actual video display
       size. The maximum OSD size has been raised to 1920x1080, to allow full
       screen OSD on HD systems.
     - The OSD size is now automatically adjusted to the actual video display
       (provided the output device implements the GetVideoSize() function).
     - cFrameDetector::Analyze() now syncs on the TS packet sync bytes (thanks to
       Oliver Endriss for reporting broken index generation after a buffer overflow).
    Attached Files

    click FORUM RULES here
    NO SUPPORT VIA PM OR EMAIL


    NOTE


    NO DISCUSSION OF NDS ENCRYPTION
    ADVERTISEMENTS NOT ALLOWED

    USE THANK BUTTON TO APPRECIATE THE POST




    Viewing Pay TV without a valid subscription is ILLEGAL !!

    All the files available here are for experimental and educational purpose only!

    Reply With Quote
     

  3. The Following 2 Users Say Thank You to bu_Ali65 For This Useful Post:

    B**E**N**I (05-26-2009), josagi (05-26-2009)

  4. Collapse Details
     
    #3
    Super Moderator josagi's Avatar
    Join Date
    Feb 2009
    Location
    Spain
    Posts
    6,327
    Thanks
    1,270
    Thanked 1,245 Times in 969 Posts
    Downloads
    0
    Uploads
    0
    Default

    VDR Version 1.7.8

    Code:
    - The name of the function cDevice::GetVideoSize() wasn't very well chosen
      for its purpose of defining the optimum size of the OSD for the current
      output device. Therefore a new function named cDevice::GetOsdSize() has
      been introduced (suggested by Rolf Ahrenberg). Plugin authors should
      implement this function in classes derived from cDevice, if they are able
      to replay video. cDevice::GetVideoSize() still exists and should return the
      actual size of the video material that is currently replayed. Note that
      because of the many possible aspect ratios for video material, the type
      of the Aspect parameter of GetVideoSize() has been changed to 'double',
      and the Aspect parameter in both functions is named differently, because
      it returns different values (suggested by Reinhard Nissl).
      Thanks to Oliver Endriss for his input on calculating the Aspect factor in
      GetOsdSize().
    - Fixed the way the OSD size is determined on full featured DVB cards (thanks
      to Oliver Endriss).
    - Increased MAXOSDHEIGHT to 1200 (suggested by Nicolas Huillard).
    - Removed limitation to PAL resolution from SPU handling.
    - Checking fd_video in cDvbDevice::GetVideoSize() to avoid error messages on
      systems with no real primary replay device (reported by Martin Neuditschko).
    - Added a note to cTsToPes::GetPes() about having to call it repeatedly, once
      it has returned a non-NULL value.
    - Added MPEG 1 handling to remux.c (thanks to Ales Jurik).
    - Fixed use of time_t in cEIT::cEIT() (thanks to Tobias Bratfisch).
    - Added missing update of lastOsdSizeUpdate.
    - EIT events are now only processed if a plausible system time is available, to
      avoid wrong handling of PDC descriptors (thanks to Tobias Bratfisch).
    - Removed unused 'synced' member from cTsToPes (reported by Christoph Haubrich).
    - Added a note to cTsToPes about all TS packets having to belong to the same PID,
      and that for video data GetPes() may only be called if the next TS packet that
      will be given to PutTs() has the "payload start" flag set (suggested by Christoph
      Haubrich).
    - Added a note about the meaning of PERCENTAGEDELTA in cRingBuffer::UpdatePercentage()
      (thanks to Rolf Ahrenberg).
    - The new setup option "Recording/Pause key handling" can be used to define
      what happens if the Pause key on the remote control is pressed during
      live tv (thanks to Timo Eskola).
    - Added a note about cFont::GetFont() not being thread-safe.
    - Fixed generating PAT/PMT version numbers in case the PIDs change during
      recording (reported by Reinhard Nissl).
    - Updated the Ukrainian OSD texts (thanks to Yarema Aka Knedlyk).
    - Fixed a memory leak when reaching the end of a recording during replay (reported
      by Reinhard Nissl).
    - Fixed calling close(-1) in cUnbufferedFile::Close() (reported by Reinhard Nissl).
    - Added a workaround for the broken linux-dvb driver header files (based on a patch
      from Tobias Grimm).
    - Fixed handling the length of DiSEqC command sequences (reported by Reinhard Nissl).
    - Fixed cOsdMenu::Display() in case the menu size has changed (thanks to
      Reinhard Nissl).
    - Added some missing 'const' keywords to avoid compilation errors with gcc 4.4
      (thanks to Ville Skyttä and Ludwig Nussel).
    - Modified cSVDRP::CmdGRAB() to avoid writing into const data (reported by
      Ludwig Nussel).
    - Fixed calculating menu colum widths in case the font has a size other than the
      default size (reported by Reinhard Nissl).
    - Added a plausibility check for the OSD percentage parameters
      to avoid problems in case the values are stored in the setup.conf
      file in a  wrong way.
    - Fixed variable types in cIndexFile (reported by Udo Richter).
    Attached Files

    Reply With Quote
     

  5. Collapse Details
    Vdr 
    #4
    Super Moderator bu_Ali65's Avatar
    Join Date
    Sep 2008
    Location
    Kuwait
    Posts
    12,143
    Thanks
    339
    Thanked 1,349 Times in 1,084 Posts
    Downloads
    0
    Uploads
    0
    Default

    VDR Version 1.7.8

    Code:
    - The name of the function cDevice::GetVideoSize() wasn't very well chosen
      for its purpose of defining the optimum size of the OSD for the current
      output device. Therefore a new function named cDevice::GetOsdSize() has
      been introduced (suggested by Rolf Ahrenberg). Plugin authors should
      implement this function in classes derived from cDevice, if they are able
      to replay video. cDevice::GetVideoSize() still exists and should return the
      actual size of the video material that is currently replayed. Note that
      because of the many possible aspect ratios for video material, the type
      of the Aspect parameter of GetVideoSize() has been changed to 'double',
      and the Aspect parameter in both functions is named differently, because
      it returns different values (suggested by Reinhard Nissl).
      Thanks to Oliver Endriss for his input on calculating the Aspect factor in
      GetOsdSize().
    - Fixed the way the OSD size is determined on full featured DVB cards (thanks
      to Oliver Endriss).
    - Increased MAXOSDHEIGHT to 1200 (suggested by Nicolas Huillard).
    - Removed limitation to PAL resolution from SPU handling.
    - Checking fd_video in cDvbDevice::GetVideoSize() to avoid error messages on
      systems with no real primary replay device (reported by Martin Neuditschko).
    - Added a note to cTsToPes::GetPes() about having to call it repeatedly, once
      it has returned a non-NULL value.
    - Added MPEG 1 handling to remux.c (thanks to Ales Jurik).
    - Fixed use of time_t in cEIT::cEIT() (thanks to Tobias Bratfisch).
    - Added missing update of lastOsdSizeUpdate.
    - EIT events are now only processed if a plausible system time is available, to
      avoid wrong handling of PDC descriptors (thanks to Tobias Bratfisch).
    - Removed unused 'synced' member from cTsToPes (reported by Christoph Haubrich).
    - Added a note to cTsToPes about all TS packets having to belong to the same PID,
      and that for video data GetPes() may only be called if the next TS packet that
      will be given to PutTs() has the "payload start" flag set (suggested by Christoph
      Haubrich).
    - Added a note about the meaning of PERCENTAGEDELTA in cRingBuffer::UpdatePercentage()
      (thanks to Rolf Ahrenberg).
    - The new setup option "Recording/Pause key handling" can be used to define
      what happens if the Pause key on the remote control is pressed during
      live tv (thanks to Timo Eskola).
    - Added a note about cFont::GetFont() not being thread-safe.
    - Fixed generating PAT/PMT version numbers in case the PIDs change during
      recording (reported by Reinhard Nissl).
    - Updated the Ukrainian OSD texts (thanks to Yarema Aka Knedlyk).
    - Fixed a memory leak when reaching the end of a recording during replay (reported
      by Reinhard Nissl).
    - Fixed calling close(-1) in cUnbufferedFile::Close() (reported by Reinhard Nissl).
    - Added a workaround for the broken linux-dvb driver header files (based on a patch
      from Tobias Grimm).
    - Fixed handling the length of DiSEqC command sequences (reported by Reinhard Nissl).
    - Fixed cOsdMenu::Display() in case the menu size has changed (thanks to
      Reinhard Nissl).
    - Added some missing 'const' keywords to avoid compilation errors with gcc 4.4
      (thanks to Ville Skyttä and Ludwig Nussel).
    - Modified cSVDRP::CmdGRAB() to avoid writing into const data (reported by
      Ludwig Nussel).
    - Fixed calculating menu colum widths in case the font has a size other than the
      default size (reported by Reinhard Nissl).
    - Added a plausibility check for the OSD percentage parameters
      to avoid problems in case the values are stored in the setup.conf
      file in a  wrong way.
    - Fixed variable types in cIndexFile (reported by Udo Richter).
    Attached Files

    click FORUM RULES here
    NO SUPPORT VIA PM OR EMAIL


    NOTE


    NO DISCUSSION OF NDS ENCRYPTION
    ADVERTISEMENTS NOT ALLOWED

    USE THANK BUTTON TO APPRECIATE THE POST




    Viewing Pay TV without a valid subscription is ILLEGAL !!

    All the files available here are for experimental and educational purpose only!

    Reply With Quote
     

  6. The Following User Says Thank You to bu_Ali65 For This Useful Post:

    josagi (12-22-2009)

  7. Collapse Details
     
    #5
    Super Moderator josagi's Avatar
    Join Date
    Feb 2009
    Location
    Spain
    Posts
    6,327
    Thanks
    1,270
    Thanked 1,245 Times in 969 Posts
    Downloads
    0
    Uploads
    0
    Default

    02.01.2010

    VDR patch NA EIT (replaces DN EIT)

    The new NA EIT patch is an updated version of the dn-eit patch.

    Improvements include:

    - Reduced memory usage
    - No needless memory copying
    - Episode name detection
    - Parental ratings and critiques (only visible if supported by your EPG viewer)
    - Language name for Dolby Digital PIDs
    Attached Files

    Reply With Quote
     

Reply To Thread

Similar Threads

  1. Cardservproxy CSP Latest
    By satmaker in forum NewCS
    Replies: 5
    Last Post: 11-08-2011, 01:17 PM
  2. ALL latest FEED For To Day
    By bu_Ali65 in forum Transponder & Feeds Updates
    Replies: 29
    Last Post: 03-25-2011, 04:31 AM
  3. Latest RB Emu Pack
    By bu_Ali65 in forum DreamBox KeyFiles
    Replies: 35
    Last Post: 10-08-2010, 12:19 PM
  4. Latest f7700_git_release_incl_kernel
    By bu_Ali65 in forum Topfield
    Replies: 1
    Last Post: 05-12-2010, 02:23 PM
  5. Hbo Ary Latest Keys
    By tplink831 in forum Cryptoworks
    Replies: 0
    Last Post: 09-15-2009, 10:45 AM

Visitors found this page by searching for:

STC vdr

sc- .tar vdr

cardservproxy vdr-sc

Sat-Times Cardsharing

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252