[FFmpeg-soc] [soc]: r876 - dirac/libavcodec/dirac.c
marco
subversion at mplayerhq.hu
Thu Aug 16 16:20:01 CEST 2007
Author: marco
Date: Thu Aug 16 16:20:01 2007
New Revision: 876
Log:
Fix indentation
Modified:
dirac/libavcodec/dirac.c
Modified: dirac/libavcodec/dirac.c
==============================================================================
--- dirac/libavcodec/dirac.c (original)
+++ dirac/libavcodec/dirac.c Thu Aug 16 16:20:01 2007
@@ -1557,14 +1557,14 @@ static void decode_component(DiracContex
static void dirac_subband_idwt_reorder(DiracContext *s, int16_t *data,
int16_t *synth, int level) {
int x, y;
- int width = subband_width(s, level);
- int height = subband_height(s, level);
- int synth_width = width << 1;
+ int width = subband_width(s, level);
+ int height = subband_height(s, level);
+ int synth_width = width << 1;
int16_t *synth_line = synth;
- int16_t *line_ll = data;
- int16_t *line_lh = data + height * s->padded_width;
- int16_t *line_hl = data + width;
- int16_t *line_hh = data + height * s->padded_width + width;
+ int16_t *line_ll = data;
+ int16_t *line_lh = data + height * s->padded_width;
+ int16_t *line_hl = data + width;
+ int16_t *line_hh = data + height * s->padded_width + width;
/* Reorder the coefficients. */
for (y = 0; y < height; y++) {
More information about the FFmpeg-soc
mailing list