~ubuntu-branches/ubuntu/precise/libav/precise-updates

« back to all changes in this revision

Viewing changes to libavcodec/qdm2_tablegen.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:30:00 UTC
  • mfrom: (1.2.8) (1.1.13 experimental)
  • Revision ID: package-import@ubuntu.com-20120112223000-cmfo7w78q13i2fd9
Tags: 4:0.8~beta2-1ubuntu1
* Merge from debian, remaining changes:
  - don't build against libdirac, lame, libopenjpeg, librtmp, 
    x264, and xvid  (all in universe)

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
 
91
91
static av_cold void init_noise_samples(void) {
92
92
    int i;
93
 
    int random_seed = 0;
 
93
    unsigned random_seed = 0;
94
94
    float delta = 1.0 / 16384.0;
95
95
    for (i = 0; i < 128;i++) {
96
96
        random_seed = random_seed * 214013 + 2531011;