~ubuntu-branches/ubuntu/precise/ffmpeg-debian/precise

« back to all changes in this revision

Viewing changes to libavcodec/imgconvert_template.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 09:20:53 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120092053-izz63p40hc98qfgp
Tags: 3:0.svn20090119-1ubuntu1
* merge from debian. LP: #318501
* new version fixes CVE-2008-3230, LP: #253767

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
 */
21
21
 
22
 
/* This header intentionally has no multiple inclusion guards. It is meant to
23
 
 * be included multiple times and generates different code depending on the
24
 
 * value of certain #defines. */
25
 
 
26
22
#ifndef RGB_OUT
27
23
#define RGB_OUT(d, r, g, b) RGBA_OUT(d, r, g, b, 0xff)
28
24
#endif