audio: fix pool allocation

It reallocated the pool on every request, making the pool completely
useless. Oops.
This commit is contained in:
wm4 2015-02-11 11:26:23 +01:00
parent b6ab34fc98
commit 67aeccc254
1 changed files with 2 additions and 1 deletions

View File

@ -370,7 +370,8 @@ struct mp_audio *mp_audio_pool_get(struct mp_audio_pool *pool,
if (alloc >= INT_MAX)
return NULL;
av_buffer_pool_uninit(&pool->avpool);
pool->avpool = av_buffer_pool_init(alloc, NULL);
pool->element_size = alloc;
pool->avpool = av_buffer_pool_init(pool->element_size, NULL);
if (!pool->avpool)
return NULL;
talloc_set_destructor(pool, mp_audio_pool_destructor);