~ubuntu-branches/ubuntu/vivid/gnash/vivid-proposed

« back to all changes in this revision

Viewing changes to libmedia/ffmpeg/VideoConverterFfmpeg.cpp

  • Committer: Package Import Robot
  • Author(s): Gabriele Giacone
  • Date: 2013-09-03 18:24:18 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20130903182418-kmdhv8e7s7dvib9a
Tags: 0.8.11~git20130903-1
* Git snapshot.
  + Embedded jemalloc copy has been replaced by system one.
    - Add libjemalloc-dev to B-D.
    - Disable jemalloc on hurd and kfreebsd-*. No longer disabled upstream.
  + ffmpeg/libav internal resampler replaced with external resampling library.
    - Add libavresample-dev to B-D.
* Add gnash-cygnal to gnash-dev runtime deps (Closes: #715067)
* Switch to dh compatibility 9.
  + Remove hardening-wrapper from B-D.
* Make Vcs-* fields canonical.
* Bump Standards-Version to 3.9.4 (no changes).
* Remove DMUA flag.

Show diffs side-by-side

added added

removed removed

Lines of Context:
162
162
#endif
163
163
 
164
164
 
165
 
    AVPicture srcpicture = {{src.data, 0, 0, 0}, {src.stride[0], 0, 0, 0}};
 
165
    AVPicture srcpicture = {{src.data, 0, 0, 0},
 
166
        {static_cast<int>(src.stride[0]), 0, 0, 0}};
166
167
    
167
168
    
168
169
    int bufsize = avpicture_get_size(dst_pixFmt, width, height);