diff options
author | Mashiat Sarker Shakkhar <mashiat.sarker@gmail.com> | 2012-05-02 08:43:36 -0700 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2012-05-02 18:45:29 +0200 |
commit | c8370e6e35e528a703b034824d0aad8fbe08c476 (patch) | |
tree | 3dfe946a4e8188d1bc8d2af5bd38eeaac781f4cc | |
parent | f1aa859728f662850a7d8c742c6a74fa647ab1c2 (diff) | |
download | ffmpeg-c8370e6e35e528a703b034824d0aad8fbe08c476.tar.gz |
WMAL cosmetics: fix indentation
Signed-off-by: Kostya Shishkov <kostya.shishkov@gmail.com>
-rw-r--r-- | libavcodec/wmalosslessdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/wmalosslessdec.c b/libavcodec/wmalosslessdec.c index 913271e216..e2e2997231 100644 --- a/libavcodec/wmalosslessdec.c +++ b/libavcodec/wmalosslessdec.c @@ -1212,7 +1212,7 @@ static int decode_packet(AVCodecContext *avctx, void *data, int *got_frame_ptr, /* decode the cross packet frame if it is valid */ if (num_bits_prev_frame < remaining_packet_bits && !s->packet_loss) - decode_frame(s); + decode_frame(s); } else if (s->num_saved_bits - s->frame_offset) { av_dlog(avctx, "ignoring %x previously saved bits\n", s->num_saved_bits - s->frame_offset); |