Merge commit '247764a592f83521f9c1ccdc900b00a8b84f3c87'

* commit '247764a592f83521f9c1ccdc900b00a8b84f3c87':
  rtpdec_h264: Remove unnecessary struct padding

Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2015-02-24 22:12:13 +01:00
commit ae2a8d8742
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
static PayloadContext *h264_new_context(void)
{
return av_mallocz(sizeof(PayloadContext) + FF_INPUT_BUFFER_PADDING_SIZE);
return av_mallocz(sizeof(PayloadContext));
}
static void h264_free_context(PayloadContext *data)