Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 636780
Collapse All | Expand All

(-)a/operations/external/ff-load.c (-1 / +1 lines)
Lines 321-327 prepare (GeglOperation *operation) Link Here
321
      p->width = p->enc->width;
321
      p->width = p->enc->width;
322
      p->height = p->enc->height;
322
      p->height = p->enc->height;
323
      p->frames = 10000000;
323
      p->frames = 10000000;
324
      p->lavc_frame = avcodec_alloc_frame ();
324
      p->lavc_frame = av_frame_alloc ();
325
325
326
      if (p->fourcc)
326
      if (p->fourcc)
327
        g_free (p->fourcc);
327
        g_free (p->fourcc);
(-)a/operations/workshop/external/ff-save.c (-2 / +1 lines)
Lines 537-543 alloc_picture (int pix_fmt, int width, int height) Link Here
537
  uint8_t  *picture_buf;
537
  uint8_t  *picture_buf;
538
  int       size;
538
  int       size;
539
539
540
  picture = avcodec_alloc_frame ();
540
  picture = av_frame_alloc ();
541
  if (!picture)
541
  if (!picture)
542
    return NULL;
542
    return NULL;
543
  size = avpicture_get_size (pix_fmt, width, height);
543
  size = avpicture_get_size (pix_fmt, width, height);
544
- 

Return to bug 636780