2 * Copyright (c) 2010 The WebM project authors. All Rights Reserved.
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
17 #include "./tools_common.h"
19 #if CONFIG_VP8_ENCODER || CONFIG_VP9_ENCODER
20 #include "vpx/vp8cx.h"
23 #if CONFIG_VP8_DECODER || CONFIG_VP9_DECODER
24 #include "vpx/vp8dx.h"
27 #if defined(_WIN32) || defined(__OS2__)
32 #define _setmode setmode
33 #define _fileno fileno
34 #define _O_BINARY O_BINARY
38 #define LOG_ERROR(label) do {\
39 const char *l = label;\
43 fprintf(stderr, "%s: ", l);\
44 vfprintf(stderr, fmt, ap);\
45 fprintf(stderr, "\n");\
50 FILE *set_binary_mode(FILE *stream
) {
52 #if defined(_WIN32) || defined(__OS2__)
53 _setmode(_fileno(stream
), _O_BINARY
);
58 void die(const char *fmt
, ...) {
63 void fatal(const char *fmt
, ...) {
68 void warn(const char *fmt
, ...) {
72 void die_codec(vpx_codec_ctx_t
*ctx
, const char *s
) {
73 const char *detail
= vpx_codec_error_detail(ctx
);
75 printf("%s: %s\n", s
, vpx_codec_error(ctx
));
77 printf(" %s\n", detail
);
81 int read_yuv_frame(struct VpxInputContext
*input_ctx
, vpx_image_t
*yuv_frame
) {
82 FILE *f
= input_ctx
->file
;
83 struct FileTypeDetectionBuffer
*detect
= &input_ctx
->detect
;
86 const int bytespp
= (yuv_frame
->fmt
& VPX_IMG_FMT_HIGHBITDEPTH
) ? 2 : 1;
88 for (plane
= 0; plane
< 3; ++plane
) {
90 const int w
= vpx_img_plane_width(yuv_frame
, plane
);
91 const int h
= vpx_img_plane_height(yuv_frame
, plane
);
94 /* Determine the correct plane based on the image format. The for-loop
95 * always counts in Y,U,V order, but this may not match the order of
100 ptr
= yuv_frame
->planes
[
101 yuv_frame
->fmt
== VPX_IMG_FMT_YV12
? VPX_PLANE_V
: VPX_PLANE_U
];
104 ptr
= yuv_frame
->planes
[
105 yuv_frame
->fmt
== VPX_IMG_FMT_YV12
? VPX_PLANE_U
: VPX_PLANE_V
];
108 ptr
= yuv_frame
->planes
[plane
];
111 for (r
= 0; r
< h
; ++r
) {
112 size_t needed
= w
* bytespp
;
113 size_t buf_position
= 0;
114 const size_t left
= detect
->buf_read
- detect
->position
;
116 const size_t more
= (left
< needed
) ? left
: needed
;
117 memcpy(ptr
, detect
->buf
+ detect
->position
, more
);
120 detect
->position
+= more
;
123 shortread
|= (fread(ptr
+ buf_position
, 1, needed
, f
) < needed
);
126 ptr
+= yuv_frame
->stride
[plane
];
133 static const VpxInterface vpx_encoders
[] = {
134 #if CONFIG_VP8_ENCODER
135 {"vp8", VP8_FOURCC
, &vpx_codec_vp8_cx
},
138 #if CONFIG_VP9_ENCODER
139 {"vp9", VP9_FOURCC
, &vpx_codec_vp9_cx
},
143 int get_vpx_encoder_count() {
144 return sizeof(vpx_encoders
) / sizeof(vpx_encoders
[0]);
147 const VpxInterface
*get_vpx_encoder_by_index(int i
) {
148 return &vpx_encoders
[i
];
151 const VpxInterface
*get_vpx_encoder_by_name(const char *name
) {
154 for (i
= 0; i
< get_vpx_encoder_count(); ++i
) {
155 const VpxInterface
*encoder
= get_vpx_encoder_by_index(i
);
156 if (strcmp(encoder
->name
, name
) == 0)
163 static const VpxInterface vpx_decoders
[] = {
164 #if CONFIG_VP8_DECODER
165 {"vp8", VP8_FOURCC
, &vpx_codec_vp8_dx
},
168 #if CONFIG_VP9_DECODER
169 {"vp9", VP9_FOURCC
, &vpx_codec_vp9_dx
},
173 int get_vpx_decoder_count() {
174 return sizeof(vpx_decoders
) / sizeof(vpx_decoders
[0]);
177 const VpxInterface
*get_vpx_decoder_by_index(int i
) {
178 return &vpx_decoders
[i
];
181 const VpxInterface
*get_vpx_decoder_by_name(const char *name
) {
184 for (i
= 0; i
< get_vpx_decoder_count(); ++i
) {
185 const VpxInterface
*const decoder
= get_vpx_decoder_by_index(i
);
186 if (strcmp(decoder
->name
, name
) == 0)
193 const VpxInterface
*get_vpx_decoder_by_fourcc(uint32_t fourcc
) {
196 for (i
= 0; i
< get_vpx_decoder_count(); ++i
) {
197 const VpxInterface
*const decoder
= get_vpx_decoder_by_index(i
);
198 if (decoder
->fourcc
== fourcc
)
205 // TODO(dkovalev): move this function to vpx_image.{c, h}, so it will be part
206 // of vpx_image_t support
207 int vpx_img_plane_width(const vpx_image_t
*img
, int plane
) {
208 if (plane
> 0 && img
->x_chroma_shift
> 0)
209 return (img
->d_w
+ 1) >> img
->x_chroma_shift
;
214 int vpx_img_plane_height(const vpx_image_t
*img
, int plane
) {
215 if (plane
> 0 && img
->y_chroma_shift
> 0)
216 return (img
->d_h
+ 1) >> img
->y_chroma_shift
;
221 void vpx_img_write(const vpx_image_t
*img
, FILE *file
) {
224 for (plane
= 0; plane
< 3; ++plane
) {
225 const unsigned char *buf
= img
->planes
[plane
];
226 const int stride
= img
->stride
[plane
];
227 const int w
= vpx_img_plane_width(img
, plane
) *
228 ((img
->fmt
& VPX_IMG_FMT_HIGHBITDEPTH
) ? 2 : 1);
229 const int h
= vpx_img_plane_height(img
, plane
);
232 for (y
= 0; y
< h
; ++y
) {
233 fwrite(buf
, 1, w
, file
);
239 int vpx_img_read(vpx_image_t
*img
, FILE *file
) {
242 for (plane
= 0; plane
< 3; ++plane
) {
243 unsigned char *buf
= img
->planes
[plane
];
244 const int stride
= img
->stride
[plane
];
245 const int w
= vpx_img_plane_width(img
, plane
) *
246 ((img
->fmt
& VPX_IMG_FMT_HIGHBITDEPTH
) ? 2 : 1);
247 const int h
= vpx_img_plane_height(img
, plane
);
250 for (y
= 0; y
< h
; ++y
) {
251 if (fread(buf
, 1, w
, file
) != (size_t)w
)
260 // TODO(dkovalev) change sse_to_psnr signature: double -> int64_t
261 double sse_to_psnr(double samples
, double peak
, double sse
) {
262 static const double kMaxPSNR
= 100.0;
265 const double psnr
= 10.0 * log10(samples
* peak
* peak
/ sse
);
266 return psnr
> kMaxPSNR
? kMaxPSNR
: psnr
;
272 // TODO(debargha): Consolidate the functions below into a separate file.
273 #if CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH
274 static void highbd_img_upshift(vpx_image_t
*dst
, vpx_image_t
*src
,
276 // Note the offset is 1 less than half.
277 const int offset
= input_shift
> 0 ? (1 << (input_shift
- 1)) - 1 : 0;
279 if (dst
->d_w
!= src
->d_w
|| dst
->d_h
!= src
->d_h
||
280 dst
->x_chroma_shift
!= src
->x_chroma_shift
||
281 dst
->y_chroma_shift
!= src
->y_chroma_shift
||
282 dst
->fmt
!= src
->fmt
|| input_shift
< 0) {
283 fatal("Unsupported image conversion");
286 case VPX_IMG_FMT_I42016
:
287 case VPX_IMG_FMT_I42216
:
288 case VPX_IMG_FMT_I44416
:
289 case VPX_IMG_FMT_I44016
:
292 fatal("Unsupported image conversion");
295 for (plane
= 0; plane
< 3; plane
++) {
300 w
= (w
+ src
->x_chroma_shift
) >> src
->x_chroma_shift
;
301 h
= (h
+ src
->y_chroma_shift
) >> src
->y_chroma_shift
;
303 for (y
= 0; y
< h
; y
++) {
305 (uint16_t *)(src
->planes
[plane
] + y
* src
->stride
[plane
]);
307 (uint16_t *)(dst
->planes
[plane
] + y
* dst
->stride
[plane
]);
308 for (x
= 0; x
< w
; x
++)
309 *p_dst
++ = (*p_src
++ << input_shift
) + offset
;
314 static void lowbd_img_upshift(vpx_image_t
*dst
, vpx_image_t
*src
,
316 // Note the offset is 1 less than half.
317 const int offset
= input_shift
> 0 ? (1 << (input_shift
- 1)) - 1 : 0;
319 if (dst
->d_w
!= src
->d_w
|| dst
->d_h
!= src
->d_h
||
320 dst
->x_chroma_shift
!= src
->x_chroma_shift
||
321 dst
->y_chroma_shift
!= src
->y_chroma_shift
||
322 dst
->fmt
!= src
->fmt
+ VPX_IMG_FMT_HIGHBITDEPTH
||
324 fatal("Unsupported image conversion");
327 case VPX_IMG_FMT_I420
:
328 case VPX_IMG_FMT_I422
:
329 case VPX_IMG_FMT_I444
:
330 case VPX_IMG_FMT_I440
:
333 fatal("Unsupported image conversion");
336 for (plane
= 0; plane
< 3; plane
++) {
341 w
= (w
+ src
->x_chroma_shift
) >> src
->x_chroma_shift
;
342 h
= (h
+ src
->y_chroma_shift
) >> src
->y_chroma_shift
;
344 for (y
= 0; y
< h
; y
++) {
345 uint8_t *p_src
= src
->planes
[plane
] + y
* src
->stride
[plane
];
347 (uint16_t *)(dst
->planes
[plane
] + y
* dst
->stride
[plane
]);
348 for (x
= 0; x
< w
; x
++) {
349 *p_dst
++ = (*p_src
++ << input_shift
) + offset
;
355 void vpx_img_upshift(vpx_image_t
*dst
, vpx_image_t
*src
,
357 if (src
->fmt
& VPX_IMG_FMT_HIGHBITDEPTH
) {
358 highbd_img_upshift(dst
, src
, input_shift
);
360 lowbd_img_upshift(dst
, src
, input_shift
);
364 void vpx_img_truncate_16_to_8(vpx_image_t
*dst
, vpx_image_t
*src
) {
366 if (dst
->fmt
+ VPX_IMG_FMT_HIGHBITDEPTH
!= src
->fmt
||
367 dst
->d_w
!= src
->d_w
|| dst
->d_h
!= src
->d_h
||
368 dst
->x_chroma_shift
!= src
->x_chroma_shift
||
369 dst
->y_chroma_shift
!= src
->y_chroma_shift
) {
370 fatal("Unsupported image conversion");
373 case VPX_IMG_FMT_I420
:
374 case VPX_IMG_FMT_I422
:
375 case VPX_IMG_FMT_I444
:
376 case VPX_IMG_FMT_I440
:
379 fatal("Unsupported image conversion");
382 for (plane
= 0; plane
< 3; plane
++) {
387 w
= (w
+ src
->x_chroma_shift
) >> src
->x_chroma_shift
;
388 h
= (h
+ src
->y_chroma_shift
) >> src
->y_chroma_shift
;
390 for (y
= 0; y
< h
; y
++) {
392 (uint16_t *)(src
->planes
[plane
] + y
* src
->stride
[plane
]);
393 uint8_t *p_dst
= dst
->planes
[plane
] + y
* dst
->stride
[plane
];
394 for (x
= 0; x
< w
; x
++) {
401 static void highbd_img_downshift(vpx_image_t
*dst
, vpx_image_t
*src
,
404 if (dst
->d_w
!= src
->d_w
|| dst
->d_h
!= src
->d_h
||
405 dst
->x_chroma_shift
!= src
->x_chroma_shift
||
406 dst
->y_chroma_shift
!= src
->y_chroma_shift
||
407 dst
->fmt
!= src
->fmt
|| down_shift
< 0) {
408 fatal("Unsupported image conversion");
411 case VPX_IMG_FMT_I42016
:
412 case VPX_IMG_FMT_I42216
:
413 case VPX_IMG_FMT_I44416
:
414 case VPX_IMG_FMT_I44016
:
417 fatal("Unsupported image conversion");
420 for (plane
= 0; plane
< 3; plane
++) {
425 w
= (w
+ src
->x_chroma_shift
) >> src
->x_chroma_shift
;
426 h
= (h
+ src
->y_chroma_shift
) >> src
->y_chroma_shift
;
428 for (y
= 0; y
< h
; y
++) {
430 (uint16_t *)(src
->planes
[plane
] + y
* src
->stride
[plane
]);
432 (uint16_t *)(dst
->planes
[plane
] + y
* dst
->stride
[plane
]);
433 for (x
= 0; x
< w
; x
++)
434 *p_dst
++ = *p_src
++ >> down_shift
;
439 static void lowbd_img_downshift(vpx_image_t
*dst
, vpx_image_t
*src
,
442 if (dst
->d_w
!= src
->d_w
|| dst
->d_h
!= src
->d_h
||
443 dst
->x_chroma_shift
!= src
->x_chroma_shift
||
444 dst
->y_chroma_shift
!= src
->y_chroma_shift
||
445 src
->fmt
!= dst
->fmt
+ VPX_IMG_FMT_HIGHBITDEPTH
||
447 fatal("Unsupported image conversion");
450 case VPX_IMG_FMT_I420
:
451 case VPX_IMG_FMT_I422
:
452 case VPX_IMG_FMT_I444
:
453 case VPX_IMG_FMT_I440
:
456 fatal("Unsupported image conversion");
459 for (plane
= 0; plane
< 3; plane
++) {
464 w
= (w
+ src
->x_chroma_shift
) >> src
->x_chroma_shift
;
465 h
= (h
+ src
->y_chroma_shift
) >> src
->y_chroma_shift
;
467 for (y
= 0; y
< h
; y
++) {
469 (uint16_t *)(src
->planes
[plane
] + y
* src
->stride
[plane
]);
470 uint8_t *p_dst
= dst
->planes
[plane
] + y
* dst
->stride
[plane
];
471 for (x
= 0; x
< w
; x
++) {
472 *p_dst
++ = *p_src
++ >> down_shift
;
478 void vpx_img_downshift(vpx_image_t
*dst
, vpx_image_t
*src
,
480 if (dst
->fmt
& VPX_IMG_FMT_HIGHBITDEPTH
) {
481 highbd_img_downshift(dst
, src
, down_shift
);
483 lowbd_img_downshift(dst
, src
, down_shift
);
486 #endif // CONFIG_VP9 && CONFIG_VP9_HIGHBITDEPTH