~ubuntu-branches/debian/experimental/libav/experimental

« back to all changes in this revision

Viewing changes to libavcodec/libwebpenc.c

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2014-08-10 09:45:02 UTC
  • mfrom: (1.3.14)
  • mto: (1.3.16)
  • mto: This revision was merged to the branch mainline in revision 41.
  • Revision ID: package-import@ubuntu.com-20140810094502-mmdupdml8tixclg2
Tags: upstream-11~alpha1
ImportĀ upstreamĀ versionĀ 11~alpha1

Show diffs side-by-side

added added

removed removed

Lines of Context:
161
161
            ret = av_frame_get_buffer(alt_frame, 32);
162
162
            if (ret < 0)
163
163
                goto end;
164
 
            av_image_copy(alt_frame->data, alt_frame->linesize,
165
 
                          frame->data, frame->linesize,
166
 
                          avctx->pix_fmt, frame->width, frame->height);
 
164
            av_frame_copy(alt_frame, frame);
167
165
            frame = alt_frame;
168
166
        }
169
167
        pic->use_argb  = 0;