p->width = p->enc->width;
p->height = p->enc->height;
p->frames = 10000000;
p->lavc_frame = avcodec_alloc_frame ();
p->lavc_frame = av_frame_alloc ();
if (p->fourcc)
g_free (p->fourcc);
uint8_t *picture_buf;
int size;
picture = avcodec_alloc_frame ();
picture = av_frame_alloc ();
if (!picture)
return NULL;
size = avpicture_get_size (pix_fmt, width, height);
-