📄 annexb.c
字号:
/*!
*************************************************************************************
* \file annexb.c
*
* \brief
* Annex B Byte Stream format NAL Unit writing routines
*
* \author
* Main contributors (see contributors.h for copyright, address and affiliation details)
* - Stephan Wenger <stewe@cs.tu-berlin.de>
*************************************************************************************
*/
#include <stdlib.h>
#include <assert.h>
#include "global.h"
#include "nalucommon.h"
static FILE *f = NULL; // the output file
#ifdef USE_POST_FILTER
static FILE *f_post = NULL;
#endif
/*!
********************************************************************************************
* \brief
* Writes a NALU to the Annex B Byte Stream
*
* \return
* number of bits written
*
********************************************************************************************
*/
int WriteAnnexbNALU (NALU_t *n)
{
int BitsWritten = 0;
assert (n != NULL);
assert (n->forbidden_bit == 0);
assert (f != NULL);
assert (n->startcodeprefix_len == 3 || n->startcodeprefix_len == 4);
// printf ("WriteAnnexbNALU: writing %d bytes w/ startcode_len %d\n", n->len+1, n->startcodeprefix_len);
if (n->startcodeprefix_len > 3)
{
putc (0, f);
BitsWritten =+ 8;
}
putc (0, f);
putc (0, f);
putc (1, f);
BitsWritten += 24;
n->buf[0] = (unsigned char) ((n->forbidden_bit << 7) | (n->nal_reference_idc << 5) | n->nal_unit_type);
// printf ("First Byte %x, nal_ref_idc %x, nal_unit_type %d\n", n->buf[0], n->nal_reference_idc, n->nal_unit_type);
if (n->len != fwrite (n->buf, 1, n->len, f))
{
printf ("Fatal: cannot write %d bytes to bitstream file, exit (-1)\n", n->len);
exit (-1);
}
BitsWritten += n->len * 8;
fflush (f);
#if TRACE
fprintf (p_trace, "\n\nAnnex B NALU w/ %s startcode, len %d, forbidden_bit %d, nal_reference_idc %d, nal_unit_type %d\n\n",
n->startcodeprefix_len == 4?"long":"short", n->len, n->forbidden_bit, n->nal_reference_idc, n->nal_unit_type);
fflush (p_trace);
#endif
return BitsWritten;
}
/*!
********************************************************************************************
* \brief
* Opens the output file for the bytestream
*
* \param Filename
* The filename of the file to be opened
*
* \return
* none. Function terminates the program in case of an error
*
********************************************************************************************
*/
void OpenAnnexbFile (char *Filename)
{
if ((f = fopen (Filename, "wb")) == NULL)
{
printf ("Fatal: cannot open Annex B bytestream file '%s', exit (-1)\n", Filename);
exit (-1);
}
}
/*!
********************************************************************************************
* \brief
* Closes the output bit stream file
*
* \return
* none. Funtion trerminates the program in case of an error
********************************************************************************************
*/
void CloseAnnexbFile(void)
{
if (fclose (f))
{
printf ("Fatal: cannot close Annex B bytestream file, exit (-1)\n");
exit (-1);
}
}
#ifdef USE_POST_FILTER
void OpenAnnexbFileRead(char *Filename)
{
if ((f_post = fopen (Filename, "rb")) == NULL)
{
printf ("Fatal: cannot open Annex B bytestream file '%s', exit (-1)\n", Filename);
exit (-1);
}
}
void CloseAnnexbFileRead(void) {
if (fclose (f_post))
{
printf ("Fatal: cannot close Annex B bytestream file, exit (-1)\n");
exit (-1);
}
}
void CopyFromAnnexbFile(long ByteCt,long ByteOffset)
{
int read_size=(ByteCt<10000)?ByteCt:10000;
int byte_size;
char Buf[10000];
fseek(f_post,ByteOffset,SEEK_SET);
while (ByteCt>0)
{
byte_size=fread(Buf,1,read_size,f_post);
if (byte_size==EOF)
break;
fwrite(Buf,1,byte_size,f);
ByteCt = ByteCt - byte_size;
}
}
void CopyAllFromAnnexbFile(long ByteOffset)
{
int byte_size;
char Buf[10000];
fseek(f_post,ByteOffset,SEEK_SET);
while ((byte_size=fread(Buf,1,10000,f_post)))
{
if (byte_size==EOF||byte_size==0)
break;
fwrite(Buf,1,byte_size,f);
}
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -