Search found 1 match

by jeanpierre
Tue Jul 14, 2009 2:18 pm
Forum: ZoneMinder 1.24.x
Topic: ffmpeg problem [SOLVED]
Replies: 16
Views: 20417

SOLVED!

error : av_free_packet not found !


add in end file src/zm_ffmpeg_camera.cpp to resolve problem.



void av_free_packet(AVPacket *pkt)
{
if (pkt) {
if (pkt->destruct) pkt->destruct(pkt);
pkt->data = NULL; pkt->size = 0;
}
}
[/u]