~ubuntu-branches/ubuntu/lucid/mythtv/lucid

« back to all changes in this revision

Viewing changes to libs/libmythdvdnav/dvdread/ifo_read.c

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2009-09-08 23:08:37 UTC
  • mfrom: (1.1.32 upstream)
  • Revision ID: james.westby@ubuntu.com-20090908230837-zrm2j6wutp76hwso
Tags: 0.22.0~trunk21742-0ubuntu1
* New upstream checkout (21742)
  - Fixes FTBFS on PPC. See changeset 21571 for more details.

Show diffs side-by-side

added added

removed removed

Lines of Context:
844
844
 
845
845
  /* verify time (look at print_time) */
846
846
  for(i = 0; i < 8; i++)
847
 
    if(!pgc->audio_control[i] & 0x8000) /* The 'is present' bit */
 
847
    if(!(pgc->audio_control[i] & 0x8000)) /* The 'is present' bit */
848
848
      CHECK_ZERO(pgc->audio_control[i]);
849
849
  for(i = 0; i < 32; i++)
850
 
    if(!pgc->subp_control[i] & 0x80000000) /* The 'is present' bit */
 
850
    if(!(pgc->subp_control[i] & 0x80000000)) /* The 'is present' bit */
851
851
      CHECK_ZERO(pgc->subp_control[i]);
852
852
 
853
853
  /* Check that time is 0:0:0:0 also if nr_of_programs == 0 */