summaryrefslogtreecommitdiff
path: root/libavcodec/dv.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-02-26 15:40:08 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-02-26 15:40:08 +0000
commit0403f791b3fd98c84999243cbf19989ed0025bf8 (patch)
tree4b2f35d075fff1a289c0df4dbdadafee7657e5ec /libavcodec/dv.c
parentd676478c8d29a48f67526afef44c323b74946488 (diff)
remove wrong assert()
Originally committed as revision 5067 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r--libavcodec/dv.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c
index 2d5aa6cd8e..f132217ee5 100644
--- a/libavcodec/dv.c
+++ b/libavcodec/dv.c
@@ -342,7 +342,6 @@ static void dv_decode_ac(GetBitContext *gb, BlockInfo *mb, DCTELEM *block)
if (pos >= 64)
break;
- assert(level);
pos1 = scan_table[pos];
block[pos1] = level << shift_table[pos1];