summaryrefslogtreecommitdiff
path: root/libavcodec/qdm2.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-12-30 03:18:46 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-02-03 19:59:00 +0100
commitd106679fb5261914ef92ad8aa01baa80e9911a57 (patch)
tree2df12a52a5e33777fffcd01bae07d3a09a28ed2f /libavcodec/qdm2.c
parentccfd8cffe867d534447dbc5beb96ff39e65e2791 (diff)
qdm2: disable superblocktype_2_3==0 code
The code is untested and contained bugs, we need a sample if any files use this branch. Suggested-by: Roberto Togni Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/qdm2.c')
-rw-r--r--libavcodec/qdm2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/qdm2.c b/libavcodec/qdm2.c
index 9bc0720140..4deea07baf 100644
--- a/libavcodec/qdm2.c
+++ b/libavcodec/qdm2.c
@@ -649,7 +649,8 @@ static void fill_coding_method_array (sb_int8_array tone_level_idx, sb_int8_arra
if (!superblocktype_2_3) {
/* This case is untested, no samples available */
- SAMPLES_NEEDED
+ av_log_ask_for_sample(NULL, "!superblocktype_2_3");
+ return;
for (ch = 0; ch < nb_channels; ch++)
for (sb = 0; sb < 30; sb++) {
for (j = 1; j < 63; j++) { // The loop only iterates to 63 so the code doesn't overflow the buffer