1 #include "jpeg_frame_view.h"
7 #include <condition_variable>
13 #include <movit/resource_pool.h>
14 #include <movit/init.h>
15 #include <movit/util.h>
18 #include "post_to_main_thread.h"
20 using namespace movit;
23 string filename_for_frame(unsigned stream_idx, int64_t pts);
29 bool operator< (const JPEGID &a, const JPEGID &b) {
30 return make_pair(a.stream_idx, a.pts) < make_pair(b.stream_idx, b.pts);
34 shared_ptr<Frame> frame;
39 map<JPEGID, LRUFrame> cache; // Under cache_mu.
40 condition_variable any_pending_decodes;
41 deque<pair<JPEGID, JPEGFrameView *>> pending_decodes; // Under cache_mu.
42 atomic<size_t> event_counter{0};
43 extern QGLWidget *global_share_widget;
45 // TODO: Decode using VA-API if available.
46 shared_ptr<Frame> decode_jpeg(const string &filename)
48 shared_ptr<Frame> frame(new Frame);
50 jpeg_decompress_struct dinfo;
52 dinfo.err = jpeg_std_error(&jerr);
53 jpeg_create_decompress(&dinfo);
55 FILE *fp = fopen(filename.c_str(), "rb");
57 perror(filename.c_str());
60 jpeg_stdio_src(&dinfo, fp);
62 jpeg_read_header(&dinfo, true);
64 if (dinfo.num_components != 3) {
65 fprintf(stderr, "Not a color JPEG. (%d components, Y=%dx%d, Cb=%dx%d, Cr=%dx%d)\n",
67 dinfo.comp_info[0].h_samp_factor, dinfo.comp_info[0].v_samp_factor,
68 dinfo.comp_info[1].h_samp_factor, dinfo.comp_info[1].v_samp_factor,
69 dinfo.comp_info[2].h_samp_factor, dinfo.comp_info[2].v_samp_factor);
72 if (dinfo.comp_info[0].h_samp_factor != dinfo.max_h_samp_factor ||
73 dinfo.comp_info[0].v_samp_factor != dinfo.max_v_samp_factor || // Y' must not be subsampled.
74 dinfo.comp_info[1].h_samp_factor != dinfo.comp_info[2].h_samp_factor ||
75 dinfo.comp_info[1].v_samp_factor != dinfo.comp_info[2].v_samp_factor || // Cb and Cr must be identically subsampled.
76 (dinfo.max_h_samp_factor % dinfo.comp_info[1].h_samp_factor) != 0 ||
77 (dinfo.max_v_samp_factor % dinfo.comp_info[1].v_samp_factor) != 0) { // No 2:3 subsampling or other weirdness.
78 fprintf(stderr, "Unsupported subsampling scheme. (Y=%dx%d, Cb=%dx%d, Cr=%dx%d)\n",
79 dinfo.comp_info[0].h_samp_factor, dinfo.comp_info[0].v_samp_factor,
80 dinfo.comp_info[1].h_samp_factor, dinfo.comp_info[1].v_samp_factor,
81 dinfo.comp_info[2].h_samp_factor, dinfo.comp_info[2].v_samp_factor);
84 dinfo.raw_data_out = true;
86 jpeg_start_decompress(&dinfo);
88 frame->width = dinfo.output_width;
89 frame->height = dinfo.output_height;
90 frame->chroma_subsampling_x = dinfo.max_h_samp_factor / dinfo.comp_info[1].h_samp_factor;
91 frame->chroma_subsampling_y = dinfo.max_v_samp_factor / dinfo.comp_info[1].v_samp_factor;
93 unsigned h_mcu_size = DCTSIZE * dinfo.max_h_samp_factor;
94 unsigned v_mcu_size = DCTSIZE * dinfo.max_v_samp_factor;
95 unsigned mcu_width_blocks = (dinfo.output_width + h_mcu_size - 1) / h_mcu_size;
96 unsigned mcu_height_blocks = (dinfo.output_height + v_mcu_size - 1) / v_mcu_size;
98 unsigned luma_width_blocks = mcu_width_blocks * dinfo.comp_info[0].h_samp_factor;
99 unsigned chroma_width_blocks = mcu_width_blocks * dinfo.comp_info[1].h_samp_factor;
100 unsigned luma_height_blocks = mcu_height_blocks * dinfo.comp_info[0].v_samp_factor;
101 unsigned chroma_height_blocks = mcu_height_blocks * dinfo.comp_info[1].v_samp_factor;
103 // TODO: Decode into a PBO.
104 frame->y.reset(new uint8_t[luma_width_blocks * luma_height_blocks * DCTSIZE2]);
105 frame->cb.reset(new uint8_t[chroma_width_blocks * chroma_height_blocks * DCTSIZE2]);
106 frame->cr.reset(new uint8_t[chroma_width_blocks * chroma_height_blocks * DCTSIZE2]);
107 frame->pitch_y = luma_width_blocks * DCTSIZE;
108 frame->pitch_chroma = chroma_width_blocks * DCTSIZE;
110 JSAMPROW yptr[v_mcu_size], cbptr[v_mcu_size], crptr[v_mcu_size];
111 JSAMPARRAY data[3] = { yptr, cbptr, crptr };
112 for (unsigned y = 0; y < mcu_height_blocks; ++y) {
113 // NOTE: The last elements of cbptr/crptr will be unused for vertically subsampled chroma.
114 for (unsigned yy = 0; yy < v_mcu_size; ++yy) {
115 yptr[yy] = frame->y.get() + (y * DCTSIZE * dinfo.max_v_samp_factor + yy) * frame->pitch_y;
116 cbptr[yy] = frame->cb.get() + (y * DCTSIZE * dinfo.comp_info[1].v_samp_factor + yy) * frame->pitch_chroma;
117 crptr[yy] = frame->cr.get() + (y * DCTSIZE * dinfo.comp_info[1].v_samp_factor + yy) * frame->pitch_chroma;
120 jpeg_read_raw_data(&dinfo, data, v_mcu_size);
123 (void) jpeg_finish_decompress(&dinfo);
124 jpeg_destroy_decompress(&dinfo);
132 // Assumes cache_mu is held.
133 vector<size_t> lru_timestamps;
134 for (const auto &key_and_value : cache) {
135 lru_timestamps.push_back(key_and_value.second.last_used);
138 size_t cutoff_point = CACHE_SIZE / 10; // Prune away the 10% oldest ones.
139 nth_element(lru_timestamps.begin(), lru_timestamps.begin() + cutoff_point, lru_timestamps.end());
140 size_t must_be_used_after = lru_timestamps[cutoff_point];
141 for (auto it = cache.begin(); it != cache.end(); ) {
142 if (it->second.last_used < must_be_used_after) {
143 it = cache.erase(it);
150 void jpeg_decoder_thread()
152 size_t num_decoded = 0, num_dropped = 0;
154 pthread_setname_np(pthread_self(), "JPEGDecoder");
158 shared_ptr<Frame> frame;
160 unique_lock<mutex> lock(cache_mu);
161 any_pending_decodes.wait(lock, [] {
162 return !pending_decodes.empty();
164 id = pending_decodes.front().first;
165 dest = pending_decodes.front().second;
166 pending_decodes.pop_front();
168 auto it = cache.find(id);
169 if (it != cache.end()) {
170 frame = it->second.frame;
171 it->second.last_used = event_counter++;
175 if (frame == nullptr) {
176 // Not found in the cache, so we need to do a decode or drop the request.
177 // Prune the queue if there are too many pending for this destination.
178 // TODO: Could we get starvation here?
179 size_t num_pending = 0;
180 for (const pair<JPEGID, JPEGFrameView *> &decode : pending_decodes) {
181 if (decode.second == dest) {
185 if (num_pending > 3) {
190 frame = decode_jpeg(filename_for_frame(id.stream_idx, id.pts));
192 unique_lock<mutex> lock(cache_mu);
193 cache[id] = LRUFrame{ frame, event_counter++ };
195 if (cache.size() > CACHE_SIZE) {
199 if (num_decoded % 1000 == 0) {
200 fprintf(stderr, "Decoded %zu images, dropped %zu (%.2f%% dropped)\n",
201 num_decoded, num_dropped, (100.0 * num_dropped) / (num_decoded + num_dropped));
205 dest->setDecodedFrame(frame);
209 JPEGFrameView::JPEGFrameView(QWidget *parent)
210 : QGLWidget(parent, global_share_widget) {
213 void JPEGFrameView::update_frame()
215 unique_lock<mutex> lock(cache_mu);
216 pending_decodes.emplace_back(JPEGID{ stream_idx, pts }, this);
217 any_pending_decodes.notify_all();
220 ResourcePool *resource_pool = nullptr;
222 void JPEGFrameView::initializeGL()
225 glDisable(GL_DEPTH_TEST);
226 glDepthMask(GL_FALSE);
229 static once_flag once;
231 CHECK(init_movit(MOVIT_SHADER_DIR, MOVIT_DEBUG_OFF));
232 resource_pool = new ResourcePool;
234 std::thread(&jpeg_decoder_thread).detach();
237 chain.reset(new EffectChain(1280, 720, resource_pool));
238 ImageFormat image_format;
239 image_format.color_space = COLORSPACE_sRGB;
240 image_format.gamma_curve = GAMMA_sRGB;
241 ycbcr_format.luma_coefficients = YCBCR_REC_709;
242 ycbcr_format.full_range = false;
243 ycbcr_format.num_levels = 256;
244 ycbcr_format.chroma_subsampling_x = 2;
245 ycbcr_format.chroma_subsampling_y = 1;
246 ycbcr_format.cb_x_position = 0.0f; // H.264 -- _not_ JPEG, even though our input is MJPEG-encoded
247 ycbcr_format.cb_y_position = 0.5f; // Irrelevant.
248 ycbcr_format.cr_x_position = 0.0f;
249 ycbcr_format.cr_y_position = 0.5f;
250 ycbcr_input = (movit::YCbCrInput *)chain->add_input(new YCbCrInput(image_format, ycbcr_format, 1280, 720));
252 ImageFormat inout_format;
253 inout_format.color_space = COLORSPACE_sRGB;
254 inout_format.gamma_curve = GAMMA_sRGB;
257 chain->add_output(inout_format, OUTPUT_ALPHA_FORMAT_POSTMULTIPLIED);
259 chain->set_dither_bits(8);
265 void JPEGFrameView::resizeGL(int width, int height)
268 glViewport(0, 0, width, height);
272 void JPEGFrameView::paintGL()
274 if (current_frame == nullptr) {
275 glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
276 glClear(GL_COLOR_BUFFER_BIT);
281 chain->render_to_screen();
284 void JPEGFrameView::setDecodedFrame(std::shared_ptr<Frame> frame)
286 post_to_main_thread([this, frame] {
287 current_frame = frame;
288 ycbcr_format.chroma_subsampling_x = frame->chroma_subsampling_x;
289 ycbcr_format.chroma_subsampling_y = frame->chroma_subsampling_y;
290 ycbcr_input->change_ycbcr_format(ycbcr_format);
291 ycbcr_input->set_width(frame->width);
292 ycbcr_input->set_height(frame->height);
293 ycbcr_input->set_pixel_data(0, frame->y.get());
294 ycbcr_input->set_pixel_data(1, frame->cb.get());
295 ycbcr_input->set_pixel_data(2, frame->cr.get());
296 ycbcr_input->set_pitch(0, frame->pitch_y);
297 ycbcr_input->set_pitch(1, frame->pitch_chroma);
298 ycbcr_input->set_pitch(2, frame->pitch_chroma);