# HG changeset patch # User stefano # Date 1237755668 0 # Node ID 49340eb6f96f924147548457430a9c0186ebf146 # Parent 8aa63f696237de7ea05211df9bec4966a41dd990 Export to pixdesc.h the av_pix_fmt_descriptors array. diff -r 8aa63f696237 -r 49340eb6f96f pixdesc.c --- a/pixdesc.c Sun Mar 22 20:19:20 2009 +0000 +++ b/pixdesc.c Sun Mar 22 21:01:08 2009 +0000 @@ -22,7 +22,7 @@ #include "libavutil/pixfmt.h" #include "pixdesc.h" -static const AVPixFmtDescriptor pix_fmt_desc[PIX_FMT_NB] = { +const AVPixFmtDescriptor av_pix_fmt_descriptors[PIX_FMT_NB] = { [PIX_FMT_YUV422P] = { .name = "yuv422p", .nb_channels = 3, diff -r 8aa63f696237 -r 49340eb6f96f pixdesc.h --- a/pixdesc.h Sun Mar 22 20:19:20 2009 +0000 +++ b/pixdesc.h Sun Mar 22 21:01:08 2009 +0000 @@ -67,6 +67,10 @@ #define PIX_FMT_PAL 2 ///< Pixel format has a palette in data[1], values are indexes in this palette. #define PIX_FMT_BITSTREAM 4 ///< All values of a component are bit-wise packed end to end. +/** + * The array of all the pixel format descriptors. + */ +extern const AVPixFmtDescriptor av_pix_fmt_descriptors[]; static inline void read_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4], AVPixFmtDescriptor *desc, int x, int y, int c, int w) {