OGG: Add padding at end of Vorbis headers

Patch by Siarhei Siamashka <siarhei.siamashka gmail com>

Originally committed as revision 14249 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Siarhei Siamashka 2008-07-15 23:00:29 +00:00 committed by Måns Rullgård
parent 64b9d48f76
commit 589790c294
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ fixup_vorbis_headers(AVFormatContext * as, oggvorbis_private_t *priv,
memcpy(&ptr[offset], priv->packet[i], priv->len[i]); memcpy(&ptr[offset], priv->packet[i], priv->len[i]);
offset += priv->len[i]; offset += priv->len[i];
} }
*buf = av_realloc(*buf, offset); *buf = av_realloc(*buf, offset + FF_INPUT_BUFFER_PADDING_SIZE);
return offset; return offset;
} }