mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
theoradec: make sure our buffer is big enough
Make sure we allocate a buffer that is big enough.
This commit is contained in:
parent
084eac3a77
commit
1b8ef683ce
1 changed files with 1 additions and 1 deletions
|
@ -808,11 +808,11 @@ theora_negotiate_pool (GstTheoraDec * dec, GstCaps * caps, GstVideoInfo * info)
|
|||
&alignment, &pool);
|
||||
} else {
|
||||
GST_DEBUG_OBJECT (dec, "didn't get downstream ALLOCATION hints");
|
||||
size = info->size;
|
||||
min = max = 0;
|
||||
prefix = 0;
|
||||
alignment = 0;
|
||||
}
|
||||
size = MAX (size, info->size);
|
||||
|
||||
if (pool == NULL) {
|
||||
/* we did not get a pool, make one ourselves then */
|
||||
|
|
Loading…
Reference in a new issue