summaryrefslogtreecommitdiff
path: root/libavcodec/atrac3.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-07-22 05:23:27 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-07-22 05:23:27 +0200
commit2f48dff4550e8224c7aae03525df273aaebce171 (patch)
treea627865f95382dc6e8e771d5d3e7368dbc967e16 /libavcodec/atrac3.c
parent86af2928839ba75d86422d27a2fe573514929502 (diff)
atrac3: switch to av_assert
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/atrac3.c')
-rw-r--r--libavcodec/atrac3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/atrac3.c b/libavcodec/atrac3.c
index 585b9972bc..7bc344c196 100644
--- a/libavcodec/atrac3.c
+++ b/libavcodec/atrac3.c
@@ -609,7 +609,7 @@ static void reverseMatrixing(float *su1, float *su2, int *pPrevCode, int *pCurrC
}
break;
default:
- assert(0);
+ av_assert1(0);
}
}
}