~medibuntu-maintainers/mplayer/medibuntu.precise

« back to all changes in this revision

Viewing changes to ffmpeg/libavcodec/fmtconvert.h

  • Committer: Package Import Robot
  • Author(s): Reinhard Tartler
  • Date: 2012-01-12 22:23:28 UTC
  • mfrom: (0.4.7 sid)
  • mto: This revision was merged to the branch mainline in revision 76.
  • Revision ID: package-import@ubuntu.com-20120112222328-8jqdyodym3p84ygu
Tags: 2:1.0~rc4.dfsg1+svn34540-1
* New upstream snapshot
* upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
                                      long len, int channels);
71
71
 
72
72
    /**
73
 
     * Convert an array of interleaved float to multiple arrays of float.
 
73
     * Convert multiple arrays of float to an array of interleaved float.
 
74
     *
 
75
     * @param dst destination array of interleaved float.
 
76
     *            constraints: 16-byte aligned
 
77
     * @param src source array of float arrays, one for each channel.
 
78
     *            constraints: 16-byte aligned
 
79
     * @param len number of elements to convert.
 
80
     *            constraints: multiple of 8
 
81
     * @param channels number of channels
74
82
     */
75
83
    void (*float_interleave)(float *dst, const float **src, unsigned int len,
76
84
                             int channels);