~ubuntu-branches/ubuntu/saucy/libjpeg-turbo/saucy-security

« back to all changes in this revision

Viewing changes to java/org/libjpegturbo/turbojpeg/TJCustomFilter.java

  • Committer: Package Import Robot
  • Author(s): Fathi Boudra
  • Date: 2013-07-28 16:52:51 UTC
  • mfrom: (1.1.3) (9.1.1 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130728165251-7vg6wszhm941kdej
Tags: 1.3.0-0ubuntu1
* New upstream release.
  - drop debian/patches/branch-updates.diff
  - refresh tjunittest.patch (now renamed to install-tjunittest.patch)
* Update debian/control:
  - add myself to Uploaders.
* Update debian/copyright:
  - add RSA Data Security copyright (md5).
* Update debian/libturbojpeg.install:
  - install libturbojpeg.so.0* (needed by tjunittest and tjbench).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C)2011 D. R. Commander.  All Rights Reserved.
 
2
 * Copyright (C)2011, 2013 D. R. Commander.  All Rights Reserved.
3
3
 *
4
4
 * Redistribution and use in source and binary forms, with or without
5
5
 * modification, are permitted provided that the following conditions are met:
58
58
   * component plane to which <code>coeffBuffer</code> belongs
59
59
   *
60
60
   * @param componentID ID number of the component plane to which
61
 
   * <code>coeffBuffer</code>belongs (Y, Cb, and Cr have, respectively, ID's of
 
61
   * <code>coeffBuffer</code> belongs (Y, U, and V have, respectively, ID's of
62
62
   * 0, 1, and 2 in typical JPEG images.)
63
63
   *
64
64
   * @param transformID ID number of the transformed image to which
65
65
   * <code>coeffBuffer</code> belongs.  This is the same as the index of the
66
 
   * transform in the transforms array that was passed to {@link
 
66
   * transform in the <code>transforms</code> array that was passed to {@link
67
67
   * TJTransformer#transform TJTransformer.transform()}.
68
68
   *
69
69
   * @param transform a {@link TJTransform} instance that specifies the
70
70
   * parameters and/or cropping region for this transform
71
71
   */
72
 
  public void customFilter(ShortBuffer coeffBuffer, Rectangle bufferRegion,
73
 
    Rectangle planeRegion, int componentID, int transformID,
74
 
    TJTransform transform)
 
72
  void customFilter(ShortBuffer coeffBuffer, Rectangle bufferRegion,
 
73
                    Rectangle planeRegion, int componentID, int transformID,
 
74
                    TJTransform transform)
75
75
    throws Exception;
76
76
}