2012-06-04 10:47:12 +00:00
|
|
|
/**
|
|
|
|
* HEVC Encoder
|
|
|
|
* - Marko Viitanen ( fador at iki.fi ), Tampere University of Technology, Department of Computer Systems.
|
|
|
|
*/
|
|
|
|
|
2012-06-01 12:31:06 +00:00
|
|
|
/*! \file bitstream.c
|
|
|
|
\brief Bitstream related functions
|
|
|
|
\author Marko Viitanen
|
2013-02-13 12:46:26 +00:00
|
|
|
\date 2013-02
|
2012-06-01 12:31:06 +00:00
|
|
|
|
|
|
|
This file has all bitstream functions
|
|
|
|
*/
|
|
|
|
|
2012-05-30 12:37:42 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <math.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
2012-06-06 08:59:02 +00:00
|
|
|
/* for hton */
|
|
|
|
#ifdef WIN32
|
|
|
|
#include <Winsock2.h>
|
|
|
|
#else
|
|
|
|
#include <net/hton.h>
|
|
|
|
#endif
|
2012-05-30 12:37:42 +00:00
|
|
|
|
|
|
|
#include "global.h"
|
|
|
|
#include "bitstream.h"
|
2012-06-05 14:45:17 +00:00
|
|
|
|
|
|
|
//#define VERBOSE
|
|
|
|
|
2012-06-01 12:31:06 +00:00
|
|
|
#ifdef VERBOSE
|
2012-05-30 12:37:42 +00:00
|
|
|
void printf_bitstream(char *msg, ...)
|
2012-06-01 12:31:06 +00:00
|
|
|
{
|
|
|
|
va_list fmtargs;
|
|
|
|
char buffer[1024];
|
2012-05-30 12:37:42 +00:00
|
|
|
va_start(fmtargs,msg);
|
|
|
|
vsnprintf(buffer,sizeof(buffer)-1,msg,fmtargs);
|
|
|
|
va_end(fmtargs);
|
2012-06-01 12:31:06 +00:00
|
|
|
printf("%s",buffer);
|
|
|
|
}
|
|
|
|
#endif
|
2012-06-05 11:01:47 +00:00
|
|
|
|
2012-06-05 14:45:17 +00:00
|
|
|
bitTable *g_exp_table;
|
2012-06-05 11:01:47 +00:00
|
|
|
|
|
|
|
//From wikipedia
|
|
|
|
//http://en.wikipedia.org/wiki/Binary_logarithm#Algorithm
|
|
|
|
int floorLog2(unsigned int n) {
|
|
|
|
int pos = 0;
|
|
|
|
if (n >= 1<<16) { n >>= 16; pos += 16; }
|
|
|
|
if (n >= 1<< 8) { n >>= 8; pos += 8; }
|
|
|
|
if (n >= 1<< 4) { n >>= 4; pos += 4; }
|
|
|
|
if (n >= 1<< 2) { n >>= 2; pos += 2; }
|
|
|
|
if (n >= 1<< 1) { pos += 1; }
|
|
|
|
return ((n == 0) ? (-1) : pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Initialize the Exp Golomb code table with desired number of values
|
|
|
|
void init_exp_golomb(uint32_t len)
|
|
|
|
{
|
|
|
|
uint32_t code_num;
|
|
|
|
uint32_t M;
|
|
|
|
uint32_t info;
|
2012-06-05 14:45:17 +00:00
|
|
|
g_exp_table=(bitTable*)malloc(len*sizeof(bitTable));
|
2012-06-05 11:01:47 +00:00
|
|
|
|
|
|
|
for(code_num=0;code_num<len;code_num++)
|
|
|
|
{
|
|
|
|
M=(uint32_t)floorLog2(code_num+1);
|
|
|
|
info=code_num+1-(uint32_t)pow(2,M);
|
2012-06-05 14:45:17 +00:00
|
|
|
g_exp_table[code_num].len=M*2+1;
|
|
|
|
g_exp_table[code_num].value=(1<<M)|info;
|
2012-06-05 11:01:47 +00:00
|
|
|
//printf_cavlc("Len: %i %x\n", M*2+1, (1<<M)|info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-30 12:37:42 +00:00
|
|
|
/*
|
|
|
|
* Clear bitstream
|
|
|
|
*/
|
|
|
|
void bitstream_init(bitstream* stream)
|
|
|
|
{
|
|
|
|
stream->cur_byte=0;
|
|
|
|
stream->cur_bit=0;
|
2012-06-05 12:38:54 +00:00
|
|
|
memset(stream->data, 0, sizeof(uint32_t)*32);
|
2012-05-30 12:37:42 +00:00
|
|
|
}
|
2012-06-05 11:01:47 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate buffer
|
|
|
|
*/
|
|
|
|
void bitstream_alloc(bitstream* stream, uint32_t alloc)
|
|
|
|
{
|
|
|
|
stream->buffer = (uint8_t*)malloc(alloc);
|
2012-06-06 10:42:02 +00:00
|
|
|
stream->bufferlen = alloc;
|
2012-06-05 11:01:47 +00:00
|
|
|
//Clear just to be sure
|
2012-06-06 10:42:02 +00:00
|
|
|
bitstream_clear_buffer(stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
void bitstream_clear_buffer(bitstream* stream)
|
|
|
|
{
|
|
|
|
memset(stream->buffer,0,stream->bufferlen);
|
2012-06-05 11:01:47 +00:00
|
|
|
stream->buffer_pos = 0;
|
|
|
|
}
|
2012-05-30 12:37:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Put bits to bitstream
|
|
|
|
* Input:
|
|
|
|
* stream = pointer bitstream to put the data
|
|
|
|
* data = pointer to actual data
|
|
|
|
* bits = number of bits to write
|
|
|
|
*/
|
|
|
|
|
2013-02-13 12:46:26 +00:00
|
|
|
void bitstream_put(bitstream* stream, uint32_t data, uint8_t bits)
|
2012-05-30 12:37:42 +00:00
|
|
|
{
|
2012-06-05 14:45:17 +00:00
|
|
|
uint32_t bitsleft=32-stream->cur_bit;
|
|
|
|
#ifdef VERBOSE
|
|
|
|
uint8_t i=0;
|
|
|
|
printf_bitstream("put: ");
|
|
|
|
for(i=0;i<bits;i++)
|
|
|
|
{
|
|
|
|
printf("%i",(data&(1<<(bits-i-1)))?1:0);
|
|
|
|
}
|
|
|
|
printf_bitstream("\n");
|
|
|
|
//printf_bitstream(" count: %i\n",bits);
|
|
|
|
#endif
|
2012-05-30 12:37:42 +00:00
|
|
|
|
2012-06-05 14:45:17 +00:00
|
|
|
//Theres space for all the bits
|
|
|
|
if(bits<=bitsleft)
|
|
|
|
{
|
|
|
|
stream->data[stream->cur_byte] |= (data<<((bitsleft-bits)));
|
|
|
|
stream->cur_bit+=bits;
|
|
|
|
bits=0;
|
|
|
|
}
|
|
|
|
//No space for everything, store the bits we can and continue later
|
|
|
|
else
|
|
|
|
{
|
|
|
|
stream->data[stream->cur_byte] |= (data>>(bits-bitsleft));
|
|
|
|
stream->cur_bit=32;
|
|
|
|
bits-=bitsleft;
|
|
|
|
}
|
2012-05-30 12:37:42 +00:00
|
|
|
|
2012-06-05 14:45:17 +00:00
|
|
|
//Check if the buffer is full
|
|
|
|
if(stream->cur_bit==32)
|
|
|
|
{
|
|
|
|
bitsleft=32;
|
|
|
|
stream->cur_byte++;
|
|
|
|
stream->cur_bit = 0;
|
|
|
|
if(stream->cur_byte==32)
|
2012-05-30 12:37:42 +00:00
|
|
|
{
|
2012-06-05 14:45:17 +00:00
|
|
|
//Flush data out
|
|
|
|
bitstream_flush(stream);
|
2012-05-30 12:37:42 +00:00
|
|
|
}
|
2012-06-05 14:45:17 +00:00
|
|
|
}
|
2012-05-30 12:37:42 +00:00
|
|
|
|
2012-06-05 14:45:17 +00:00
|
|
|
//..still some writing to do
|
|
|
|
if(bits!=0)
|
|
|
|
{
|
|
|
|
stream->data[stream->cur_byte] |= (data<<(bitsleft-bits));
|
|
|
|
stream->cur_bit+=bits;
|
2012-06-06 10:42:02 +00:00
|
|
|
}
|
2012-05-30 12:37:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2012-06-08 12:26:07 +00:00
|
|
|
* \brief Align the bitstream
|
2012-05-30 12:37:42 +00:00
|
|
|
*/
|
2013-02-13 12:46:26 +00:00
|
|
|
void bitstream_align(bitstream* stream)
|
2012-05-30 12:37:42 +00:00
|
|
|
{
|
2012-06-05 14:45:17 +00:00
|
|
|
if((stream->cur_bit&7) != 0)
|
2012-06-05 11:01:47 +00:00
|
|
|
{
|
2012-06-08 12:26:07 +00:00
|
|
|
bitstream_put(stream,0, 8-(stream->cur_bit&7));
|
2012-06-05 11:01:47 +00:00
|
|
|
}
|
2012-05-30 12:37:42 +00:00
|
|
|
}
|
|
|
|
|
2013-02-13 12:46:26 +00:00
|
|
|
void bitstream_flush(bitstream* stream)
|
2012-05-30 12:37:42 +00:00
|
|
|
{
|
2012-06-05 11:01:47 +00:00
|
|
|
/*
|
|
|
|
* SAVE DATA TO OUTPUT
|
|
|
|
*/
|
2012-06-08 12:26:07 +00:00
|
|
|
int i;
|
2012-06-06 08:59:02 +00:00
|
|
|
uint32_t correct_endian;
|
2012-06-05 11:01:47 +00:00
|
|
|
if(stream->output)
|
|
|
|
{
|
|
|
|
if(stream->cur_byte)
|
|
|
|
{
|
2012-06-05 14:45:17 +00:00
|
|
|
fwrite(&stream->data[0], stream->cur_byte*4, 1, stream->output);
|
2012-06-05 11:01:47 +00:00
|
|
|
}
|
2012-05-30 12:37:42 +00:00
|
|
|
|
2012-06-05 11:01:47 +00:00
|
|
|
if(stream->cur_bit>>3)
|
|
|
|
{
|
|
|
|
fwrite(&stream->data[stream->cur_byte], stream->cur_bit>>3, 1, stream->output);
|
|
|
|
}
|
|
|
|
}
|
2012-06-05 14:45:17 +00:00
|
|
|
/* No file open, write to buffer */
|
2012-06-05 11:01:47 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if(stream->cur_byte)
|
|
|
|
{
|
2012-06-06 08:59:02 +00:00
|
|
|
/* Handle endianness issue */
|
2012-06-06 10:42:02 +00:00
|
|
|
for(i = 0; i < stream->cur_byte; i++)
|
2012-06-05 14:45:17 +00:00
|
|
|
{
|
2012-06-06 08:59:02 +00:00
|
|
|
/* "network" is big-endian */
|
|
|
|
correct_endian = htonl(stream->data[i]);
|
|
|
|
memcpy((uint8_t*)&stream->buffer[stream->buffer_pos],&correct_endian,4);
|
|
|
|
stream->buffer_pos += 4;
|
2012-06-05 14:45:17 +00:00
|
|
|
}
|
2012-06-05 11:01:47 +00:00
|
|
|
}
|
|
|
|
|
2012-06-05 14:45:17 +00:00
|
|
|
if(stream->cur_bit>>3)
|
|
|
|
{
|
2012-06-06 08:59:02 +00:00
|
|
|
correct_endian = htonl(stream->data[stream->cur_byte]);
|
|
|
|
memcpy((uint8_t*)&stream->buffer[stream->buffer_pos],&correct_endian,stream->cur_bit>>3);
|
2012-06-05 14:45:17 +00:00
|
|
|
stream->buffer_pos += stream->cur_bit>>3;
|
2012-06-06 08:59:02 +00:00
|
|
|
}
|
2012-06-05 11:01:47 +00:00
|
|
|
}
|
2012-06-06 08:59:02 +00:00
|
|
|
//Stream flushed, zero out the values
|
|
|
|
bitstream_init(stream);
|
2012-05-30 12:37:42 +00:00
|
|
|
}
|
2012-06-05 11:01:47 +00:00
|
|
|
|