Re: [FFmpeg-devel] Broken endian indication in pixfmt list

2014-11-05 Thread Michael Niedermayer
On Wed, Nov 05, 2014 at 03:37:04AM +0100, wm4 wrote: > On Wed, 5 Nov 2014 03:19:04 +0100 > Michael Niedermayer wrote: > > > On Wed, Nov 05, 2014 at 02:59:45AM +0100, wm4 wrote: > > > On Wed, 5 Nov 2014 02:44:12 +0100 > > > Michael Niedermayer wrote: > > > > > > > On Wed, Nov 05, 2014 at 02:13:2

Re: [FFmpeg-devel] Broken endian indication in pixfmt list

2014-11-04 Thread wm4
On Wed, 5 Nov 2014 03:19:04 +0100 Michael Niedermayer wrote: > On Wed, Nov 05, 2014 at 02:59:45AM +0100, wm4 wrote: > > On Wed, 5 Nov 2014 02:44:12 +0100 > > Michael Niedermayer wrote: > > > > > On Wed, Nov 05, 2014 at 02:13:29AM +0100, wm4 wrote: > > > > The header pixfmt.h contains the follow

Re: [FFmpeg-devel] Broken endian indication in pixfmt list

2014-11-04 Thread Michael Niedermayer
On Wed, Nov 05, 2014 at 02:59:45AM +0100, wm4 wrote: > On Wed, 5 Nov 2014 02:44:12 +0100 > Michael Niedermayer wrote: > > > On Wed, Nov 05, 2014 at 02:13:29AM +0100, wm4 wrote: > > > The header pixfmt.h contains the following comment in the pixel format > > > list doxygen: > > > > > > * @note >

Re: [FFmpeg-devel] Broken endian indication in pixfmt list

2014-11-04 Thread wm4
On Wed, 5 Nov 2014 02:44:12 +0100 Michael Niedermayer wrote: > On Wed, Nov 05, 2014 at 02:13:29AM +0100, wm4 wrote: > > The header pixfmt.h contains the following comment in the pixel format > > list doxygen: > > > > * @note > > * Make sure that all newly added big-endian formats have (pix_fmt

Re: [FFmpeg-devel] Broken endian indication in pixfmt list

2014-11-04 Thread Michael Niedermayer
On Wed, Nov 05, 2014 at 02:13:29AM +0100, wm4 wrote: > The header pixfmt.h contains the following comment in the pixel format > list doxygen: > > * @note > * Make sure that all newly added big-endian formats have (pix_fmt & 1) == 1 > * and that all newly added little-endian formats have (pix_fm

[FFmpeg-devel] Broken endian indication in pixfmt list

2014-11-04 Thread wm4
The header pixfmt.h contains the following comment in the pixel format list doxygen: * @note * Make sure that all newly added big-endian formats have (pix_fmt & 1) == 1 * and that all newly added little-endian formats have (pix_fmt & 1) == 0. * This allows simpler detection of big vs little-en