On Wed, Dec 26, 2012 at 7:52 AM, Navin <[email protected]> wrote: > avpicture_fill((AVPicture *) g_pFrameRGB, pbuffer, PIX_FMT_RGB24, > g_metadata->WIDTH, g_metadata->HEIGHT); .. so far so good > av_free(pbuffer); oops, you still expect g_pFrameRGB->data[0] to be a valid array. But you have released this memory!
BR, Alex _______________________________________________ Libav-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/libav-user
