diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-10-27 16:57:35 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-10-27 16:57:35 +0000 |
commit | d3067047e71e0cc975fb85be5a0f5c3b50ed6969 (patch) | |
tree | 619558f3be8a5f6e9a714c144080c69c8c121e0b /libavcodec/pnm.c | |
parent | bc8964ef204154c98a0995f1c926fb72dec10c65 (diff) | |
download | ffmpeg-d3067047e71e0cc975fb85be5a0f5c3b50ed6969.tar.gz |
whitespace cosmetics: K&R coding style, prettyprinting
Originally committed as revision 20381 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/pnm.c')
-rw-r--r-- | libavcodec/pnm.c | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/libavcodec/pnm.c b/libavcodec/pnm.c index 134e9f6065..a081f34fa8 100644 --- a/libavcodec/pnm.c +++ b/libavcodec/pnm.c @@ -18,6 +18,7 @@ * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ + #include "avcodec.h" #include "pnm.h" @@ -32,10 +33,10 @@ static void pnm_get(PNMContext *sc, char *str, int buf_size) int c; /* skip spaces and comments */ - for(;;) { + for (;;) { c = *sc->bytestream++; if (c == '#') { - do { + do { c = *sc->bytestream++; } while (c != '\n' && sc->bytestream < sc->bytestream_end); } else if (!pnm_space(c)) { @@ -52,7 +53,8 @@ static void pnm_get(PNMContext *sc, char *str, int buf_size) *s = '\0'; } -int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s){ +int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s) +{ char buf1[32], tuple_type[32]; int h, w, depth, maxval; @@ -67,12 +69,12 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s){ } else if (!strcmp(buf1, "P6")) { avctx->pix_fmt = PIX_FMT_RGB24; } else if (!strcmp(buf1, "P7")) { - w = -1; - h = -1; + w = -1; + h = -1; maxval = -1; - depth = -1; + depth = -1; tuple_type[0] = '\0'; - for(;;) { + for (;;) { pnm_get(s, buf1, sizeof(buf1)); if (!strcmp(buf1, "WIDTH")) { pnm_get(s, buf1, sizeof(buf1)); @@ -98,7 +100,7 @@ int ff_pnm_decode_header(AVCodecContext *avctx, PNMContext * const s){ if (w <= 0 || h <= 0 || maxval <= 0 || depth <= 0 || tuple_type[0] == '\0' || avcodec_check_dimensions(avctx, w, h)) return -1; - avctx->width = w; + avctx->width = w; avctx->height = h; if (depth == 1) { if (maxval == 1) |