Commit f966ac2b authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/rtpdec_vp9: remove alloc/free functions

Simplify code
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent d52bf89d
......@@ -31,11 +31,6 @@ struct PayloadContext {
uint32_t timestamp;
};
static av_cold PayloadContext *vp9_new_context(void)
{
return av_mallocz(sizeof(PayloadContext));
}
static void vp9_free_dyn_buffer(AVIOContext **dyn_buf)
{
uint8_t *ptr_dyn_buffer;
......@@ -44,11 +39,6 @@ static void vp9_free_dyn_buffer(AVIOContext **dyn_buf)
*dyn_buf = NULL;
}
static av_cold void vp9_free_context(PayloadContext *data)
{
av_free(data);
}
static av_cold int vp9_init(AVFormatContext *ctx, int st_index,
PayloadContext *data)
{
......@@ -311,7 +301,6 @@ RTPDynamicProtocolHandler ff_vp9_dynamic_handler = {
.codec_type = AVMEDIA_TYPE_VIDEO,
.codec_id = AV_CODEC_ID_VP9,
.init = vp9_init,
.alloc = vp9_new_context,
.free = vp9_free_context,
.priv_data_size = sizeof(PayloadContext),
.parse_packet = vp9_handle_packet
};
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