fix build on trusty

This commit is contained in:
Isaac Connor 2017-08-24 12:19:57 -04:00
parent 2a4f751a4f
commit 08bdf5a729
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ Image::Image( const AVFrame *frame ) {
av_image_fill_arrays(dest_frame->data, dest_frame->linesize,
buffer, AV_PIX_FMT_RGBA, width, height, 1);
#else
avpicture_fill( (AVPicture *)mFrame, buffer,
avpicture_fill( (AVPicture *)dest_frame, buffer,
AV_PIX_FMT_RGBA, width, height);
#endif