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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
|
#include "exceptions.h"
#include "fastvideo.h"
#include <fastvideo_decoder_j2k.h>
#include <iostream>
using boost::shared_ptr;
shared_ptr<OpenJPEGImage>
fastvideo_decompress_j2k (dcp::Data data, int reduce)
{
fastJ2kImageInfo_t info;
fastStatus_t r = fastDecoderJ2kPredecode(&info, data.data().get(), data.size());
if (r != FAST_OK) {
throw FastvideoError ("J2kPredecode");
}
std::cout << "predecode -> " << info.width << "x" << info.height << " stream size " << info.streamSize << "\n";
/* Init */
fastDecoderJ2kStaticParameters_t parameters;
memset(¶meters, 0, sizeof(fastDecoderJ2kStaticParameters_t));
parameters.ResolutionLevels = 5 - reduce;
parameters.verboseLevel = 1;
parameters.enableROI = 0;
parameters.maxTileHeight = info.width;
parameters.maxTileWidth = info.height;
parameters.windowX0 = 0;
parameters.windowY0 = 0;
parameters.windowWidth = info.width;
parameters.windowHeight = info.height;
parameters.truncationLength = 0;
parameters.truncationMode = 0;
parameters.truncationRate = 0;
parameters.DecodePasses = 0;
parameters.imageInfo = &info;
parameters.maxStreamSize = info.streamSize;
fastDecoderJ2kHandle_t decoder;
fastDeviceSurfaceBufferHandle_t buffer;
r = fastDecoderJ2kCreate(
&decoder,
¶meters,
FAST_RGB8, info.width, info.height,
1,
&buffer
);
if (r != FAST_OK) {
std::cout << "r=" << r << "\n";
throw FastvideoError ("J2kCreate");
}
unsigned long long requested_mem_size = 0;
{
unsigned long long component_mem_size = 0;
r = fastDecoderJ2kGetAllocatedGpuMemorySize(decoder, &component_mem_size);
if (r != FAST_OK) {
throw FastvideoError ("J2kGetAllocatedGpuMemorySize");
}
requested_mem_size += component_mem_size;
}
fastExportToHostHandle_t adapter;
fastSurfaceFormat_t surface_format;
r = fastExportToHostCreate(&adapter, &surface_format, buffer);
if (r != FAST_OK) {
throw FastvideoError ("ExportToHostCreate");
}
{
unsigned int component_mem_size = 0;
r = fastExportToHostGetAllocatedGpuMemorySize(adapter, &component_mem_size);
if (r != FAST_OK) {
throw FastvideoError ("ExportToHostGetAllocatedGpuMemorySize");
}
requested_mem_size += component_mem_size;
}
const double gigabyte = 1024.0 * 1024.0 * 1024.0;
printf("\nRequested GPU memory size: %.2lf GB\n", requested_mem_size / gigabyte);
/* Transform */
double total_time = 0;
fastGpuTimerHandle_t device_to_host_timer = 0;
fastGpuTimerCreate(&device_to_host_timer);
fastDecoderJ2kReport_t report;
fastExportParameters_t export_parameters;
export_parameters.convert = FAST_CONVERT_NONE;
int aligned_width = info.width * 3;
aligned_width += 4 - (aligned_width % FAST_ALIGNMENT);
size_t decoded_size = info.height * aligned_width;
uint8_t* decoded = 0;
r = fastMalloc(reinterpret_cast<void**>(&decoded), decoded_size);
if (r != FAST_OK) {
throw FastvideoError ("fastMalloc");
}
r = fastDecoderJ2kTransform (decoder, decoded, decoded_size, &report);
if (r != FAST_OK) {
throw FastvideoError ("J2kTransform");
}
total_time += report.elapsedTime;
fastGpuTimerStart(device_to_host_timer);
r = fastExportToHostCopy(adapter, decoded, info.width, aligned_width, info.height, &export_parameters);
if (r != FAST_OK) {
throw FastvideoError ("ExportToHostCopy");
}
float elapsed_time_gpu = 0.;
fastGpuTimerStop(device_to_host_timer);
fastGpuTimerGetTime(device_to_host_timer, &elapsed_time_gpu);
total_time += elapsed_time_gpu / 1000.0;
if (report.codeblockCount > 0) {
printf("Input image : (%dx%d pixels; %d %d-bit channel(s))\n", info.width, info.height, report.channels, report.bitsPerChannel);
printf("Tile count: %d (%dx%d)\n", report.tileCount, report.tilesX, report.tilesY);
printf("Window mode disabled: decode full image\n");
printf("Resolution levels: %d\n", report.resolutionLevels);
printf("Codeblock size: %dx%d\n", report.cbX, report.cbY);
const double megabyte = 1024.0 * 1024.0;
printf("%7.2f ms 1) Tier-2 time (%d codeblocks)\n", report.s1_tier2 * 1000.0, report.codeblockCount);
printf("%7.2f ms 2) CPU->GPU copy time (%.2lf MB, %.2lf MB/s)\n",
report.s2_copy * 1000.0,
report.copyToGpu_size / megabyte,
report.copyToGpu_size == 0 ? 0 : (report.copyToGpu_size / report.s2_copy / megabyte));
printf("%7.2f ms 3) Tier-1 time\n", report.s3_tier1 * 1000.0);
printf("%7.2f ms 4) DWT time\n", report.s6_dwt * 1000.0);
printf("%7.2f ms 5) Postprocessing time (MCT, DC-shift)\n", report.s7_postprocessing * 1000.0);
printf(" Output size = ");
if (report.outStreamSize < 1024)
printf("%lld bytes", report.outStreamSize);
else
printf("%.0f KB", report.outStreamSize / 1024.0f);
printf(" (%.1f:1)\n", report.outStreamSize == 0 ? 0 : (float)report.outStreamSize / report.inStreamSize);
}
printf("Total decode time for %d images = %.1f ms; %.1f FPS;\n", 1,
total_time * 1000.0, 1 / total_time);
fastGpuTimerDestroy(device_to_host_timer);
/* Close */
r = fastDecoderJ2kDestroy(decoder);
if (r != FAST_OK) {
throw FastvideoError ("J2kDestroy");
}
r = fastExportToHostDestroy(adapter);
if (r != FAST_OK) {
throw FastvideoError ("ExportToHostDestroy");
}
fastFree(decoded);
}
|