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
|
2012-06-05 12:38:54 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-18 09:16:03 +00:00
|
|
|
#include "nal.h"
|
2014-06-02 09:20:20 +00:00
|
|
|
#include "strategyselector.h"
|
2012-06-05 12:38:54 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2013-09-19 13:03:02 +00:00
|
|
|
#include <assert.h>
|
2013-09-18 09:16:03 +00:00
|
|
|
|
2012-06-05 12:38:54 +00:00
|
|
|
#include "config.h"
|
2012-06-06 13:20:29 +00:00
|
|
|
#include "bitstream.h"
|
|
|
|
#include "cabac.h"
|
|
|
|
#include "encoder.h"
|
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
/**
|
|
|
|
* \brief Write a Network Abstraction Layer (NAL) packet to the output.
|
|
|
|
*/
|
2015-03-04 11:20:18 +00:00
|
|
|
void nal_write(bitstream_t * const bitstream, const uint8_t nal_type,
|
2014-04-17 04:55:35 +00:00
|
|
|
const uint8_t temporal_id, const int long_start_code)
|
2012-06-05 12:38:54 +00:00
|
|
|
{
|
|
|
|
uint8_t byte;
|
2012-06-11 15:43:29 +00:00
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
// Some useful constants
|
2012-06-06 10:42:02 +00:00
|
|
|
const uint8_t start_code_prefix_one_3bytes = 0x01;
|
|
|
|
const uint8_t zero = 0x00;
|
|
|
|
|
2014-02-03 13:31:58 +00:00
|
|
|
// zero_byte (0x00) shall be present in the byte stream NALU of VPS, SPS
|
|
|
|
// and PPS, or the first NALU of an access unit
|
|
|
|
if(long_start_code)
|
2014-04-17 04:55:35 +00:00
|
|
|
bitstream_writebyte(bitstream, zero);
|
2014-02-03 13:31:58 +00:00
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
// start_code_prefix_one_3bytes
|
2014-04-17 04:55:35 +00:00
|
|
|
bitstream_writebyte(bitstream, zero);
|
|
|
|
bitstream_writebyte(bitstream, zero);
|
|
|
|
bitstream_writebyte(bitstream, start_code_prefix_one_3bytes);
|
2012-06-05 12:38:54 +00:00
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
// Handle header bits with full bytes instead of using bitstream
|
|
|
|
// forbidden_zero_flag(1) + nal_unit_type(6) + 1bit of nuh_layer_id
|
|
|
|
byte = nal_type << 1;
|
2014-04-17 04:55:35 +00:00
|
|
|
bitstream_writebyte(bitstream, byte);
|
2012-06-05 12:38:54 +00:00
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
// 5bits of nuh_layer_id + nuh_temporal_id_plus1(3)
|
|
|
|
byte = (temporal_id + 1) & 7;
|
2014-04-17 04:55:35 +00:00
|
|
|
bitstream_writebyte(bitstream, byte);
|
2013-09-05 12:59:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Calculate checksums for all colors of the picture.
|
2014-06-05 12:54:58 +00:00
|
|
|
\param im The image that checksum is calculated for.
|
2013-09-05 12:59:51 +00:00
|
|
|
\param checksum_out Result of the calculation.
|
|
|
|
\returns Void
|
|
|
|
*/
|
2014-06-05 12:54:58 +00:00
|
|
|
void image_checksum(const image* im, unsigned char checksum_out[][SEI_HASH_MAX_LENGTH])
|
2013-09-05 12:59:51 +00:00
|
|
|
{
|
2014-06-05 12:54:58 +00:00
|
|
|
array_checksum(im->y, im->height, im->width, im->width, checksum_out[0]);
|
2013-09-05 12:59:51 +00:00
|
|
|
|
|
|
|
/* The number of chroma pixels is half that of luma. */
|
2014-06-05 12:54:58 +00:00
|
|
|
array_checksum(im->u, im->height >> 1, im->width >> 1, im->width >> 1, checksum_out[1]);
|
|
|
|
array_checksum(im->v, im->height >> 1, im->width >> 1, im->width >> 1, checksum_out[2]);
|
2014-02-03 14:32:54 +00:00
|
|
|
}
|