~ubuntu-branches/ubuntu/trusty/dvd95/trusty

« back to all changes in this revision

Viewing changes to dvdauthor/dvdvob.c

  • Committer: Bazaar Package Importer
  • Author(s): William Grant
  • Date: 2007-11-10 08:33:32 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071110083332-pry0uz9nx4u1s1xz
Tags: 1.3p0-0ubuntu1
* New upstream release.
* debian/control:
  - Move homepage to Homepage field.
  - Comply with DebianMaintainerField.
  - Build-Depend on libmpeg-2-4-dev.
* debian/rules: Check if Makefile exists before cleaning, rather than
  ignoring all errors.
* Fix up .desktop:
  - debian/rules: Use dpatch.
  - debian/control: Build-Depend on dpatch.
  - debian/patches/01_fix_desktop_file.dpatch: Convince dvd95.desktop to
    comply with .desktop file standards.
* Add debian/watch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include <fcntl.h>
29
29
#include <ctype.h>
30
30
 
 
31
#if defined(__sun)
 
32
typedef uint32_t u_int32_t;
 
33
#endif
 
34
 
31
35
#include "dvdauthor.h"
32
36
#include "da-internal.h"
33
37
#include "libauthor.h"
980
984
// fprintf(stderr,"NewScr: %lld BackOffs: %lld\n", newscr, backoffs );
981
985
                if((newscr==0)&&(lastscr>0))
982
986
                {
983
 
                  fprintf(stderr,"\nWARN:  SCR reset. backoffs=%lld  lastscr=%lld\n",backoffs,lastscr);
 
987
                  fprintf(stderr,"\nWARN:  SCR reset. backoffs=%lld  lastscr=%lld\n",(long long int)backoffs,(long long int)lastscr);
984
988
                  backoffs-=lastscr;
985
 
                  fprintf(stderr,"\nWARN:  SCR reset. New back offset = %lld \n",backoffs);
 
989
                  fprintf(stderr,"\nWARN:  SCR reset. New back offset = %lld \n",(long long int)backoffs);
986
990
                } else if( newscr < lastscr ) {
987
 
                    fprintf(stderr,"ERR:  SCR moves backwards, remultiplex input. (%lld < %lld)\n", newscr, lastscr );
 
991
                    fprintf(stderr,"ERR:  SCR moves backwards, remultiplex input. (%lld < %lld)\n", (long long int)newscr, (long long int)lastscr );
988
992
//                    Exit(1);
989
993
                }
990
994
                lastscr=newscr;