From d5b3a86393197606faa8d0afea5841d97de11cb4 Mon Sep 17 00:00:00 2001
From: Benjamin Larsson <banan@ludd.ltu.se>
Date: Tue, 28 Oct 2008 15:20:52 +0000
Subject: [PATCH] Fix compilation, remove stray ;

Originally committed as revision 15735 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/dca.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/dca.c b/libavcodec/dca.c
index f550483f477..e878527cdb6 100644
--- a/libavcodec/dca.c
+++ b/libavcodec/dca.c
@@ -248,7 +248,7 @@ static int dca_parse_frame_header(DCAContext * s)
     s->sample_rate       = dca_sample_rates[get_bits(&s->gb, 4)];
     if (!s->sample_rate)
         return -1;
-    s->bit_rate_index;   = get_bits(&s->gb, 5);
+    s->bit_rate_index    = get_bits(&s->gb, 5);
     s->bit_rate          = dca_bit_rates[s->bit_rate_index];
     if (!s->bit_rate)
         return -1;
-- 
GitLab