[libav-devel] [PATCH] h264: fix PCM intra-coded blocks in monochrome case

2011-08-19 Thread Diego Biurrun
From: Jeff Downs heydo...@somuchpressure.net Signed-off-by: Diego Biurrun di...@biurrun.de --- libavcodec/h264.c | 46 ++ 1 files changed, 34 insertions(+), 12 deletions(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index 4feef4b..5116ca2

Re: [libav-devel] [PATCH] h264: fix PCM intra-coded blocks in monochrome case

2011-08-19 Thread Ronald S. Bultje
Hi, On Aug 19, 2011 7:04 AM, Diego Biurrun di...@biurrun.de wrote: From: Jeff Downs heydo...@somuchpressure.net Signed-off-by: Diego Biurrun di...@biurrun.de --- libavcodec/h264.c | 46 ++ 1 files changed, 34 insertions(+), 12 deletions(-)

[libav-devel] [PATCH] h264: fix PCM intra-coded blocks in monochrome case

2011-08-17 Thread Diego Biurrun
From: Jeff Downs heydo...@somuchpressure.net Signed-off-by: Diego Biurrun di...@biurrun.de --- libavcodec/h264.c | 43 ++- 1 files changed, 30 insertions(+), 13 deletions(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index c2229ff..a9a6c8c

[libav-devel] [PATCH] h264: fix PCM intra-coded blocks in monochrome case

2011-08-17 Thread Diego Biurrun
From: Jeff Downs heydo...@somuchpressure.net Signed-off-by: Diego Biurrun di...@biurrun.de --- libavcodec/h264.c | 34 -- 1 files changed, 24 insertions(+), 10 deletions(-) diff --git a/libavcodec/h264.c b/libavcodec/h264.c index c2229ff..ef1aa3b 100644 ---

Re: [libav-devel] [PATCH] h264: fix PCM intra-coded blocks in monochrome case

2011-08-17 Thread Diego Biurrun
On Wed, Aug 17, 2011 at 05:52:53PM +0200, Diego Biurrun wrote: From: Jeff Downs heydo...@somuchpressure.net Discard this one, mistakenly sent without local changes. Diego ___ libav-devel mailing list libav-devel@libav.org

Re: [libav-devel] [PATCH] h264: fix PCM intra-coded blocks in monochrome case

2011-08-17 Thread Ronald S. Bultje
Hi, On Wed, Aug 17, 2011 at 9:17 AM, Diego Biurrun di...@biurrun.de wrote:             if(simple || !CONFIG_GRAY || !(s-flagsCODEC_FLAG_GRAY)){ +                uint16_t *tmp_cb, *tmp_cr;                 for (i = 0; i 8; i++) { -                    uint16_t *tmp_cb = (uint16_t*)(dest_cb +

Re: [libav-devel] [PATCH] h264: fix PCM intra-coded blocks in monochrome case

2011-08-17 Thread Diego Biurrun
On Wed, Aug 17, 2011 at 09:44:39AM -0700, Ronald S. Bultje wrote: On Wed, Aug 17, 2011 at 9:17 AM, Diego Biurrun di...@biurrun.de wrote:             if(simple || !CONFIG_GRAY || !(s-flagsCODEC_FLAG_GRAY)){ +                uint16_t *tmp_cb, *tmp_cr;                 for (i = 0; i 8; i++)

Re: [libav-devel] [PATCH] h264: fix PCM intra-coded blocks in monochrome case

2011-08-17 Thread Ronald S. Bultje
Hi, On Wed, Aug 17, 2011 at 9:57 AM, Diego Biurrun di...@biurrun.de wrote: On Wed, Aug 17, 2011 at 09:44:39AM -0700, Ronald S. Bultje wrote: On Wed, Aug 17, 2011 at 9:17 AM, Diego Biurrun di...@biurrun.de wrote:             if(simple || !CONFIG_GRAY || !(s-flagsCODEC_FLAG_GRAY)){ +