comparison flacdec.c @ 9055:15515243f476 libavcodec

cosmetics: line wrap and indentation after last commit.
author jbr
date Thu, 26 Feb 2009 02:30:29 +0000
parents 7eedb5796dd8
children 39425084bd5c
comparison
equal deleted inserted replaced
9054:7eedb5796dd8 9055:15515243f476
139 return 0; 139 return 0;
140 140
141 if (!ff_flac_is_extradata_valid(avctx, &format, &streaminfo)) 141 if (!ff_flac_is_extradata_valid(avctx, &format, &streaminfo))
142 return -1; 142 return -1;
143 143
144 /* initialize based on the demuxer-supplied streamdata header */ 144 /* initialize based on the demuxer-supplied streamdata header */
145 ff_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s, 145 ff_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s, streaminfo);
146 streaminfo); 146 allocate_buffers(s);
147 allocate_buffers(s);
148 147
149 return 0; 148 return 0;
150 } 149 }
151 150
152 static void dump_headers(AVCodecContext *avctx, FLACStreaminfo *s) 151 static void dump_headers(AVCodecContext *avctx, FLACStreaminfo *s)