Browse Source

cosmetics: line wrap and indentation after last commit.

Originally committed as revision 17603 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Justin Ruggles 17 years ago
parent
commit
26adc8d086
1 changed files with 3 additions and 4 deletions
  1. +3
    -4
      libavcodec/flacdec.c

+ 3
- 4
libavcodec/flacdec.c View File

@@ -141,10 +141,9 @@ static av_cold int flac_decode_init(AVCodecContext *avctx)
if (!ff_flac_is_extradata_valid(avctx, &format, &streaminfo))
return -1;

/* initialize based on the demuxer-supplied streamdata header */
ff_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s,
streaminfo);
allocate_buffers(s);
/* initialize based on the demuxer-supplied streamdata header */
ff_flac_parse_streaminfo(avctx, (FLACStreaminfo *)s, streaminfo);
allocate_buffers(s);

return 0;
}


Loading…
Cancel
Save