~ubuntu-branches/ubuntu/natty/imagemagick/natty-security

« back to all changes in this revision

Viewing changes to coders/dng.c

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich
  • Date: 2009-11-27 09:32:04 UTC
  • mfrom: (6.2.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20091127093204-m038t8kmxk6uvc25
Tags: 7:6.5.7.8-1ubuntu1
* Merge from debian testing.  Remaining changes:
  - Don't build-dep on librsvg, it brings in excessive dependencies
  - Don't build-dep on liblqr-1-0-dev, it is in universe

Show diffs side-by-side

added added

removed removed

Lines of Context:
238
238
  MagickInfo
239
239
    *entry;
240
240
 
 
241
  entry=SetMagickInfo("3FR");
 
242
  entry->decoder=(DecodeImageHandler *) ReadDNGImage;
 
243
  entry->blob_support=MagickFalse;
 
244
  entry->seekable_stream=MagickTrue;
 
245
  entry->format_type=ExplicitFormatType;
 
246
  entry->description=ConstantString("Hasselblad CFV/H3D39II");
 
247
  entry->module=ConstantString("DNG");
 
248
  (void) RegisterMagickInfo(entry);
241
249
  entry=SetMagickInfo("ARW");
242
250
  entry->decoder=(DecodeImageHandler *) ReadDNGImage;
243
251
  entry->blob_support=MagickFalse;
405
413
  (void) UnregisterMagickInfo("CR2");
406
414
  (void) UnregisterMagickInfo("DNG");
407
415
  (void) UnregisterMagickInfo("ARW");
 
416
  (void) UnregisterMagickInfo("3FR");
408
417
}