Commit ae2a8d87 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit '247764a5'

* commit '247764a5':
  rtpdec_h264: Remove unnecessary struct padding
Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 5d06b6e9 247764a5
...@@ -346,7 +346,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data, ...@@ -346,7 +346,7 @@ static int h264_handle_packet(AVFormatContext *ctx, PayloadContext *data,
static PayloadContext *h264_new_context(void) 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) static void h264_free_context(PayloadContext *data)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment