2014-01-24 10:37:15 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* This file is part of Kvazaar HEVC encoder.
|
2013-09-18 14:29:30 +00:00
|
|
|
*
|
2014-01-24 10:37:15 +00:00
|
|
|
* Copyright (C) 2013-2014 Tampere University of Technology and others (see
|
|
|
|
* COPYING file).
|
|
|
|
*
|
|
|
|
* Kvazaar is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as published
|
|
|
|
* by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Kvazaar. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* \file
|
2012-06-05 12:38:54 +00:00
|
|
|
*/
|
|
|
|
|
2013-09-18 09:16:03 +00:00
|
|
|
#include "nal.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.
|
|
|
|
*/
|
|
|
|
void nal_write(FILE *output, uint8_t *buffer, uint32_t buffer_len, uint8_t nal_ref, uint8_t nal_type, uint8_t temporal_id)
|
2012-06-05 12:38:54 +00:00
|
|
|
{
|
|
|
|
uint8_t byte;
|
|
|
|
uint32_t i;
|
2013-09-19 13:03:02 +00:00
|
|
|
uint8_t zerocount = 0;
|
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 emulation_prevention_three_byte = 0x03;
|
|
|
|
const uint8_t start_code_prefix_one_3bytes = 0x01;
|
|
|
|
const uint8_t zero = 0x00;
|
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
// start_code_prefix_one_3bytes
|
2012-06-05 12:38:54 +00:00
|
|
|
fwrite(&zero, 1, 1, output);
|
|
|
|
fwrite(&zero, 1, 1, output);
|
|
|
|
fwrite(&start_code_prefix_one_3bytes, 1, 1, output);
|
|
|
|
|
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;
|
2012-06-05 12:38:54 +00:00
|
|
|
fwrite(&byte, 1, 1, output);
|
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
// 5bits of nuh_layer_id + nuh_temporal_id_plus1(3)
|
|
|
|
byte = (temporal_id + 1) & 7;
|
2012-06-05 12:38:54 +00:00
|
|
|
fwrite(&byte, 1, 1, output);
|
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
// Write out bytes and add emulation_prevention_three_byte when needed
|
|
|
|
for (i = 0; i < buffer_len; ++i) {
|
|
|
|
// Prevent 0x0000 + 00/01/02 byte sequences from occurring by prefixing
|
|
|
|
// the last byte with 0x03. Do the same for 0x03.
|
|
|
|
if (zerocount == 2 && buffer[i] < 4) {
|
2012-06-05 12:38:54 +00:00
|
|
|
fwrite(&emulation_prevention_three_byte, 1, 1, output);
|
|
|
|
zerocount = 0;
|
|
|
|
}
|
2013-09-19 13:03:02 +00:00
|
|
|
if(buffer[i] == 0) {
|
2012-06-05 12:38:54 +00:00
|
|
|
zerocount++;
|
2013-09-19 13:03:02 +00:00
|
|
|
} else {
|
2012-06-05 12:38:54 +00:00
|
|
|
zerocount = 0;
|
2012-06-11 15:43:29 +00:00
|
|
|
}
|
2012-06-05 12:38:54 +00:00
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
// Write the actual data
|
2012-06-05 12:38:54 +00:00
|
|
|
fwrite(&buffer[i], 1, 1, output);
|
|
|
|
}
|
2012-06-06 10:42:02 +00:00
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
// If last byte was 0, add emulation_prevention_three_byte
|
|
|
|
if (buffer[buffer_len - 1] == 0) {
|
2012-06-06 10:42:02 +00:00
|
|
|
fwrite(&emulation_prevention_three_byte, 1, 1, output);
|
2012-06-11 15:43:29 +00:00
|
|
|
}
|
2013-09-05 12:59:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
/**
|
|
|
|
* \brief Calculate checksum for one color of the picture.
|
|
|
|
* \param data Beginning of the pixel data for the picture.
|
|
|
|
* \param height Height of the picture.
|
|
|
|
* \param width Width of the picture.
|
|
|
|
* \param stride Width of one row in the pixel array.
|
|
|
|
*/
|
2013-10-15 12:27:32 +00:00
|
|
|
static void array_checksum(const pixel* data,
|
2013-09-19 13:03:02 +00:00
|
|
|
const int height, const int width,
|
|
|
|
const int stride,
|
|
|
|
unsigned char checksum_out[SEI_HASH_MAX_LENGTH])
|
2013-09-05 12:59:51 +00:00
|
|
|
{
|
|
|
|
unsigned char mask;
|
|
|
|
unsigned int checksum = 0;
|
|
|
|
int y, x;
|
2013-09-19 13:03:02 +00:00
|
|
|
|
|
|
|
assert(SEI_HASH_MAX_LENGTH >= 4);
|
|
|
|
|
2013-09-05 12:59:51 +00:00
|
|
|
for (y = 0; y < height; ++y) {
|
|
|
|
for (x = 0; x < width; ++x) {
|
|
|
|
mask = (x & 0xff) ^ (y & 0xff) ^ (x >> 8) ^ (y >> 8);
|
|
|
|
checksum += (data[(y * stride) + x] & 0xff) ^ mask;
|
|
|
|
checksum &= 0xffffffff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-19 13:03:02 +00:00
|
|
|
// Unpack uint into byte-array.
|
2013-09-05 12:59:51 +00:00
|
|
|
checksum_out[0] = (checksum >> 24) & 0xff;
|
|
|
|
checksum_out[1] = (checksum >> 16) & 0xff;
|
|
|
|
checksum_out[2] = (checksum >> 8) & 0xff;
|
|
|
|
checksum_out[3] = (checksum) & 0xff;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\brief Calculate checksums for all colors of the picture.
|
|
|
|
\param pic The picture that checksum is calculated for.
|
|
|
|
\param checksum_out Result of the calculation.
|
|
|
|
\returns Void
|
|
|
|
*/
|
2013-09-19 13:03:02 +00:00
|
|
|
void picture_checksum(const picture* pic, unsigned char checksum_out[][SEI_HASH_MAX_LENGTH])
|
2013-09-05 12:59:51 +00:00
|
|
|
{
|
2013-09-09 11:22:53 +00:00
|
|
|
int stride = pic->width; /* TODO: != width, if there is a luma margin. */
|
2013-09-18 11:58:46 +00:00
|
|
|
array_checksum(pic->y_recdata, pic->height, pic->width, pic->width, checksum_out[0]);
|
2013-09-05 12:59:51 +00:00
|
|
|
|
|
|
|
/* The number of chroma pixels is half that of luma. */
|
2013-09-18 11:58:46 +00:00
|
|
|
array_checksum(pic->u_recdata, pic->height >> 1, pic->width >> 1, pic->width >> 1, checksum_out[1]);
|
|
|
|
array_checksum(pic->v_recdata, pic->height >> 1, pic->width >> 1, pic->width >> 1, checksum_out[2]);
|
2012-06-05 12:38:54 +00:00
|
|
|
}
|