~ubuntu-branches/ubuntu/trusty/libdv/trusty

« back to all changes in this revision

Viewing changes to libdv/dv_types.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2006-09-26 14:22:15 UTC
  • mfrom: (1.3.1 upstream) (3.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060926142215-q2arp4stpw6lrb5p
Tags: 1.0.0-1
* New upstream version.
* Removed patches:
  + [01_changelog_update_CVS]
  + [10_amd64_linkage_fix_CVS]
  + [10_inline_fixes_CVS]
  + [20_no_exec_stack_CVS]
  + [30_unload_memleak_fix_CVS]
  + [40_playdv_exit_fix_CVS]
  + [50_gcc41_asm_constraint_fixes_CVS]
    All of the above are part of the new upstream version.
* debian/control: In Build-Depends, remove alternative dependencies on
  obsolete SDL and X packages.
* debian/control: Complies with version 3.7.2 of Debian policy.
* debian/libdv4.README.Debian: Document lack of position-independent code
  in i386 version of libdv's shared library as mandated by recent versions
  of Debian policy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
62
62
#endif
63
63
 
64
64
// For now assume ARCH_X86 means GCC with hints.
65
 
#define HAVE_GCC ARCH_X86
 
65
#ifdef ARCH_X86
 
66
#define HAVE_GCC 1
 
67
#endif
 
68
#ifdef ARCH_X86_64
 
69
#define HAVE_GCC 1
 
70
#endif
66
71
//#define HAVE_GCC 0
67
72
 
68
73
#if HAVE_GCC
119
124
#define DV_FSC_0         (0)
120
125
#define DV_FSC_1         (1)
121
126
 
122
 
#if ARCH_X86
 
127
#if ARCH_X86 || ARCH_X86_64
123
128
#define DV_WEIGHT_BIAS   6
124
129
#else
125
130
#define DV_WEIGHT_BIAS   0
507
512
 
508
513
#if ARCH_X86
509
514
extern int dv_use_mmx;
 
515
#elif ARCH_X86_64
 
516
extern int dv_use_mmx;
510
517
#endif
511
518
 
512
519
#endif // DV_TYPES_H