2014-01-24 10:37:15 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC encoder.
|
2014-02-21 13:00:20 +00:00
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* Copyright (C) 2013-2015 Tampere University of Technology and others (see
|
2014-01-24 10:37:15 +00:00
|
|
|
* COPYING file).
|
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* Kvazaar is free software: you can redistribute it and/or modify it under
|
|
|
|
* the terms of the GNU Lesser General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2.1 of the License, or (at your
|
|
|
|
* option) any later version.
|
2014-01-24 10:37:15 +00:00
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* Kvazaar 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 Lesser General Public License for
|
|
|
|
* more details.
|
2014-01-24 10:37:15 +00:00
|
|
|
*
|
2015-02-23 11:18:48 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
|
2014-01-24 10:37:15 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* \file
|
2013-09-18 14:29:30 +00:00
|
|
|
*
|
2012-05-30 12:10:23 +00:00
|
|
|
*/
|
|
|
|
|
2014-01-31 12:32:41 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
/* The following two defines must be located before the inclusion of any system header files. */
|
|
|
|
#define WINVER 0x0500
|
|
|
|
#define _WIN32_WINNT 0x0500
|
2017-12-05 16:26:12 +00:00
|
|
|
|
|
|
|
#include "global.h" // IWYU pragma: keep
|
|
|
|
|
2014-01-31 12:32:41 +00:00
|
|
|
#include <fcntl.h> /* _O_BINARY */
|
2016-04-01 14:14:23 +00:00
|
|
|
#include <io.h> /* _setmode() */
|
2014-01-31 12:32:41 +00:00
|
|
|
#endif
|
|
|
|
|
2015-11-09 11:07:52 +00:00
|
|
|
#include <math.h>
|
2016-04-01 14:14:23 +00:00
|
|
|
#include <pthread.h>
|
2013-09-19 09:48:25 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2016-04-02 16:05:16 +00:00
|
|
|
#include <time.h> // IWYU pragma: keep for CLOCKS_PER_SEC
|
2013-09-23 13:48:34 +00:00
|
|
|
|
2014-06-11 05:48:36 +00:00
|
|
|
#include "checkpoint.h"
|
2015-05-13 09:45:11 +00:00
|
|
|
#include "cli.h"
|
2016-04-01 14:14:23 +00:00
|
|
|
#include "encoder.h"
|
|
|
|
#include "kvazaar.h"
|
|
|
|
#include "kvazaar_internal.h"
|
|
|
|
#include "threads.h"
|
2015-06-17 12:24:07 +00:00
|
|
|
#include "yuv_io.h"
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2015-06-08 12:14:23 +00:00
|
|
|
/**
|
|
|
|
* \brief Open a file for reading.
|
|
|
|
*
|
|
|
|
* If the file is "-", stdin is used.
|
|
|
|
*
|
|
|
|
* \param filename name of the file to open or "-"
|
|
|
|
* \return the opened file or NULL if opening fails
|
|
|
|
*/
|
|
|
|
static FILE* open_input_file(const char* filename)
|
|
|
|
{
|
|
|
|
if (!strcmp(filename, "-")) return stdin;
|
|
|
|
return fopen(filename, "rb");
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Open a file for writing.
|
|
|
|
*
|
|
|
|
* If the file is "-", stdout is used.
|
|
|
|
*
|
|
|
|
* \param filename name of the file to open or "-"
|
|
|
|
* \return the opened file or NULL if opening fails
|
|
|
|
*/
|
|
|
|
static FILE* open_output_file(const char* filename)
|
|
|
|
{
|
|
|
|
if (!strcmp(filename, "-")) return stdout;
|
|
|
|
return fopen(filename, "wb");
|
|
|
|
}
|
2015-05-14 15:33:57 +00:00
|
|
|
|
2015-11-09 11:51:30 +00:00
|
|
|
static unsigned get_padding(unsigned width_or_height){
|
|
|
|
if (width_or_height % CU_MIN_SIZE_PIXELS){
|
|
|
|
return CU_MIN_SIZE_PIXELS - (width_or_height % CU_MIN_SIZE_PIXELS);
|
|
|
|
}else{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-26 13:44:33 +00:00
|
|
|
/**
|
|
|
|
* \brief Value that is printed instead of PSNR when SSE is zero.
|
|
|
|
*/
|
|
|
|
static const double MAX_PSNR = 999.99;
|
|
|
|
static const double MAX_SQUARED_ERROR = (double)PIXEL_MAX * (double)PIXEL_MAX;
|
2015-11-09 11:07:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Calculates image PSNR value
|
|
|
|
*
|
|
|
|
* \param src source picture
|
|
|
|
* \param rec reconstructed picture
|
|
|
|
* \prama psnr returns the PSNR
|
|
|
|
*/
|
|
|
|
static void compute_psnr(const kvz_picture *const src,
|
|
|
|
const kvz_picture *const rec,
|
2016-08-16 16:03:21 +00:00
|
|
|
double psnr[3])
|
2015-11-09 11:07:52 +00:00
|
|
|
{
|
|
|
|
assert(src->width == rec->width);
|
|
|
|
assert(src->height == rec->height);
|
|
|
|
|
|
|
|
int32_t pixels = src->width * src->height;
|
2016-08-16 16:03:21 +00:00
|
|
|
int colors = rec->chroma_format == KVZ_CSP_400 ? 1 : 3;
|
2017-04-26 13:44:33 +00:00
|
|
|
double sse[3] = { 0.0 };
|
2015-11-09 11:07:52 +00:00
|
|
|
|
2016-08-16 16:03:21 +00:00
|
|
|
for (int32_t c = 0; c < colors; ++c) {
|
2015-11-09 11:07:52 +00:00
|
|
|
int32_t num_pixels = pixels;
|
|
|
|
if (c != COLOR_Y) {
|
|
|
|
num_pixels >>= 2;
|
|
|
|
}
|
|
|
|
for (int32_t i = 0; i < num_pixels; ++i) {
|
|
|
|
const int32_t error = src->data[c][i] - rec->data[c][i];
|
2017-04-26 13:44:33 +00:00
|
|
|
sse[c] += error * error;
|
2015-11-09 11:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Avoid division by zero
|
2017-04-26 13:44:33 +00:00
|
|
|
if (sse[c] == 0.0) {
|
|
|
|
psnr[c] = MAX_PSNR;
|
|
|
|
} else {
|
|
|
|
psnr[c] = 10.0 * log10(num_pixels * MAX_SQUARED_ERROR / sse[c]);
|
|
|
|
}
|
2015-11-09 11:07:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-20 12:05:23 +00:00
|
|
|
typedef struct {
|
2017-04-05 08:47:22 +00:00
|
|
|
// Semaphores for synchronization.
|
2017-04-12 09:55:01 +00:00
|
|
|
kvz_sem_t* available_input_slots;
|
|
|
|
kvz_sem_t* filled_input_slots;
|
2016-01-20 12:05:23 +00:00
|
|
|
|
2016-02-17 10:09:19 +00:00
|
|
|
// Parameters passed from main thread to input thread.
|
|
|
|
FILE* input;
|
|
|
|
const kvz_api *api;
|
|
|
|
const cmdline_opts_t *opts;
|
|
|
|
const encoder_control_t *encoder;
|
|
|
|
const uint8_t padding_x;
|
|
|
|
const uint8_t padding_y;
|
|
|
|
|
|
|
|
// Picture and thread status passed from input thread to main thread.
|
|
|
|
kvz_picture *img_in;
|
2016-01-20 12:05:23 +00:00
|
|
|
int retval;
|
|
|
|
} input_handler_args;
|
|
|
|
|
|
|
|
#define RETVAL_RUNNING 0
|
|
|
|
#define RETVAL_FAILURE 1
|
|
|
|
#define RETVAL_EOF 2
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Handles input reading in a thread
|
|
|
|
*
|
|
|
|
* \param in_args pointer to argument struct
|
|
|
|
*/
|
2016-01-25 12:54:25 +00:00
|
|
|
static void* input_read_thread(void* in_args)
|
|
|
|
{
|
|
|
|
|
|
|
|
// Reading a frame works as follows:
|
|
|
|
// - read full frame
|
|
|
|
// if progressive: set read frame as output
|
|
|
|
// if interlaced:
|
|
|
|
// - allocate two fields and fill them according to field order
|
|
|
|
// - deallocate the initial full frame
|
2016-01-20 12:05:23 +00:00
|
|
|
|
|
|
|
input_handler_args* args = (input_handler_args*)in_args;
|
|
|
|
kvz_picture *frame_in = NULL;
|
2016-02-17 10:09:19 +00:00
|
|
|
int retval = RETVAL_RUNNING;
|
2016-01-20 12:05:23 +00:00
|
|
|
int frames_read = 0;
|
2016-01-25 12:54:25 +00:00
|
|
|
|
2016-01-20 12:05:23 +00:00
|
|
|
for (;;) {
|
2016-01-25 12:54:25 +00:00
|
|
|
// Each iteration of this loop puts either a single frame or a field into
|
|
|
|
// args->img_in for main thread to process.
|
|
|
|
|
|
|
|
bool input_empty = !(args->opts->frames == 0 // number of frames to read is unknown
|
2016-01-25 17:05:10 +00:00
|
|
|
|| frames_read < args->opts->frames); // not all frames have been read
|
2016-01-25 12:54:25 +00:00
|
|
|
if (feof(args->input) || input_empty) {
|
2016-02-17 10:09:19 +00:00
|
|
|
retval = RETVAL_EOF;
|
|
|
|
goto done;
|
2016-01-25 12:54:25 +00:00
|
|
|
}
|
2016-01-20 12:05:23 +00:00
|
|
|
|
2016-08-16 16:03:21 +00:00
|
|
|
enum kvz_chroma_format csp = KVZ_FORMAT2CSP(args->opts->config->input_format);
|
|
|
|
frame_in = args->api->picture_alloc_csp(csp,
|
|
|
|
args->opts->config->width + args->padding_x,
|
|
|
|
args->opts->config->height + args->padding_y);
|
2016-02-17 10:09:19 +00:00
|
|
|
|
2016-01-25 17:05:10 +00:00
|
|
|
if (!frame_in) {
|
|
|
|
fprintf(stderr, "Failed to allocate image.\n");
|
2016-02-17 10:09:19 +00:00
|
|
|
retval = RETVAL_FAILURE;
|
|
|
|
goto done;
|
2016-01-25 17:05:10 +00:00
|
|
|
}
|
2016-01-20 12:05:23 +00:00
|
|
|
|
2016-10-28 16:03:03 +00:00
|
|
|
// Set PTS to make sure we pass it on correctly.
|
|
|
|
frame_in->pts = frames_read;
|
|
|
|
|
2017-02-25 14:08:00 +00:00
|
|
|
bool read_success = yuv_io_read(args->input,
|
2016-08-16 16:03:21 +00:00
|
|
|
args->opts->config->width,
|
|
|
|
args->opts->config->height,
|
2017-02-05 09:59:21 +00:00
|
|
|
args->encoder->cfg.input_bitdepth,
|
2016-08-16 16:03:21 +00:00
|
|
|
args->encoder->bitdepth,
|
2020-09-07 12:21:21 +00:00
|
|
|
frame_in, args->opts->config->file_format);
|
2016-08-16 16:03:21 +00:00
|
|
|
if (!read_success) {
|
2016-01-25 17:05:10 +00:00
|
|
|
// reading failed
|
|
|
|
if (feof(args->input)) {
|
2016-02-18 17:27:14 +00:00
|
|
|
// When looping input, re-open the file and re-read data.
|
|
|
|
if (args->opts->loop_input && args->input != stdin) {
|
|
|
|
fclose(args->input);
|
|
|
|
args->input = fopen(args->opts->input, "rb");
|
2016-08-16 16:03:21 +00:00
|
|
|
if (args->input == NULL)
|
2016-02-18 17:27:14 +00:00
|
|
|
{
|
|
|
|
fprintf(stderr, "Could not re-open input file, shutting down!\n");
|
|
|
|
retval = RETVAL_FAILURE;
|
|
|
|
goto done;
|
|
|
|
}
|
2016-08-16 16:03:21 +00:00
|
|
|
bool read_success = yuv_io_read(args->input,
|
|
|
|
args->opts->config->width,
|
|
|
|
args->opts->config->height,
|
2017-02-05 09:59:21 +00:00
|
|
|
args->encoder->cfg.input_bitdepth,
|
2016-08-16 16:03:21 +00:00
|
|
|
args->encoder->bitdepth,
|
2020-09-07 12:21:21 +00:00
|
|
|
frame_in, args->opts->config->file_format);
|
2016-08-16 16:03:21 +00:00
|
|
|
if (!read_success) {
|
|
|
|
fprintf(stderr, "Could not re-open input file, shutting down!\n");
|
|
|
|
retval = RETVAL_FAILURE;
|
|
|
|
goto done;
|
|
|
|
}
|
2016-02-18 17:27:14 +00:00
|
|
|
} else {
|
|
|
|
retval = RETVAL_EOF;
|
|
|
|
goto done;
|
|
|
|
}
|
2016-01-25 17:05:10 +00:00
|
|
|
} else {
|
|
|
|
fprintf(stderr, "Failed to read a frame %d\n", frames_read);
|
2016-02-17 10:09:19 +00:00
|
|
|
retval = RETVAL_FAILURE;
|
|
|
|
goto done;
|
2016-01-20 12:05:23 +00:00
|
|
|
}
|
2016-01-25 12:54:25 +00:00
|
|
|
}
|
2016-01-20 12:05:23 +00:00
|
|
|
|
2016-02-17 10:09:19 +00:00
|
|
|
frames_read++;
|
|
|
|
|
2017-02-05 09:59:21 +00:00
|
|
|
if (args->encoder->cfg.source_scan_type != 0) {
|
2016-01-25 17:05:10 +00:00
|
|
|
// Set source scan type for frame, so that it will be turned into fields.
|
2017-02-05 09:59:21 +00:00
|
|
|
frame_in->interlacing = args->encoder->cfg.source_scan_type;
|
2016-01-20 12:05:23 +00:00
|
|
|
}
|
2016-01-25 12:54:25 +00:00
|
|
|
|
2016-02-17 10:09:19 +00:00
|
|
|
// Wait until main thread is ready to receive the next frame.
|
2017-04-12 09:55:01 +00:00
|
|
|
kvz_sem_wait(args->available_input_slots);
|
2016-02-17 10:09:19 +00:00
|
|
|
args->img_in = frame_in;
|
|
|
|
args->retval = retval;
|
|
|
|
// Unlock main_thread_mutex to notify main thread that the new img_in
|
|
|
|
// and retval have been placed to args.
|
2017-04-12 09:55:01 +00:00
|
|
|
kvz_sem_post(args->filled_input_slots);
|
2016-02-17 10:09:19 +00:00
|
|
|
|
|
|
|
frame_in = NULL;
|
2016-01-20 12:05:23 +00:00
|
|
|
}
|
|
|
|
|
2016-02-17 10:09:19 +00:00
|
|
|
done:
|
|
|
|
// Wait until main thread is ready to receive the next frame.
|
2017-04-12 09:55:01 +00:00
|
|
|
kvz_sem_wait(args->available_input_slots);
|
2016-02-17 10:09:19 +00:00
|
|
|
args->img_in = NULL;
|
|
|
|
args->retval = retval;
|
|
|
|
// Unlock main_thread_mutex to notify main thread that the new img_in
|
|
|
|
// and retval have been placed to args.
|
2017-04-12 09:55:01 +00:00
|
|
|
kvz_sem_post(args->filled_input_slots);
|
2016-02-17 10:09:19 +00:00
|
|
|
|
|
|
|
// Do some cleaning up.
|
2016-01-22 09:23:54 +00:00
|
|
|
args->api->picture_free(frame_in);
|
2016-02-17 10:09:19 +00:00
|
|
|
|
2016-01-20 12:05:23 +00:00
|
|
|
pthread_exit(NULL);
|
2017-04-05 08:47:22 +00:00
|
|
|
return NULL;
|
2016-01-20 12:05:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-02-25 14:08:00 +00:00
|
|
|
void output_recon_pictures(const kvz_api *const api,
|
|
|
|
FILE *recout,
|
|
|
|
kvz_picture *buffer[KVZ_MAX_GOP_LENGTH],
|
|
|
|
int *buffer_size,
|
|
|
|
uint64_t *next_pts,
|
|
|
|
unsigned width,
|
|
|
|
unsigned height)
|
|
|
|
{
|
|
|
|
bool picture_written;
|
|
|
|
do {
|
|
|
|
picture_written = false;
|
|
|
|
for (int i = 0; i < *buffer_size; i++) {
|
|
|
|
|
|
|
|
kvz_picture *pic = buffer[i];
|
|
|
|
if (pic->pts == *next_pts) {
|
|
|
|
// Output the picture and remove it.
|
|
|
|
if (!yuv_io_write(recout, pic, width, height)) {
|
|
|
|
fprintf(stderr, "Failed to write reconstructed picture!\n");
|
|
|
|
}
|
|
|
|
api->picture_free(pic);
|
|
|
|
picture_written = true;
|
|
|
|
(*next_pts)++;
|
|
|
|
|
|
|
|
// Move rest of the pictures one position backward.
|
|
|
|
for (i++; i < *buffer_size; i++) {
|
|
|
|
buffer[i - 1] = buffer[i];
|
|
|
|
buffer[i] = NULL;
|
|
|
|
}
|
|
|
|
(*buffer_size)--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} while (picture_written);
|
|
|
|
}
|
|
|
|
|
2019-11-04 15:08:07 +00:00
|
|
|
static double calc_avg_qp(uint64_t qp_sum, uint32_t frames_done)
|
|
|
|
{
|
|
|
|
return (double)qp_sum / (double)frames_done;
|
|
|
|
}
|
2017-02-25 14:08:00 +00:00
|
|
|
|
2020-09-07 11:04:48 +00:00
|
|
|
/**
|
|
|
|
* \brief Reads the information in y4m header
|
|
|
|
*
|
|
|
|
* \param input Pointer to the input file
|
|
|
|
* \param config Pointer to the config struct
|
|
|
|
*/
|
|
|
|
static bool read_header(FILE* input, kvz_config* config) {
|
|
|
|
char buffer[256];
|
|
|
|
bool end_of_header = false;
|
|
|
|
|
|
|
|
while(!end_of_header) {
|
|
|
|
for (int i = 0; i < 256; i++) {
|
|
|
|
buffer[i] = getc(input);
|
|
|
|
// Start code of frame data
|
|
|
|
if (buffer[i] == 0x0A) {
|
|
|
|
for (; i > 0; i--) {
|
|
|
|
ungetc(buffer[i], input);
|
|
|
|
}
|
|
|
|
end_of_header = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Header sections are separated by space (ascii 0x20)
|
|
|
|
if (buffer[i] == 0x20) {
|
|
|
|
// Header start sequence does not hold any addition information, so it can be skipped
|
|
|
|
if ((i == 9) && strncmp(buffer, "YUV4MPEG2 ", 10) == 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
switch (buffer[0]) {
|
|
|
|
// Width
|
|
|
|
case 'W':
|
|
|
|
// Exclude starting 'W' and the space at the end with substr
|
|
|
|
config->width = atoi(&buffer[1]);
|
|
|
|
break;
|
|
|
|
// Height
|
|
|
|
case 'H':
|
|
|
|
// Exclude starting 'H' and the space at the end with substr
|
|
|
|
config->height = atoi(&buffer[1]);
|
|
|
|
break;
|
|
|
|
// Framerate (or start code of frame)
|
|
|
|
case 'F':
|
|
|
|
// The header has no ending signature other than the start code of a frame
|
|
|
|
if (i > 5 && strncmp(buffer, "FRAME", 5) == 0) {
|
|
|
|
for (; i > 0; i--) {
|
|
|
|
ungetc(buffer[i], input);
|
|
|
|
}
|
|
|
|
end_of_header = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
config->framerate_num = atoi(&buffer[1]);
|
|
|
|
for (int j = 0; j < i; j++) {
|
|
|
|
if (buffer[j] == ':') {
|
|
|
|
config->framerate_denom = atoi(&buffer[j + 1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Interlacing
|
|
|
|
case 'I':
|
|
|
|
break;
|
|
|
|
// Aspect ratio
|
|
|
|
case 'A':
|
|
|
|
break;
|
|
|
|
// Colour space
|
|
|
|
case 'C':
|
|
|
|
break;
|
|
|
|
// Comment
|
|
|
|
case 'X':
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "Unknown header argument starting with '%i'\n", buffer[0]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config->width == 0 || config->height == 0 || config->framerate_num == 0 || config->framerate_denom == 0) {
|
|
|
|
fprintf(stderr, "Failed to read necessary info from y4m headers. Width, height and frame rate must be present in the headers.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-09-19 09:48:25 +00:00
|
|
|
/**
|
|
|
|
* \brief Program main function.
|
|
|
|
* \param argc Argument count from commandline
|
|
|
|
* \param argv Argument list
|
|
|
|
* \return Program exit state
|
2012-05-30 12:10:23 +00:00
|
|
|
*/
|
2013-09-19 09:48:25 +00:00
|
|
|
int main(int argc, char *argv[])
|
2014-02-21 13:00:20 +00:00
|
|
|
{
|
2015-06-08 14:29:10 +00:00
|
|
|
int retval = EXIT_SUCCESS;
|
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
cmdline_opts_t *opts = NULL; //!< Command line options
|
2015-06-08 14:29:10 +00:00
|
|
|
kvz_encoder* enc = NULL;
|
2013-09-19 09:48:25 +00:00
|
|
|
FILE *input = NULL; //!< input file (YUV)
|
|
|
|
FILE *output = NULL; //!< output file (HEVC NAL stream)
|
2014-03-10 16:07:48 +00:00
|
|
|
FILE *recout = NULL; //!< reconstructed YUV output, --debug
|
2014-04-11 09:42:37 +00:00
|
|
|
clock_t start_time = clock();
|
2014-06-16 08:18:11 +00:00
|
|
|
clock_t encoding_start_cpu_time;
|
2015-11-13 20:46:32 +00:00
|
|
|
KVZ_CLOCK_T encoding_start_real_time;
|
2017-04-05 08:47:22 +00:00
|
|
|
|
2014-06-16 08:18:11 +00:00
|
|
|
clock_t encoding_end_cpu_time;
|
2015-11-13 20:46:32 +00:00
|
|
|
KVZ_CLOCK_T encoding_end_real_time;
|
2014-01-31 12:32:41 +00:00
|
|
|
|
2017-02-25 14:08:00 +00:00
|
|
|
// PTS of the reconstructed picture that should be output next.
|
|
|
|
// Only used with --debug.
|
|
|
|
uint64_t next_recon_pts = 0;
|
|
|
|
// Buffer for storing reconstructed pictures that are not to be output
|
|
|
|
// yet (i.e. in wrong order because GOP is used).
|
|
|
|
// Only used with --debug.
|
|
|
|
kvz_picture *recon_buffer[KVZ_MAX_GOP_LENGTH] = { NULL };
|
|
|
|
int recon_buffer_size = 0;
|
|
|
|
|
2017-04-05 08:47:22 +00:00
|
|
|
// Semaphores for synchronizing the input reader thread and the main
|
|
|
|
// thread.
|
|
|
|
//
|
|
|
|
// available_input_slots tells whether the main thread is currently using
|
|
|
|
// input_handler_args.img_in. (0 = in use, 1 = not in use)
|
|
|
|
//
|
|
|
|
// filled_input_slots tells whether there is a new input picture (or NULL
|
|
|
|
// if the input has ended) in input_handler_args.img_in placed by the
|
|
|
|
// input reader thread. (0 = no new image, 1 = one new image)
|
|
|
|
//
|
2017-04-12 09:55:01 +00:00
|
|
|
kvz_sem_t *available_input_slots = NULL;
|
|
|
|
kvz_sem_t *filled_input_slots = NULL;
|
2017-04-05 08:47:22 +00:00
|
|
|
|
2016-02-04 11:22:17 +00:00
|
|
|
#ifdef _WIN32
|
2014-02-05 17:16:44 +00:00
|
|
|
// Stderr needs to be text mode to convert \n to \r\n in Windows.
|
2016-02-04 11:22:17 +00:00
|
|
|
setmode( _fileno( stderr ), _O_TEXT );
|
|
|
|
#endif
|
2017-04-05 08:47:22 +00:00
|
|
|
|
2014-06-11 05:48:36 +00:00
|
|
|
CHECKPOINTS_INIT();
|
2014-01-31 12:32:41 +00:00
|
|
|
|
2015-06-08 14:29:10 +00:00
|
|
|
const kvz_api * const api = kvz_api_get(8);
|
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
opts = cmdline_opts_parse(api, argc, argv);
|
|
|
|
// If problem with command line options, print banner and shutdown.
|
|
|
|
if (!opts) {
|
2016-02-04 11:22:17 +00:00
|
|
|
print_usage();
|
2013-09-19 09:48:25 +00:00
|
|
|
|
2014-04-17 08:58:03 +00:00
|
|
|
goto exit_failure;
|
2013-09-19 09:48:25 +00:00
|
|
|
}
|
2016-02-04 11:22:17 +00:00
|
|
|
if (opts->version) {
|
|
|
|
print_version();
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
if (opts->help) {
|
|
|
|
print_help();
|
|
|
|
goto done;
|
|
|
|
}
|
2013-09-19 09:48:25 +00:00
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
input = open_input_file(opts->input);
|
2013-09-19 09:48:25 +00:00
|
|
|
if (input == NULL) {
|
|
|
|
fprintf(stderr, "Could not open input file, shutting down!\n");
|
2014-04-17 08:58:03 +00:00
|
|
|
goto exit_failure;
|
2013-09-19 09:48:25 +00:00
|
|
|
}
|
2014-02-21 13:00:20 +00:00
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
output = open_output_file(opts->output);
|
2015-06-08 12:14:23 +00:00
|
|
|
if (output == NULL) {
|
|
|
|
fprintf(stderr, "Could not open output file, shutting down!\n");
|
|
|
|
goto exit_failure;
|
|
|
|
}
|
|
|
|
|
2016-02-04 11:22:17 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
// Set stdin and stdout to binary for pipes.
|
|
|
|
if (input == stdin) {
|
|
|
|
_setmode(_fileno(stdin), _O_BINARY);
|
|
|
|
}
|
|
|
|
if (output == stdout) {
|
|
|
|
_setmode(_fileno(stdout), _O_BINARY);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
if (opts->debug != NULL) {
|
|
|
|
recout = open_output_file(opts->debug);
|
2015-06-08 12:14:23 +00:00
|
|
|
if (recout == NULL) {
|
2015-07-03 12:04:36 +00:00
|
|
|
fprintf(stderr, "Could not open reconstruction file (%s), shutting down!\n", opts->debug);
|
2015-05-20 14:08:35 +00:00
|
|
|
goto exit_failure;
|
|
|
|
}
|
2014-11-13 09:45:53 +00:00
|
|
|
}
|
|
|
|
|
2020-09-07 11:04:48 +00:00
|
|
|
// Parse headers if input data is in y4m container
|
|
|
|
if (opts->config->file_format == KVZ_FORMAT_Y4M) {
|
|
|
|
if (!read_header(input, opts->config)) {
|
|
|
|
goto exit_failure;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
enc = api->encoder_open(opts->config);
|
2015-05-18 08:43:10 +00:00
|
|
|
if (!enc) {
|
2015-06-08 14:29:10 +00:00
|
|
|
fprintf(stderr, "Failed to open encoder.\n");
|
2014-04-17 12:42:20 +00:00
|
|
|
goto exit_failure;
|
|
|
|
}
|
2015-05-18 08:43:10 +00:00
|
|
|
|
2017-02-05 09:59:21 +00:00
|
|
|
const encoder_control_t *encoder = enc->control;
|
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
fprintf(stderr, "Input: %s, output: %s\n", opts->input, opts->output);
|
2014-04-11 13:55:08 +00:00
|
|
|
fprintf(stderr, " Video size: %dx%d (input=%dx%d)\n",
|
2015-05-18 08:43:10 +00:00
|
|
|
encoder->in.width, encoder->in.height,
|
|
|
|
encoder->in.real_width, encoder->in.real_height);
|
2015-06-09 07:20:21 +00:00
|
|
|
|
2020-09-07 12:21:21 +00:00
|
|
|
if (opts->seek > 0 && !yuv_io_seek(input, opts->seek, opts->config->width, opts->config->height, opts->config->file_format)) {
|
2015-07-03 12:04:36 +00:00
|
|
|
fprintf(stderr, "Failed to seek %d frames.\n", opts->seek);
|
2015-06-09 07:20:21 +00:00
|
|
|
goto exit_failure;
|
|
|
|
}
|
|
|
|
|
2014-06-05 07:09:25 +00:00
|
|
|
//Now, do the real stuff
|
|
|
|
{
|
2014-06-10 08:59:31 +00:00
|
|
|
|
2015-11-13 20:46:32 +00:00
|
|
|
KVZ_GET_TIME(&encoding_start_real_time);
|
2014-06-16 08:18:11 +00:00
|
|
|
encoding_start_cpu_time = clock();
|
2014-06-05 07:09:25 +00:00
|
|
|
|
2015-01-22 10:16:46 +00:00
|
|
|
uint64_t bitstream_length = 0;
|
2015-05-14 15:33:57 +00:00
|
|
|
uint32_t frames_done = 0;
|
|
|
|
double psnr_sum[3] = { 0.0, 0.0, 0.0 };
|
2019-11-04 15:08:07 +00:00
|
|
|
uint64_t qp_sum = 0;
|
2015-01-22 10:16:46 +00:00
|
|
|
|
2017-11-28 14:19:44 +00:00
|
|
|
// how many bits have been written this second? used for checking if framerate exceeds level's limits
|
|
|
|
uint64_t bits_this_second = 0;
|
|
|
|
// the amount of frames have been encoded in this second of video. can be non-integer value if framerate is non-integer value
|
2017-12-01 15:20:12 +00:00
|
|
|
unsigned frames_this_second = 0;
|
|
|
|
const float framerate = ((float)encoder->cfg.framerate_num) / ((float)encoder->cfg.framerate_denom);
|
2017-11-28 14:19:44 +00:00
|
|
|
|
2015-11-09 11:51:30 +00:00
|
|
|
uint8_t padding_x = get_padding(opts->config->width);
|
|
|
|
uint8_t padding_y = get_padding(opts->config->height);
|
2015-08-18 16:11:08 +00:00
|
|
|
|
2016-01-20 12:05:23 +00:00
|
|
|
pthread_t input_thread;
|
|
|
|
|
2017-04-12 09:55:01 +00:00
|
|
|
available_input_slots = calloc(1, sizeof(kvz_sem_t));
|
|
|
|
filled_input_slots = calloc(1, sizeof(kvz_sem_t));
|
|
|
|
kvz_sem_init(available_input_slots, 0);
|
|
|
|
kvz_sem_init(filled_input_slots, 0);
|
2016-01-20 12:05:23 +00:00
|
|
|
|
|
|
|
// Give arguments via struct to the input thread
|
2016-02-17 10:09:19 +00:00
|
|
|
input_handler_args in_args = {
|
2017-04-05 08:47:22 +00:00
|
|
|
.available_input_slots = available_input_slots,
|
|
|
|
.filled_input_slots = filled_input_slots,
|
2016-02-17 10:09:19 +00:00
|
|
|
|
|
|
|
.input = input,
|
|
|
|
.api = api,
|
|
|
|
.opts = opts,
|
|
|
|
.encoder = encoder,
|
|
|
|
.padding_x = padding_x,
|
|
|
|
.padding_y = padding_y,
|
|
|
|
|
|
|
|
.img_in = NULL,
|
|
|
|
.retval = RETVAL_RUNNING,
|
|
|
|
};
|
2017-04-05 08:47:22 +00:00
|
|
|
in_args.available_input_slots = available_input_slots;
|
|
|
|
in_args.filled_input_slots = filled_input_slots;
|
2016-01-20 12:05:23 +00:00
|
|
|
|
|
|
|
if (pthread_create(&input_thread, NULL, input_read_thread, (void*)&in_args) != 0) {
|
|
|
|
fprintf(stderr, "pthread_create failed!\n");
|
|
|
|
assert(0);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
kvz_picture *cur_in_img;
|
2015-06-18 06:10:47 +00:00
|
|
|
for (;;) {
|
2015-08-18 16:11:08 +00:00
|
|
|
|
2016-02-17 10:09:19 +00:00
|
|
|
// Skip mutex locking if the input thread does not exist.
|
2016-01-20 12:05:23 +00:00
|
|
|
if (in_args.retval == RETVAL_RUNNING) {
|
2017-04-05 08:47:22 +00:00
|
|
|
// Increase available_input_slots so that the input thread can
|
|
|
|
// write the new img_in and retval to in_args.
|
2017-04-12 09:55:01 +00:00
|
|
|
kvz_sem_post(available_input_slots);
|
2017-04-05 08:47:22 +00:00
|
|
|
// Wait until the input thread has updated in_args and then
|
|
|
|
// decrease filled_input_slots.
|
2017-04-12 09:55:01 +00:00
|
|
|
kvz_sem_wait(filled_input_slots);
|
2016-02-17 10:09:19 +00:00
|
|
|
|
|
|
|
cur_in_img = in_args.img_in;
|
|
|
|
in_args.img_in = NULL;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
cur_in_img = NULL;
|
|
|
|
}
|
2015-08-18 16:11:08 +00:00
|
|
|
|
2016-01-20 12:05:23 +00:00
|
|
|
if (in_args.retval == EXIT_FAILURE) {
|
|
|
|
goto exit_failure;
|
2014-03-19 11:23:41 +00:00
|
|
|
}
|
2014-06-05 07:09:25 +00:00
|
|
|
|
2015-06-30 09:04:00 +00:00
|
|
|
kvz_data_chunk* chunks_out = NULL;
|
2015-07-16 07:23:15 +00:00
|
|
|
kvz_picture *img_rec = NULL;
|
2015-09-09 08:32:29 +00:00
|
|
|
kvz_picture *img_src = NULL;
|
2015-06-30 09:22:30 +00:00
|
|
|
uint32_t len_out = 0;
|
2015-09-09 07:28:45 +00:00
|
|
|
kvz_frame_info info_out;
|
2015-09-09 08:32:29 +00:00
|
|
|
if (!api->encoder_encode(enc,
|
2016-01-20 12:05:23 +00:00
|
|
|
cur_in_img,
|
2015-09-09 08:32:29 +00:00
|
|
|
&chunks_out,
|
|
|
|
&len_out,
|
|
|
|
&img_rec,
|
|
|
|
&img_src,
|
|
|
|
&info_out)) {
|
2015-06-03 17:09:36 +00:00
|
|
|
fprintf(stderr, "Failed to encode image.\n");
|
2016-01-20 12:05:23 +00:00
|
|
|
api->picture_free(cur_in_img);
|
2015-06-03 17:09:36 +00:00
|
|
|
goto exit_failure;
|
|
|
|
}
|
2015-05-18 15:21:23 +00:00
|
|
|
|
2016-01-20 12:05:23 +00:00
|
|
|
if (chunks_out == NULL && cur_in_img == NULL) {
|
2015-06-18 06:10:47 +00:00
|
|
|
// We are done since there is no more input and output left.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2015-06-30 09:22:30 +00:00
|
|
|
if (chunks_out != NULL) {
|
|
|
|
uint64_t written = 0;
|
2015-06-25 08:15:34 +00:00
|
|
|
// Write data into the output file.
|
2015-06-30 09:04:00 +00:00
|
|
|
for (kvz_data_chunk *chunk = chunks_out;
|
2015-06-25 08:15:34 +00:00
|
|
|
chunk != NULL;
|
|
|
|
chunk = chunk->next) {
|
2015-06-30 09:22:30 +00:00
|
|
|
assert(written + chunk->len <= len_out);
|
2015-06-25 08:15:34 +00:00
|
|
|
if (fwrite(chunk->data, sizeof(uint8_t), chunk->len, output) != chunk->len) {
|
|
|
|
fprintf(stderr, "Failed to write data to file.\n");
|
2016-01-20 12:05:23 +00:00
|
|
|
api->picture_free(cur_in_img);
|
2015-06-30 09:04:00 +00:00
|
|
|
api->chunk_free(chunks_out);
|
2015-06-25 08:15:34 +00:00
|
|
|
goto exit_failure;
|
|
|
|
}
|
2015-06-30 09:22:30 +00:00
|
|
|
written += chunk->len;
|
2015-06-25 08:15:34 +00:00
|
|
|
}
|
|
|
|
fflush(output);
|
|
|
|
|
2015-06-30 09:22:30 +00:00
|
|
|
bitstream_length += len_out;
|
2017-11-28 14:19:44 +00:00
|
|
|
|
|
|
|
// the level's bitrate check
|
2017-12-01 15:20:12 +00:00
|
|
|
frames_this_second += 1;
|
|
|
|
|
|
|
|
if ((float)frames_this_second >= framerate) {
|
|
|
|
// if framerate <= 1 then we go here always
|
|
|
|
|
|
|
|
// how much of the bits of the last frame belonged to the next second
|
|
|
|
uint64_t leftover_bits = (uint64_t)((double)len_out * ((double)frames_this_second - framerate));
|
|
|
|
|
|
|
|
// the latest frame is counted for the amount that it contributed to this current second
|
|
|
|
bits_this_second += len_out - leftover_bits;
|
2017-11-28 14:19:44 +00:00
|
|
|
|
|
|
|
if (bits_this_second > encoder->cfg.max_bitrate) {
|
2017-12-01 15:20:12 +00:00
|
|
|
fprintf(stderr, "Level warning: This %s's bitrate (%llu bits/s) reached the maximum bitrate (%u bits/s) of %s tier level %g.",
|
|
|
|
framerate >= 1.0f ? "second" : "frame",
|
2017-12-08 14:22:40 +00:00
|
|
|
(unsigned long long) bits_this_second,
|
2017-12-01 15:20:12 +00:00
|
|
|
encoder->cfg.max_bitrate,
|
|
|
|
encoder->cfg.high_tier ? "high" : "main",
|
|
|
|
(float)encoder->cfg.level / 10.0f );
|
2017-11-28 14:19:44 +00:00
|
|
|
}
|
2017-12-01 15:20:12 +00:00
|
|
|
|
|
|
|
if (framerate > 1.0f) {
|
|
|
|
// leftovers for the next second
|
|
|
|
bits_this_second = leftover_bits;
|
|
|
|
} else {
|
|
|
|
// one or more next seconds are from this frame and their bitrate is the same or less as this frame's
|
|
|
|
bits_this_second = 0;
|
|
|
|
}
|
|
|
|
frames_this_second = 0;
|
|
|
|
} else {
|
|
|
|
bits_this_second += len_out;
|
2017-11-28 14:19:44 +00:00
|
|
|
}
|
2015-06-30 09:22:30 +00:00
|
|
|
|
2015-06-25 08:15:34 +00:00
|
|
|
// Compute and print stats.
|
2015-07-07 07:05:42 +00:00
|
|
|
|
2015-05-18 13:56:54 +00:00
|
|
|
double frame_psnr[3] = { 0.0, 0.0, 0.0 };
|
2017-02-05 09:59:21 +00:00
|
|
|
if (encoder->cfg.calc_psnr && encoder->cfg.source_scan_type == KVZ_INTERLACING_NONE) {
|
2016-01-25 17:05:10 +00:00
|
|
|
// Do not compute PSNR for interlaced frames, because img_rec does not contain
|
|
|
|
// the deinterlaced frame yet.
|
2016-01-21 13:08:34 +00:00
|
|
|
compute_psnr(img_src, img_rec, frame_psnr);
|
|
|
|
}
|
2015-07-16 07:23:15 +00:00
|
|
|
|
|
|
|
if (recout) {
|
|
|
|
// Since chunks_out was not NULL, img_rec should have been set.
|
|
|
|
assert(img_rec);
|
2017-02-25 14:08:00 +00:00
|
|
|
|
|
|
|
// Move img_rec to the recon buffer.
|
|
|
|
assert(recon_buffer_size < KVZ_MAX_GOP_LENGTH);
|
|
|
|
recon_buffer[recon_buffer_size++] = img_rec;
|
|
|
|
img_rec = NULL;
|
|
|
|
|
|
|
|
// Try to output some reconstructed pictures.
|
|
|
|
output_recon_pictures(api,
|
|
|
|
recout,
|
|
|
|
recon_buffer,
|
|
|
|
&recon_buffer_size,
|
|
|
|
&next_recon_pts,
|
|
|
|
opts->config->width,
|
|
|
|
opts->config->height);
|
2015-07-16 07:23:15 +00:00
|
|
|
}
|
2015-06-18 06:10:47 +00:00
|
|
|
|
2019-11-04 15:08:07 +00:00
|
|
|
qp_sum += info_out.qp;
|
2015-05-18 13:56:54 +00:00
|
|
|
frames_done += 1;
|
2019-11-04 15:08:07 +00:00
|
|
|
|
2015-05-18 13:56:54 +00:00
|
|
|
psnr_sum[0] += frame_psnr[0];
|
|
|
|
psnr_sum[1] += frame_psnr[1];
|
|
|
|
psnr_sum[2] += frame_psnr[2];
|
|
|
|
|
2019-11-04 15:08:07 +00:00
|
|
|
print_frame_info(&info_out, frame_psnr, len_out, encoder->cfg.calc_psnr,
|
|
|
|
calc_avg_qp(qp_sum, frames_done));
|
2015-05-18 13:56:54 +00:00
|
|
|
}
|
2015-05-18 15:21:23 +00:00
|
|
|
|
2016-01-20 12:05:23 +00:00
|
|
|
api->picture_free(cur_in_img);
|
2015-06-30 09:04:00 +00:00
|
|
|
api->chunk_free(chunks_out);
|
2015-07-16 07:23:15 +00:00
|
|
|
api->picture_free(img_rec);
|
2015-09-09 08:32:29 +00:00
|
|
|
api->picture_free(img_src);
|
2014-06-05 07:09:25 +00:00
|
|
|
}
|
2015-06-18 06:10:47 +00:00
|
|
|
|
2015-11-13 20:46:32 +00:00
|
|
|
KVZ_GET_TIME(&encoding_end_real_time);
|
2014-06-16 08:18:11 +00:00
|
|
|
encoding_end_cpu_time = clock();
|
2014-06-05 07:09:25 +00:00
|
|
|
// Coding finished
|
2013-09-19 09:48:25 +00:00
|
|
|
|
2017-02-25 14:08:00 +00:00
|
|
|
// All reconstructed pictures should have been output.
|
|
|
|
assert(recon_buffer_size == 0);
|
|
|
|
|
2014-06-05 07:09:25 +00:00
|
|
|
// Print statistics of the coding
|
2015-07-06 10:39:47 +00:00
|
|
|
fprintf(stderr, " Processed %d frames, %10llu bits",
|
|
|
|
frames_done,
|
|
|
|
(long long unsigned int)bitstream_length * 8);
|
2017-07-19 07:38:37 +00:00
|
|
|
if (encoder->cfg.calc_psnr && frames_done > 0) {
|
2017-07-19 07:33:43 +00:00
|
|
|
fprintf(stderr, " AVG PSNR Y %2.4f U %2.4f V %2.4f",
|
2015-07-06 10:39:47 +00:00
|
|
|
psnr_sum[0] / frames_done,
|
|
|
|
psnr_sum[1] / frames_done,
|
|
|
|
psnr_sum[2] / frames_done);
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
2014-06-16 08:18:11 +00:00
|
|
|
fprintf(stderr, " Total CPU time: %.3f s.\n", ((float)(clock() - start_time)) / CLOCKS_PER_SEC);
|
2015-07-06 10:39:47 +00:00
|
|
|
|
2014-06-16 08:18:11 +00:00
|
|
|
{
|
2019-11-05 13:22:02 +00:00
|
|
|
const double mega = (double)(1 << 20);
|
|
|
|
|
2014-11-14 14:38:07 +00:00
|
|
|
double encoding_time = ( (double)(encoding_end_cpu_time - encoding_start_cpu_time) ) / (double) CLOCKS_PER_SEC;
|
2015-11-13 20:46:32 +00:00
|
|
|
double wall_time = KVZ_CLOCK_T_AS_DOUBLE(encoding_end_real_time) - KVZ_CLOCK_T_AS_DOUBLE(encoding_start_real_time);
|
2019-05-03 15:40:31 +00:00
|
|
|
|
2019-11-05 13:22:02 +00:00
|
|
|
double encoding_cpu = 100.0 * encoding_time / wall_time;
|
|
|
|
double encoding_fps = (double)frames_done / wall_time;
|
|
|
|
|
|
|
|
double n_bits = (double)(bitstream_length * 8);
|
|
|
|
double sf_num = (double)encoder->cfg.framerate_num;
|
|
|
|
double sf_den = (double)encoder->cfg.framerate_denom;
|
|
|
|
double sequence_fps = sf_num / sf_den;
|
|
|
|
|
|
|
|
double sequence_t = (double)frames_done / sequence_fps;
|
|
|
|
double bitrate_bps = (double)n_bits / sequence_t;
|
|
|
|
double bitrate_mbps = bitrate_bps / mega;
|
|
|
|
|
|
|
|
double avg_qp = calc_avg_qp(qp_sum, frames_done);
|
2019-05-03 15:40:31 +00:00
|
|
|
|
2019-05-13 13:57:38 +00:00
|
|
|
#ifdef _WIN32
|
2019-11-05 13:22:02 +00:00
|
|
|
if (encoding_cpu > 100.0) {
|
|
|
|
encoding_cpu = 100.0;
|
|
|
|
}
|
2019-05-13 13:57:38 +00:00
|
|
|
#endif
|
2019-11-05 13:22:02 +00:00
|
|
|
fprintf(stderr, " Encoding time: %.3f s.\n", encoding_time);
|
|
|
|
fprintf(stderr, " Encoding wall time: %.3f s.\n", wall_time);
|
|
|
|
|
|
|
|
fprintf(stderr, " Encoding CPU usage: %.2f%%\n", encoding_cpu);
|
|
|
|
fprintf(stderr, " FPS: %.2f\n", encoding_fps);
|
2019-05-13 13:57:38 +00:00
|
|
|
|
2019-11-05 16:06:00 +00:00
|
|
|
fprintf(stderr, " Bitrate: %.3f Mbps\n", bitrate_mbps);
|
2019-11-05 13:22:02 +00:00
|
|
|
fprintf(stderr, " AVG QP: %.1f\n", avg_qp);
|
2014-06-16 08:18:11 +00:00
|
|
|
}
|
2016-01-22 09:23:54 +00:00
|
|
|
pthread_join(input_thread, NULL);
|
2014-06-05 07:09:25 +00:00
|
|
|
}
|
2013-09-19 09:48:25 +00:00
|
|
|
|
2015-06-08 14:29:10 +00:00
|
|
|
goto done;
|
2014-04-17 12:42:20 +00:00
|
|
|
|
2015-06-08 14:29:10 +00:00
|
|
|
exit_failure:
|
|
|
|
retval = EXIT_FAILURE;
|
2013-09-19 09:48:25 +00:00
|
|
|
|
2015-06-08 14:29:10 +00:00
|
|
|
done:
|
2017-04-05 08:47:22 +00:00
|
|
|
// destroy semaphores
|
2017-04-12 09:55:01 +00:00
|
|
|
if (available_input_slots) kvz_sem_destroy(available_input_slots);
|
|
|
|
if (filled_input_slots) kvz_sem_destroy(filled_input_slots);
|
2017-04-05 08:47:22 +00:00
|
|
|
FREE_POINTER(available_input_slots);
|
|
|
|
FREE_POINTER(filled_input_slots);
|
|
|
|
|
2015-06-08 14:29:10 +00:00
|
|
|
// deallocate structures
|
|
|
|
if (enc) api->encoder_close(enc);
|
2015-07-03 12:04:36 +00:00
|
|
|
if (opts) cmdline_opts_free(api, opts);
|
2014-04-17 08:58:03 +00:00
|
|
|
|
2015-06-08 14:29:10 +00:00
|
|
|
// close files
|
|
|
|
if (input) fclose(input);
|
2014-04-17 08:58:03 +00:00
|
|
|
if (output) fclose(output);
|
|
|
|
if (recout) fclose(recout);
|
2015-06-08 14:29:10 +00:00
|
|
|
|
2014-06-11 05:48:36 +00:00
|
|
|
CHECKPOINTS_FINALIZE();
|
2015-06-08 14:29:10 +00:00
|
|
|
|
|
|
|
return retval;
|
2013-09-19 09:48:25 +00:00
|
|
|
}
|