summaryrefslogtreecommitdiff
path: root/lib/libdv_wrapper.cc
blob: cb9cc7ce7815fb3f52a169074198b2e72e806057 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
 *            libdv_wrapper.cc
 *
 *  Mon Apr 10 11:20:18 CEST 2006
 *  Copyright  2006 Bent Bisballe Nyeng
 *  deva@aasimon.org
 ****************************************************************************/

/*
 *  This file is part of MIaV.
 *
 *  MIaV is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  MIaV is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with MIaV; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#include "libdv_wrapper.h"

//#define COLORSPACE_YV12

LibDVWrapper::LibDVWrapper(DV::Quality quality,
                           DV::System system,
                           DV::Sampling sampling)
{
	decoder = dv_decoder_new(FALSE, // int ignored
                           FALSE, // int clamp_luma
                           FALSE);// int clamp_chroma
  setQuality(quality);
  setSystem(system);
  setSampling(sampling);

  yuv[0] = yuv[1] = yuv[2] = NULL;
  pitches[0] = pitches[1] = pitches[2] = 0;

  width = 720;
  height = 576;
  //  first = true;


  // TESTING
  //  decoder->std = e_dv_std_smpte_314m;//e_dv_std_iec_61834;
  decoder->num_dif_seqs = 12; // DIF sequences per frame (12 does the trick)

}


LibDVWrapper::~LibDVWrapper()
{
  dv_decoder_free(decoder);
}

void LibDVWrapper::setQuality(DV::Quality quality)
{
  dv_set_quality(decoder, quality);
}

void LibDVWrapper::setSystem(DV::System system)
{
  decoder->system = (dv_system_t)system;
}

void LibDVWrapper::setSampling(DV::Sampling sampling)
{
  decoder->sampling = (dv_sample_t)sampling;
}

Frame *LibDVWrapper::decode(Frame *input, DV::ColorSpace c)
{
  if(input->vformat != VF_DV) {
    fprintf(stderr, "Wrong format in LibDVWrapper, expected VF_DV, got: %i\n", input->vformat);
    return NULL;
  }

  /*
  if(first) {
    dv_parse_header(decoder, (const uint8_t*)input);
    //dv_parse_packs(decoder, frame->data); // Not needed anyway!
    decoder->std = e_dv_std_iec_61834;
    decoder->num_dif_seqs = 12;
    first = false;
  }
  */


  int size = 0;
  char* buf = NULL;
  int type = VF_NONE;
  DV::ColorSpace colorspace = c;
  switch(colorspace) {
  case DV::YUV:
#ifdef COLORSPACE_YV12
    size = width*height*2;
    buf = (char*)malloc(size);
    type = VF_YV12;
    yuv[0] = (unsigned char*)buf;
    yuv[1] = (unsigned char*)yuv[0] + (width * height);
    yuv[2] = (unsigned char*)yuv[1] + (width * height / 4);
    pitches[0] = width;
    pitches[1] = width / 2;
    pitches[2] = width / 2;
#else
    printf("!\n");
    size = width*height*2;
    buf = (char*)malloc(size);
    type = VF_YUV422;
    yuv[0] = (unsigned char*)buf;
    yuv[1] = yuv[2] = NULL;
    pitches[0] = width * 2;
    pitches[1] = pitches[2] = 0;
#endif
    break;

  case DV::RGB:
    size = width*height*3;
    buf = (char*)malloc(size);
    type = VF_RGB;
    yuv[0] = (unsigned char*)buf;
    yuv[1] = yuv[2] = NULL;
    pitches[0] = width * 3;
    pitches[1] = pitches[2] = 0;
    break;

  case DV::BGR0:
    size = width*height*4;
    buf = (char*)malloc(size);
    type = VF_BRG0;
    yuv[0] = (unsigned char*)buf;
    yuv[1] = yuv[2] = NULL;
    pitches[0] = width * 4;
    pitches[1] = pitches[2] = 0;
    break;
  }


  dv_decode_full_frame(decoder,
                       (const uint8_t*)input,
                       (dv_color_space_t)colorspace,
                       yuv,
                       pitches);
  //  memset(buf, 1, width*height);
  //  memset(buf+width*height, 100, width*height/2);
  //  memset(buf+width*height+width*height/2, 200, width*height/2);
  Frame *frame = new Frame(buf, size, type, NULL, 0, AF_NONE);
  return frame;
}