Merge master.
[dcpomatic.git] / src / lib / image.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file src/image.cc
21  *  @brief A set of classes to describe video images.
22  */
23
24 #include <sstream>
25 #include <iomanip>
26 #include <iostream>
27 #include <sys/time.h>
28 #include <boost/algorithm/string.hpp>
29 #include <boost/bind.hpp>
30 #include <openjpeg.h>
31 extern "C" {
32 #include <libavcodec/avcodec.h>
33 #include <libavformat/avformat.h>
34 #include <libswscale/swscale.h>
35 #include <libavfilter/avfiltergraph.h>
36 #include <libpostproc/postprocess.h>
37 #include <libavutil/pixfmt.h>
38 #include <libavutil/pixdesc.h>
39 }
40 #include "image.h"
41 #include "exceptions.h"
42 #include "scaler.h"
43
44 #include "i18n.h"
45
46 using namespace std;
47 using namespace boost;
48 using libdcp::Size;
49
50 void
51 Image::swap (Image& other)
52 {
53         std::swap (_pixel_format, other._pixel_format);
54 }
55
56 /** @param n Component index.
57  *  @return Number of lines in the image for the given component.
58  */
59 int
60 Image::lines (int n) const
61 {
62         if (n == 0) {
63                 return size().height;
64         }
65         
66         AVPixFmtDescriptor const * d = av_pix_fmt_desc_get(_pixel_format);
67         if (!d) {
68                 throw PixelFormatError (N_("lines()"), _pixel_format);
69         }
70         
71         return size().height / pow(2.0f, d->log2_chroma_h);
72 }
73
74 /** @return Number of components */
75 int
76 Image::components () const
77 {
78         AVPixFmtDescriptor const * d = av_pix_fmt_desc_get(_pixel_format);
79         if (!d) {
80                 throw PixelFormatError (N_("components()"), _pixel_format);
81         }
82
83         if ((d->flags & PIX_FMT_PLANAR) == 0) {
84                 return 1;
85         }
86         
87         return d->nb_components;
88 }
89
90 shared_ptr<Image>
91 Image::scale (libdcp::Size out_size, Scaler const * scaler, bool result_aligned) const
92 {
93         assert (scaler);
94         /* Empirical testing suggests that sws_scale() will crash if
95            the input image is not aligned.
96         */
97         assert (aligned ());
98
99         shared_ptr<Image> scaled (new SimpleImage (pixel_format(), out_size, result_aligned));
100
101         struct SwsContext* scale_context = sws_getContext (
102                 size().width, size().height, pixel_format(),
103                 out_size.width, out_size.height, pixel_format(),
104                 scaler->ffmpeg_id (), 0, 0, 0
105                 );
106
107         sws_scale (
108                 scale_context,
109                 data(), stride(),
110                 0, size().height,
111                 scaled->data(), scaled->stride()
112                 );
113
114         sws_freeContext (scale_context);
115
116         return scaled;
117 }
118
119 /** Scale this image to a given size and convert it to RGB.
120  *  @param out_size Output image size in pixels.
121  *  @param scaler Scaler to use.
122  */
123 shared_ptr<Image>
124 Image::scale_and_convert_to_rgb (libdcp::Size out_size, Scaler const * scaler, bool result_aligned) const
125 {
126         assert (scaler);
127         /* Empirical testing suggests that sws_scale() will crash if
128            the input image is not aligned.
129         */
130         assert (aligned ());
131
132         shared_ptr<Image> rgb (new SimpleImage (PIX_FMT_RGB24, out_size, result_aligned));
133
134         struct SwsContext* scale_context = sws_getContext (
135                 size().width, size().height, pixel_format(),
136                 out_size.width, out_size.height, PIX_FMT_RGB24,
137                 scaler->ffmpeg_id (), 0, 0, 0
138                 );
139
140         /* Scale and convert to RGB from whatever its currently in (which may be RGB) */
141         sws_scale (
142                 scale_context,
143                 data(), stride(),
144                 0, size().height,
145                 rgb->data(), rgb->stride()
146                 );
147
148         sws_freeContext (scale_context);
149
150         return rgb;
151 }
152
153 /** Run a FFmpeg post-process on this image and return the processed version.
154  *  @param pp Flags for the required set of post processes.
155  *  @return Post-processed image.
156  */
157 shared_ptr<Image>
158 Image::post_process (string pp, bool aligned) const
159 {
160         shared_ptr<Image> out (new SimpleImage (pixel_format(), size (), aligned));
161
162         int pp_format = 0;
163         switch (pixel_format()) {
164         case PIX_FMT_YUV420P:
165                 pp_format = PP_FORMAT_420;
166                 break;
167         case PIX_FMT_YUV422P10LE:
168         case PIX_FMT_YUV422P:
169         case PIX_FMT_UYVY422:
170                 pp_format = PP_FORMAT_422;
171                 break;
172         case PIX_FMT_YUV444P:
173         case PIX_FMT_YUV444P9BE:
174         case PIX_FMT_YUV444P9LE:
175         case PIX_FMT_YUV444P10BE:
176         case PIX_FMT_YUV444P10LE:
177                 pp_format = PP_FORMAT_444;
178         default:
179                 throw PixelFormatError (N_("post_process"), pixel_format());
180         }
181                 
182         pp_mode* mode = pp_get_mode_by_name_and_quality (pp.c_str (), PP_QUALITY_MAX);
183         pp_context* context = pp_get_context (size().width, size().height, pp_format | PP_CPU_CAPS_MMX2);
184
185         pp_postprocess (
186                 (const uint8_t **) data(), stride(),
187                 out->data(), out->stride(),
188                 size().width, size().height,
189                 0, 0, mode, context, 0
190                 );
191                 
192         pp_free_mode (mode);
193         pp_free_context (context);
194
195         return out;
196 }
197
198 shared_ptr<Image>
199 Image::crop (Crop crop, bool aligned) const
200 {
201         libdcp::Size cropped_size = size ();
202         cropped_size.width -= crop.left + crop.right;
203         cropped_size.height -= crop.top + crop.bottom;
204
205         shared_ptr<Image> out (new SimpleImage (pixel_format(), cropped_size, aligned));
206
207         for (int c = 0; c < components(); ++c) {
208                 int const crop_left_in_bytes = bytes_per_pixel(c) * crop.left;
209                 int const cropped_width_in_bytes = bytes_per_pixel(c) * cropped_size.width;
210                         
211                 /* Start of the source line, cropped from the top but not the left */
212                 uint8_t* in_p = data()[c] + crop.top * stride()[c];
213                 uint8_t* out_p = out->data()[c];
214                 
215                 for (int y = 0; y < cropped_size.height; ++y) {
216                         memcpy (out_p, in_p + crop_left_in_bytes, cropped_width_in_bytes);
217                         in_p += stride()[c];
218                         out_p += out->stride()[c];
219                 }
220         }
221
222         return out;
223 }
224
225 /** Blacken a YUV image whose bits per pixel is rounded up to 16 */
226 void
227 Image::yuv_16_black (uint16_t v)
228 {
229         memset (data()[0], 0, lines(0) * stride()[0]);
230         for (int i = 1; i < 3; ++i) {
231                 int16_t* p = reinterpret_cast<int16_t*> (data()[i]);
232                 for (int y = 0; y < size().height; ++y) {
233                         for (int x = 0; x < line_size()[i] / 2; ++x) {
234                                 p[x] = v;
235                         }
236                         p += stride()[i] / 2;
237                 }
238         }
239 }
240
241 uint16_t
242 Image::swap_16 (uint16_t v)
243 {
244         return ((v >> 8) & 0xff) | ((v & 0xff) << 8);
245 }
246
247 void
248 Image::make_black ()
249 {
250         /* U/V black value for 8-bit colour */
251         static uint8_t const eight_bit_uv = (1 << 7) - 1;
252         /* U/V black value for 9-bit colour */
253         static uint16_t const nine_bit_uv = (1 << 8) - 1;
254         /* U/V black value for 10-bit colour */
255         static uint16_t const ten_bit_uv =  (1 << 9) - 1;
256         /* U/V black value for 16-bit colour */
257         static uint16_t const sixteen_bit_uv =  (1 << 15) - 1;
258         
259         switch (_pixel_format) {
260         case PIX_FMT_YUV420P:
261         case PIX_FMT_YUV422P:
262         case PIX_FMT_YUV444P:
263                 memset (data()[0], 0, lines(0) * stride()[0]);
264                 memset (data()[1], eight_bit_uv, lines(1) * stride()[1]);
265                 memset (data()[2], eight_bit_uv, lines(2) * stride()[2]);
266                 break;
267
268         case PIX_FMT_YUV422P9LE:
269         case PIX_FMT_YUV444P9LE:
270                 yuv_16_black (nine_bit_uv);
271                 break;
272
273         case PIX_FMT_YUV422P9BE:
274         case PIX_FMT_YUV444P9BE:
275                 yuv_16_black (swap_16 (nine_bit_uv));
276                 break;
277                 
278         case PIX_FMT_YUV422P10LE:
279         case PIX_FMT_YUV444P10LE:
280                 yuv_16_black (ten_bit_uv);
281                 break;
282
283         case PIX_FMT_YUV422P16LE:
284         case PIX_FMT_YUV444P16LE:
285                 yuv_16_black (sixteen_bit_uv);
286                 break;
287                 
288         case PIX_FMT_YUV444P10BE:
289         case PIX_FMT_YUV422P10BE:
290                 yuv_16_black (swap_16 (ten_bit_uv));
291                 break;
292
293         case PIX_FMT_RGB24:             
294                 memset (data()[0], 0, lines(0) * stride()[0]);
295                 break;
296
297         case PIX_FMT_UYVY422:
298         {
299                 int const Y = lines(0);
300                 int const X = line_size()[0];
301                 uint8_t* p = data()[0];
302                 for (int y = 0; y < Y; ++y) {
303                         for (int x = 0; x < X / 4; ++x) {
304                                 *p++ = eight_bit_uv; // Cb
305                                 *p++ = 0;            // Y0
306                                 *p++ = eight_bit_uv; // Cr
307                                 *p++ = 0;            // Y1
308                         }
309                 }
310                 break;
311         }
312
313         default:
314                 throw PixelFormatError (N_("make_black()"), _pixel_format);
315         }
316 }
317
318 void
319 Image::alpha_blend (shared_ptr<const Image> other, Position position)
320 {
321         /* Only implemented for RGBA onto RGB24 so far */
322         assert (_pixel_format == PIX_FMT_RGB24 && other->pixel_format() == PIX_FMT_RGBA);
323
324         int start_tx = position.x;
325         int start_ox = 0;
326
327         if (start_tx < 0) {
328                 start_ox = -start_tx;
329                 start_tx = 0;
330         }
331
332         int start_ty = position.y;
333         int start_oy = 0;
334
335         if (start_ty < 0) {
336                 start_oy = -start_ty;
337                 start_ty = 0;
338         }
339
340         for (int ty = start_ty, oy = start_oy; ty < size().height && oy < other->size().height; ++ty, ++oy) {
341                 uint8_t* tp = data()[0] + ty * stride()[0] + position.x * 3;
342                 uint8_t* op = other->data()[0] + oy * other->stride()[0];
343                 for (int tx = start_tx, ox = start_ox; tx < size().width && ox < other->size().width; ++tx, ++ox) {
344                         float const alpha = float (op[3]) / 255;
345                         tp[0] = (tp[0] * (1 - alpha)) + op[0] * alpha;
346                         tp[1] = (tp[1] * (1 - alpha)) + op[1] * alpha;
347                         tp[2] = (tp[2] * (1 - alpha)) + op[2] * alpha;
348                         tp += 3;
349                         op += 4;
350                 }
351         }
352 }
353
354 void
355 Image::copy (shared_ptr<const Image> other, Position position)
356 {
357         /* Only implemented for RGB24 onto RGB24 so far */
358         assert (_pixel_format == PIX_FMT_RGB24 && other->pixel_format() == PIX_FMT_RGB24);
359         assert (position.x >= 0 && position.y >= 0);
360
361         int const N = min (position.x + other->size().width, size().width) - position.x;
362         for (int ty = position.y, oy = 0; ty < size().height && oy < other->size().height; ++ty, ++oy) {
363                 uint8_t * const tp = data()[0] + ty * stride()[0] + position.x * 3;
364                 uint8_t * const op = other->data()[0] + oy * other->stride()[0];
365                 memcpy (tp, op, N * 3);
366         }
367 }       
368
369 void
370 Image::read_from_socket (shared_ptr<Socket> socket)
371 {
372         for (int i = 0; i < components(); ++i) {
373                 uint8_t* p = data()[i];
374                 for (int y = 0; y < lines(i); ++y) {
375                         socket->read (p, line_size()[i]);
376                         p += stride()[i];
377                 }
378         }
379 }
380
381 void
382 Image::write_to_socket (shared_ptr<Socket> socket) const
383 {
384         for (int i = 0; i < components(); ++i) {
385                 uint8_t* p = data()[i];
386                 for (int y = 0; y < lines(i); ++y) {
387                         socket->write (p, line_size()[i]);
388                         p += stride()[i];
389                 }
390         }
391 }
392
393
394 float
395 Image::bytes_per_pixel (int c) const
396 {
397         AVPixFmtDescriptor const * d = av_pix_fmt_desc_get(_pixel_format);
398         if (!d) {
399                 throw PixelFormatError (N_("lines()"), _pixel_format);
400         }
401
402         if (c >= components()) {
403                 return 0;
404         }
405
406         float bpp[4] = { 0, 0, 0, 0 };
407
408         bpp[0] = floor ((d->comp[0].depth_minus1 + 1 + 7) / 8);
409         if (d->nb_components > 1) {
410                 bpp[1] = floor ((d->comp[1].depth_minus1 + 1 + 7) / 8) / pow (2.0f, d->log2_chroma_w);
411         }
412         if (d->nb_components > 2) {
413                 bpp[2] = floor ((d->comp[2].depth_minus1 + 1 + 7) / 8) / pow (2.0f, d->log2_chroma_w);
414         }
415         if (d->nb_components > 3) {
416                 bpp[3] = floor ((d->comp[3].depth_minus1 + 1 + 7) / 8) / pow (2.0f, d->log2_chroma_w);
417         }
418         
419         if ((d->flags & PIX_FMT_PLANAR) == 0) {
420                 /* Not planar; sum them up */
421                 return bpp[0] + bpp[1] + bpp[2] + bpp[3];
422         }
423
424         return bpp[c];
425 }
426
427 /** Construct a SimpleImage of a given size and format, allocating memory
428  *  as required.
429  *
430  *  @param p Pixel format.
431  *  @param s Size in pixels.
432  */
433 SimpleImage::SimpleImage (AVPixelFormat p, libdcp::Size s, bool aligned)
434         : Image (p)
435         , _size (s)
436         , _aligned (aligned)
437 {
438         allocate ();
439 }
440
441 void
442 SimpleImage::allocate ()
443 {
444         _data = (uint8_t **) av_malloc (4 * sizeof (uint8_t *));
445         _data[0] = _data[1] = _data[2] = _data[3] = 0;
446         
447         _line_size = (int *) av_malloc (4 * sizeof (int));
448         _line_size[0] = _line_size[1] = _line_size[2] = _line_size[3] = 0;
449         
450         _stride = (int *) av_malloc (4 * sizeof (int));
451         _stride[0] = _stride[1] = _stride[2] = _stride[3] = 0;
452
453         for (int i = 0; i < components(); ++i) {
454                 _line_size[i] = _size.width * bytes_per_pixel(i);
455                 _stride[i] = stride_round_up (i, _line_size, _aligned ? 32 : 1);
456                 _data[i] = (uint8_t *) av_malloc (_stride[i] * lines (i));
457         }
458 }
459
460 SimpleImage::SimpleImage (SimpleImage const & other)
461         : Image (other)
462         , _size (other._size)
463         , _aligned (other._aligned)
464 {
465         allocate ();
466
467         for (int i = 0; i < components(); ++i) {
468                 uint8_t* p = _data[i];
469                 uint8_t* q = other._data[i];
470                 for (int j = 0; j < lines(i); ++j) {
471                         memcpy (p, q, _line_size[i]);
472                         p += stride()[i];
473                         q += other.stride()[i];
474                 }
475         }
476 }
477
478 SimpleImage::SimpleImage (AVFrame* frame)
479         : Image (static_cast<AVPixelFormat> (frame->format))
480         , _size (frame->width, frame->height)
481         , _aligned (true)
482 {
483         allocate ();
484
485         for (int i = 0; i < components(); ++i) {
486                 uint8_t* p = _data[i];
487                 uint8_t* q = frame->data[i];
488                 for (int j = 0; j < lines(i); ++j) {
489                         memcpy (p, q, _line_size[i]);
490                         p += stride()[i];
491                         /* AVFrame's linesize is what we call `stride' */
492                         q += frame->linesize[i];
493                 }
494         }
495 }
496
497 SimpleImage::SimpleImage (shared_ptr<const Image> other)
498         : Image (*other.get())
499 {
500         _size = other->size ();
501         _aligned = true;
502
503         allocate ();
504
505         for (int i = 0; i < components(); ++i) {
506                 assert(line_size()[i] == other->line_size()[i]);
507                 uint8_t* p = _data[i];
508                 uint8_t* q = other->data()[i];
509                 for (int j = 0; j < lines(i); ++j) {
510                         memcpy (p, q, line_size()[i]);
511                         p += stride()[i];
512                         q += other->stride()[i];
513                 }
514         }
515 }
516
517 SimpleImage&
518 SimpleImage::operator= (SimpleImage const & other)
519 {
520         if (this == &other) {
521                 return *this;
522         }
523
524         SimpleImage tmp (other);
525         swap (tmp);
526         return *this;
527 }
528
529 void
530 SimpleImage::swap (SimpleImage & other)
531 {
532         Image::swap (other);
533         
534         std::swap (_size, other._size);
535
536         for (int i = 0; i < 4; ++i) {
537                 std::swap (_data[i], other._data[i]);
538                 std::swap (_line_size[i], other._line_size[i]);
539                 std::swap (_stride[i], other._stride[i]);
540         }
541
542         std::swap (_aligned, other._aligned);
543 }
544
545 /** Destroy a SimpleImage */
546 SimpleImage::~SimpleImage ()
547 {
548         for (int i = 0; i < components(); ++i) {
549                 av_free (_data[i]);
550         }
551
552         av_free (_data);
553         av_free (_line_size);
554         av_free (_stride);
555 }
556
557 uint8_t **
558 SimpleImage::data () const
559 {
560         return _data;
561 }
562
563 int *
564 SimpleImage::line_size () const
565 {
566         return _line_size;
567 }
568
569 int *
570 SimpleImage::stride () const
571 {
572         return _stride;
573 }
574
575 libdcp::Size
576 SimpleImage::size () const
577 {
578         return _size;
579 }
580
581 bool
582 SimpleImage::aligned () const
583 {
584         return _aligned;
585 }
586
587 RGBPlusAlphaImage::RGBPlusAlphaImage (shared_ptr<const Image> im)
588         : SimpleImage (im->pixel_format(), im->size(), false)
589 {
590         assert (im->pixel_format() == PIX_FMT_RGBA);
591
592         _alpha = (uint8_t *) av_malloc (im->size().width * im->size().height);
593
594         uint8_t* in = im->data()[0];
595         uint8_t* out = data()[0];
596         uint8_t* out_alpha = _alpha;
597         for (int y = 0; y < im->size().height; ++y) {
598                 uint8_t* in_r = in;
599                 for (int x = 0; x < im->size().width; ++x) {
600                         *out++ = *in_r++;
601                         *out++ = *in_r++;
602                         *out++ = *in_r++;
603                         *out_alpha++ = *in_r++;
604                 }
605
606                 in += im->stride()[0];
607         }
608 }
609
610 RGBPlusAlphaImage::~RGBPlusAlphaImage ()
611 {
612         av_free (_alpha);
613 }
614