indent
Originally committed as revision 20802 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
a0b468f5db
commit
47a81dad92
@ -49,9 +49,9 @@ int av_new_packet(AVPacket *pkt, int size)
|
|||||||
{
|
{
|
||||||
uint8_t *data= NULL;
|
uint8_t *data= NULL;
|
||||||
if((unsigned)size < (unsigned)size + FF_INPUT_BUFFER_PADDING_SIZE)
|
if((unsigned)size < (unsigned)size + FF_INPUT_BUFFER_PADDING_SIZE)
|
||||||
data = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
|
data = av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
|
||||||
if (data){
|
if (data){
|
||||||
memset(data + size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
|
memset(data + size, 0, FF_INPUT_BUFFER_PADDING_SIZE);
|
||||||
}else
|
}else
|
||||||
size=0;
|
size=0;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user