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
|
|
|
|
#include <io.h> /* _setmode() */
|
|
|
|
#include <fcntl.h> /* _O_BINARY */
|
|
|
|
#endif
|
|
|
|
|
2015-07-01 05:17:21 +00:00
|
|
|
#include "kvazaar_internal.h"
|
|
|
|
|
2015-11-09 11:07:52 +00:00
|
|
|
#include <math.h>
|
2013-09-19 09:48:25 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2014-04-11 09:42:37 +00:00
|
|
|
#include <time.h>
|
2013-09-23 13:48:34 +00:00
|
|
|
|
2014-06-11 05:48:36 +00:00
|
|
|
#include "checkpoint.h"
|
2013-09-19 09:48:25 +00:00
|
|
|
#include "global.h"
|
|
|
|
#include "encoder.h"
|
2015-05-13 09:45:11 +00:00
|
|
|
#include "cli.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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-09 11:07:52 +00:00
|
|
|
#if KVZ_BIT_DEPTH == 8
|
|
|
|
#define PSNRMAX (255.0 * 255.0)
|
|
|
|
#else
|
|
|
|
#define PSNRMAX ((double)PIXEL_MAX * (double)PIXEL_MAX)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \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,
|
|
|
|
double psnr[NUM_COLORS])
|
|
|
|
{
|
|
|
|
assert(src->width == rec->width);
|
|
|
|
assert(src->height == rec->height);
|
|
|
|
|
|
|
|
int32_t pixels = src->width * src->height;
|
|
|
|
|
|
|
|
for (int32_t c = 0; c < NUM_COLORS; ++c) {
|
|
|
|
int32_t num_pixels = pixels;
|
|
|
|
if (c != COLOR_Y) {
|
|
|
|
num_pixels >>= 2;
|
|
|
|
}
|
|
|
|
psnr[c] = 0;
|
|
|
|
for (int32_t i = 0; i < num_pixels; ++i) {
|
|
|
|
const int32_t error = src->data[c][i] - rec->data[c][i];
|
|
|
|
psnr[c] += error * error;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Avoid division by zero
|
|
|
|
if (psnr[c] == 0) psnr[c] = 99.0;
|
|
|
|
psnr[c] = 10 * log10((num_pixels * PSNRMAX) / ((double)psnr[c]));;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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;
|
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
|
|
|
|
2014-02-05 17:16:44 +00:00
|
|
|
// Stdin and stdout need to be binary for input and output to work.
|
|
|
|
// Stderr needs to be text mode to convert \n to \r\n in Windows.
|
2014-01-31 12:32:41 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
_setmode( _fileno( stdin ), _O_BINARY );
|
|
|
|
_setmode( _fileno( stdout ), _O_BINARY );
|
2014-02-05 17:16:44 +00:00
|
|
|
_setmode( _fileno( stderr ), _O_TEXT );
|
2014-01-31 12:32:41 +00:00
|
|
|
#endif
|
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) {
|
2015-05-13 09:45:11 +00:00
|
|
|
print_version();
|
|
|
|
print_help();
|
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
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
encoder_control_t *encoder = enc->control;
|
2014-04-17 12:42:20 +00:00
|
|
|
|
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
|
|
|
|
2015-07-03 12:04:36 +00:00
|
|
|
if (opts->seek > 0 && !yuv_io_seek(input, opts->seek, opts->config->width, opts->config->height)) {
|
|
|
|
fprintf(stderr, "Failed to seek %d frames.\n", opts->seek);
|
2015-06-09 07:20:21 +00:00
|
|
|
goto exit_failure;
|
|
|
|
}
|
2015-04-08 14:17:45 +00:00
|
|
|
encoder->vui.field_seq_flag = encoder->cfg->source_scan_type != 0;
|
|
|
|
encoder->vui.frame_field_info_present_flag = encoder->cfg->source_scan_type != 0;
|
2015-06-09 07:20:21 +00:00
|
|
|
|
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-06-18 06:10:47 +00:00
|
|
|
uint32_t frames_read = 0;
|
2015-05-14 15:33:57 +00:00
|
|
|
uint32_t frames_done = 0;
|
|
|
|
double psnr_sum[3] = { 0.0, 0.0, 0.0 };
|
2015-01-22 10:16:46 +00:00
|
|
|
|
2015-08-18 16:11:08 +00:00
|
|
|
int8_t field_parity = 0;
|
|
|
|
kvz_picture *frame_in = NULL;
|
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
|
|
|
|
2015-06-18 06:10:47 +00:00
|
|
|
for (;;) {
|
2015-08-18 16:11:08 +00:00
|
|
|
|
2015-06-30 07:56:29 +00:00
|
|
|
kvz_picture *img_in = NULL;
|
2015-08-18 16:11:08 +00:00
|
|
|
|
|
|
|
if (!feof(input) && (opts->frames == 0 || frames_read < opts->frames || field_parity == 1) ) {
|
2015-06-18 06:10:47 +00:00
|
|
|
// Try to read an input frame.
|
2015-08-21 13:54:40 +00:00
|
|
|
if(field_parity == 0) frame_in = api->picture_alloc(opts->config->width + padding_x, opts->config->height + padding_y);
|
2015-08-18 16:11:08 +00:00
|
|
|
if (!frame_in) {
|
2015-06-18 06:10:47 +00:00
|
|
|
fprintf(stderr, "Failed to allocate image.\n");
|
|
|
|
goto exit_failure;
|
|
|
|
}
|
2015-06-16 07:18:06 +00:00
|
|
|
|
2015-08-18 16:11:08 +00:00
|
|
|
if (field_parity == 0){
|
|
|
|
if (yuv_io_read(input, opts->config->width, opts->config->height, frame_in)) {
|
|
|
|
frames_read += 1;
|
|
|
|
img_in = frame_in;
|
|
|
|
} else {
|
|
|
|
// EOF or some error
|
2015-08-21 15:26:12 +00:00
|
|
|
api->picture_free(frame_in);
|
2015-08-18 16:11:08 +00:00
|
|
|
img_in = NULL;
|
|
|
|
if (!feof(input)) {
|
|
|
|
fprintf(stderr, "Failed to read a frame %d\n", frames_read);
|
|
|
|
goto exit_failure;
|
|
|
|
}
|
2015-06-18 06:10:47 +00:00
|
|
|
}
|
|
|
|
}
|
2015-08-18 16:11:08 +00:00
|
|
|
|
|
|
|
if (encoder->cfg->source_scan_type != 0){
|
|
|
|
img_in = api->picture_alloc(encoder->in.width, encoder->in.height);
|
|
|
|
yuv_io_extract_field(frame_in, encoder->cfg->source_scan_type, field_parity, img_in);
|
|
|
|
if (field_parity == 1) api->picture_free(frame_in);
|
|
|
|
field_parity ^= 1; //0->1 or 1->0
|
|
|
|
}
|
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,
|
|
|
|
img_in,
|
|
|
|
&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");
|
2015-06-30 09:11:58 +00:00
|
|
|
api->picture_free(img_in);
|
2015-06-03 17:09:36 +00:00
|
|
|
goto exit_failure;
|
|
|
|
}
|
2015-05-18 15:21:23 +00:00
|
|
|
|
2015-06-30 09:22:30 +00:00
|
|
|
if (chunks_out == NULL && img_in == 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");
|
2015-06-30 09:11:58 +00:00
|
|
|
api->picture_free(img_in);
|
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;
|
|
|
|
|
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 };
|
2015-11-09 11:07:52 +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);
|
|
|
|
if (!yuv_io_write(recout,
|
|
|
|
img_rec,
|
|
|
|
opts->config->width,
|
|
|
|
opts->config->height)) {
|
|
|
|
fprintf(stderr, "Failed to write reconstructed picture!\n");
|
|
|
|
}
|
|
|
|
}
|
2015-06-18 06:10:47 +00:00
|
|
|
|
2015-05-18 13:56:54 +00:00
|
|
|
frames_done += 1;
|
|
|
|
psnr_sum[0] += frame_psnr[0];
|
|
|
|
psnr_sum[1] += frame_psnr[1];
|
|
|
|
psnr_sum[2] += frame_psnr[2];
|
|
|
|
|
2015-09-09 07:28:45 +00:00
|
|
|
print_frame_info(&info_out, frame_psnr, len_out);
|
2015-05-18 13:56:54 +00:00
|
|
|
}
|
2015-05-18 15:21:23 +00:00
|
|
|
|
2015-06-30 09:11:58 +00:00
|
|
|
api->picture_free(img_in);
|
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
|
|
|
|
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);
|
|
|
|
if (frames_done > 0) {
|
|
|
|
fprintf(stderr, " AVG PSNR: %2.4f %2.4f %2.4f",
|
|
|
|
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
|
|
|
{
|
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);
|
2014-11-14 14:38:07 +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_time/wall_time*100.f);
|
2015-05-14 15:33:57 +00:00
|
|
|
fprintf(stderr, " FPS: %.2f\n", ((double)frames_done)/wall_time);
|
2014-06-16 08:18:11 +00:00
|
|
|
}
|
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:
|
|
|
|
// 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
|
|
|
}
|