[libav-devel] [PATCH 3/9] pixdesc: add functions for accessing pixel format descriptors.

2012-10-06 Thread Anton Khirnov
Make av_pix_fmt_descriptors table static on next major bump. Making the table public is dangerous, since the caller has no way to know how large it actually is. It also prevents adding new fields to AVPixFmtDescriptor without a major bump. --- libavutil/pixdesc.c | 30

Re: [libav-devel] [PATCH 3/9] pixdesc: add functions for accessing pixel format descriptors.

2012-10-06 Thread Luca Barbato
On 10/06/2012 06:58 PM, Anton Khirnov wrote: Make av_pix_fmt_descriptors table static on next major bump. Making the table public is dangerous, since the caller has no way to know how large it actually is. It also prevents adding new fields to AVPixFmtDescriptor without a major bump. ---