mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-17 08:09:50 +00:00
52 lines
1.7 KiB
C
52 lines
1.7 KiB
C
|
/*
|
||
|
*
|
||
|
* This file is part of FFmpeg.
|
||
|
*
|
||
|
* FFmpeg 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.
|
||
|
*
|
||
|
* FFmpeg 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.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Lesser General Public
|
||
|
* License along with FFmpeg; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#ifndef AVCODEC_DEFS_H
|
||
|
#define AVCODEC_DEFS_H
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* @ingroup libavc
|
||
|
* Misc types and constants that do not belong anywhere else.
|
||
|
*/
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
/**
|
||
|
* @ingroup lavc_decoding
|
||
|
* Required number of additionally allocated bytes at the end of the input bitstream for decoding.
|
||
|
* This is mainly needed because some optimized bitstream readers read
|
||
|
* 32 or 64 bit at once and could read over the end.<br>
|
||
|
* Note: If the first 23 bits of the additional bytes are not 0, then damaged
|
||
|
* MPEG bitstreams could cause overread and segfault.
|
||
|
*/
|
||
|
#define AV_INPUT_BUFFER_PADDING_SIZE 64
|
||
|
|
||
|
/**
|
||
|
* Encode extradata length to a buffer. Used by xiph codecs.
|
||
|
*
|
||
|
* @param s buffer to write to; must be at least (v/255+1) bytes long
|
||
|
* @param v size of extradata in bytes
|
||
|
* @return number of bytes written to the buffer.
|
||
|
*/
|
||
|
unsigned int av_xiphlacing(unsigned char *s, unsigned int v);
|
||
|
|
||
|
#endif // AVCODEC_DEFS_H
|