Skip to content

Commit c0f0b9e

Browse files
committed
Add missing error codes for AAC and LC3plus codecs
1 parent a8b10fe commit c0f0b9e

File tree

2 files changed

+16
-10
lines changed

2 files changed

+16
-10
lines changed

.github/spellcheck-wordlist.txt

+1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ libldac
184184
libopenaptx
185185
LLAC
186186
MPF
187+
MPS
187188
mtx
188189
ncurses
189190
nmemb

src/utils.c

+15-10
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,8 @@ const char *aacdec_strerror(AAC_DECODER_ERROR err) {
171171
return "Success";
172172
case AAC_DEC_OUT_OF_MEMORY:
173173
return "Out of memory";
174+
case AAC_DEC_UNKNOWN:
175+
return "Unknown error";
174176
case AAC_DEC_TRANSPORT_SYNC_ERROR:
175177
return "Transport sync error";
176178
case AAC_DEC_NOT_ENOUGH_BITS:
@@ -197,6 +199,8 @@ const char *aacdec_strerror(AAC_DECODER_ERROR err) {
197199
return "Unsupported parameter";
198200
case AAC_DEC_NEED_TO_RESTART:
199201
return "Restart required";
202+
case AAC_DEC_OUTPUT_BUFFER_TOO_SMALL:
203+
return "Output buffer too small";
200204
case AAC_DEC_TRANSPORT_ERROR:
201205
return "Transport error";
202206
case AAC_DEC_PARSE_ERROR:
@@ -264,14 +268,15 @@ const char *aacenc_strerror(AACENC_ERROR err) {
264268
return "Transport library initialization error";
265269
case AACENC_INIT_META_ERROR:
266270
return "Metadata library initialization error";
271+
case AACENC_INIT_MPS_ERROR:
272+
return "MPS library initialization error";
267273
case AACENC_ENCODE_ERROR:
268274
return "Encoding error";
269275
case AACENC_ENCODE_EOF:
270276
return "End of file";
271-
default:
272-
debug("Unknown error code: %#x", err);
273-
return "Unknown error";
274277
}
278+
debug("Unknown error code: %#x", err);
279+
return "Unknown error";
275280
}
276281
#endif
277282

@@ -322,12 +327,13 @@ const char *lc3plus_strerror(LC3PLUS_Error err) {
322327
return "Invalid cutoff frequency";
323328
case LC3PLUS_PADDING_ERROR:
324329
return "Padding error";
330+
case LC3PLUS_LFE_MODE_NOT_SUPPORTED:
331+
return "LFE not supported";
325332
case FRAMESIZE_ERROR:
326333
return "Framesize error";
327-
default:
328-
debug("Unknown error code: %#x", err);
329-
return "Unknown error";
330334
}
335+
debug("Unknown error code: %#x", err);
336+
return "Unknown error";
331337
}
332338
#endif
333339

@@ -400,10 +406,9 @@ const char *ldacBT_strerror(int err) {
400406
return "EQMID limited";
401407
case LDACBT_ERR_DEC_CONFIG_UPDATED:
402408
return "Configuration updated";
403-
default:
404-
debug("Unknown error code: %#x (API: %u, handle: %u, block: %u)",
405-
err, LDACBT_API_ERR(err), LDACBT_HANDLE_ERR(err), LDACBT_BLOCK_ERR(err));
406-
return "Unknown error";
407409
}
410+
debug("Unknown error code: %#x (API: %u, handle: %u, block: %u)",
411+
err, LDACBT_API_ERR(err), LDACBT_HANDLE_ERR(err), LDACBT_BLOCK_ERR(err));
412+
return "Unknown error";
408413
}
409414
#endif

0 commit comments

Comments
 (0)