~ubuntu-branches/ubuntu/saucy/darktable/saucy

« back to all changes in this revision

Viewing changes to src/control/jobs/develop_jobs.c

  • Committer: Bazaar Package Importer
  • Author(s): David Bremner
  • Date: 2011-04-14 23:42:12 UTC
  • Revision ID: james.westby@ubuntu.com-20110414234212-kuffcz5wiu18v6ra
Tags: upstream-0.8
ImportĀ upstreamĀ versionĀ 0.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
    This file is part of darktable,
 
3
    copyright (c) 2010 Henrik Andersson.
 
4
 
 
5
    darktable is free software: you can redistribute it and/or modify
 
6
    it under the terms of the GNU General Public License as published by
 
7
    the Free Software Foundation, either version 3 of the License, or
 
8
    (at your option) any later version.
 
9
 
 
10
    darktable is distributed in the hope that it will be useful,
 
11
    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
    GNU General Public License for more details.
 
14
 
 
15
    You should have received a copy of the GNU General Public License
 
16
    along with darktable.  If not, see <http://www.gnu.org/licenses/>.
 
17
*/
 
18
 
 
19
#include "control/jobs/develop_jobs.h"
 
20
#include "control/jobs/control_jobs.h"
 
21
 
 
22
int32_t dt_dev_raw_load_job_run(dt_job_t *job)
 
23
{
 
24
  dt_dev_raw_load_t *t = (dt_dev_raw_load_t *)job->param;
 
25
  dt_dev_raw_load(t->dev, t->image);
 
26
  return 0;
 
27
}
 
28
 
 
29
void dt_dev_raw_load_job_init(dt_job_t *job, dt_develop_t *dev, dt_image_t *image)
 
30
{
 
31
  dt_control_job_init(job, "develop load raw image %s", image->filename);
 
32
  job->execute =&dt_dev_raw_load_job_run;
 
33
  dt_dev_raw_load_t *t = (dt_dev_raw_load_t *)job->param;
 
34
  t->dev = dev;
 
35
  t->image = image;
 
36
}
 
37
 
 
38
int32_t dt_dev_process_preview_job_run(dt_job_t *job)
 
39
{
 
40
  dt_dev_process_t *t = (dt_dev_process_t *)job->param;
 
41
  dt_dev_process_preview_job(t->dev);
 
42
  return 0;
 
43
}
 
44
 
 
45
void dt_dev_process_preview_job_init(dt_job_t *job, dt_develop_t *dev)
 
46
{
 
47
  dt_control_job_init(job, "develop process preview");
 
48
  job->execute = &dt_dev_process_preview_job_run;
 
49
  dt_dev_process_t *t = (dt_dev_process_t *)job->param;
 
50
  t->dev = dev;
 
51
}
 
52
 
 
53
int32_t dt_dev_process_image_job_run(dt_job_t *job)
 
54
{
 
55
  dt_dev_process_t *t = (dt_dev_process_t *)job->param;
 
56
  dt_dev_process_image_job(t->dev);
 
57
  return 0;
 
58
}
 
59
 
 
60
void dt_dev_process_image_job_init(dt_job_t *job, dt_develop_t *dev)
 
61
{
 
62
  dt_control_job_init(job, "develop process image");
 
63
  job->execute = &dt_dev_process_image_job_run;
 
64
  dt_dev_process_t *t = (dt_dev_process_t *)job->param;
 
65
  t->dev = dev;
 
66
}
 
67