~ubuntu-branches/debian/squeeze/mplayer/squeeze

« back to all changes in this revision

Viewing changes to libdvdread4/ifo_read.c

  • Committer: Bazaar Package Importer
  • Author(s): Andres Mejia
  • Date: 2010-05-03 20:19:41 UTC
  • mfrom: (1.1.3 upstream) (0.1.66 lucid)
  • Revision ID: james.westby@ubuntu.com-20100503201941-yt932nfarr850vj2
Tags: 2:1.0~rc3+svn20100502-2
Remove mencoder from Depends in mplayer-dbg package.

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 */