Instead of crashing, return from ff_vdpau_mpeg_picture_complete()

if get_buffer() failed.

Patch by Reimar

Originally committed as revision 17427 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2009-02-18 09:21:29 +00:00 committed by Carl Eugen Hoyos
parent 59501dc84d
commit 9bbf1a5c23
1 changed files with 2 additions and 0 deletions

View File

@ -184,6 +184,8 @@ void ff_vdpau_mpeg_picture_complete(MpegEncContext *s, const uint8_t *buf,
struct vdpau_render_state *render, *last, *next;
int i;
if (!s->current_picture_ptr) return;
render = (struct vdpau_render_state *)s->current_picture_ptr->data[0];
assert(render);