~ubuntu-branches/ubuntu/lucid/ffmpeg/lucid-updates

« back to all changes in this revision

Viewing changes to libavcodec/png.h

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-01-20 17:51:19 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090120175119-gu6kw1arv5tmf1vr
Tags: 3:0.svn20090119-1ubuntu1+unstripped1
* merge with the ubuntu.jaunty branch
* reenable x264 LP: #303537
* build against vdpau
* enable xvmc support

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
/* Mask to determine which pixels are valid in a pass */
65
65
extern const uint8_t ff_png_pass_mask[NB_PASSES];
66
66
 
67
 
extern void *ff_png_zalloc(void *opaque, unsigned int items,
68
 
                           unsigned int size);
69
 
 
70
 
extern void ff_png_zfree(void *opaque, void *ptr);
71
 
 
72
 
extern int ff_png_get_nb_channels(int color_type);
 
67
void *ff_png_zalloc(void *opaque, unsigned int items, unsigned int size);
 
68
 
 
69
void ff_png_zfree(void *opaque, void *ptr);
 
70
 
 
71
int ff_png_get_nb_channels(int color_type);
73
72
 
74
73
/* compute the row size of an interleaved pass */
75
 
extern int ff_png_pass_row_size(int pass, int bits_per_pixel, int width);
 
74
int ff_png_pass_row_size(int pass, int bits_per_pixel, int width);
76
75
 
77
76
#endif /* AVCODEC_PNG_H */