home *** CD-ROM | disk | FTP | other *** search
/ Freelog 125 / Freelog_MarsAvril2015_No125.iso / Multimedia / AVStoDVD / AVStoDVD_Portable.exe / AVStoDVD_Portable / DGPulldown / GOPNote.txt < prev   
Text File  |  2006-12-14  |  3KB  |  53 lines

  1. The GOP size is a count of physical frames in the bitstream and is independent of the display duration of the frames in the GOP. DVD limits the GOP sizes to 18 for NTSC and 15 for PAL, but the count is actual encoded frames, not the display duration of those frames. 
  2.  
  3. There is a case however, with 23.976 pulldown and 15 frame GOP's, where a set of GOP's may be encoded such that they cannot be made DVD compliant. Use 12 frame GOP's to avoid the problem. 
  4.  
  5. DVD specifies that the stream be broken into VOBU's, a VOBU starts with a GOP and may contain more than 1 GOP but the display duration of the VOBU must be >= 0.4 seconds and <= 1.0 seconds (except for the last VOBU which may be <= 1.2 seconds). 
  6.  
  7. If a 15 frame GOP is created followed by a 9 frame GOP (say because of a chapter point) and then followed by another 15 frame GOP, the 9 frame GOP cannot be combined into a VOBU and would be considered to have an illegal length. 
  8.  
  9. The 9 frame GOP display period is 367.0333... or 383.71666... ms (4 or 5 frames will have repeat first field = 1), too short to be in a VOBU by itself so it has to be combined with the previous or next GOP to form a VOBU. 
  10.  
  11. The 15 frame GOP's display period is 617.28333... or 633.9666... ms (7 or 8 frames will have repeat first field = 1). 
  12.  
  13. Normally you would have either: 
  14.  
  15. 15 frame GOP: 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 (8 extra fields) 
  16. 9 frame GOP: 2 3 2 3 2 3 2 3 2 (4 extra fields) 
  17. 15 frame GOP: 3 2 3 2 3 2 3 2 3 2 3 2 3 2 3 (8 extra fields) 
  18.  
  19. 633.9666 + 367.0333 = 1000.999... too large! 
  20.  
  21. or 
  22.  
  23. 15 frame GOP: 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 (7 extra fields) 
  24. 9 frame GOP: 3 2 3 2 3 2 3 2 3 (5 extra fields) 
  25. 15 frame GOP: 2 3 2 3 2 3 2 3 2 3 2 3 2 3 2 (7 extra fields) 
  26.  
  27. 617.28333 + 383.71666 = 1000.999... too large! 
  28.  
  29. Our encoder is supposed to protect against generating this kind of GOP set, does the problem occur with output from the MainConcept encoder? 
  30.  
  31. Regards, 
  32. Brent Beyeler
  33.  
  34. ------------------------------------------------------------------------------------------------------------------------------------
  35.  
  36. Originally Posted by bigotti5:
  37.  
  38. The GOP length restriction is based on displayed frames - not encoded frames.
  39.  
  40. Two max length GOPs (presentation period) has to fit within 1,2 seconds. 
  41.  
  42. Two 15 frame encoded GOPs then pulldowned will display for 1,3 seconds 
  43.  
  44. 15 x 1.25 (the pulldown) = 18.75 gops = 38 fields = 38/29.97 (display time) = 1.26 seconds
  45.  
  46. Quote:
  47. Originally Posted by From Philips verifier manual 
  48. (ref. DVD-3 5.1.1)
  49. A VOBU represents a presentation period of at least 0.4 seconds.
  50. A VOBU except the last VOBU of a cell shall represent a presentation period of at most 1 second. The last VOBU of a cell shall represent a presentation period of at most 1.2 seconds. 
  51.  
  52. Meaning even though some "better" players handle these files fine, the DVD spec is done by displayed frames, so you are technically not DVD compliant over 12 GOPs w/ 23.976 pulldown video.
  53.