ref: b294b3e422dafe6f2eb7f5173ac97b955ada978d
parent: 0af90030c9ead6d6874a454f7183b8c4b8197f60
author: Paul Brossier <piem@piem.org>
date: Fri Dec 6 04:21:10 EST 2013
src/io/source_avcodec.c: check new_ arguments are valid
--- a/src/io/source_avcodec.c
+++ b/src/io/source_avcodec.c
@@ -62,10 +62,17 @@
aubio_source_avcodec_t * new_aubio_source_avcodec(char_t * path, uint_t samplerate, uint_t hop_size) {
aubio_source_avcodec_t * s = AUBIO_NEW(aubio_source_avcodec_t);
int err;
-
if (path == NULL) {
AUBIO_ERR("Aborted opening null path\n");
- return NULL;
+ goto beach;
+ }
+ if ((sint_t)samplerate < 0) {
+ AUBIO_ERR("Can not open %s with samplerate %d\n", path, samplerate);
+ goto beach;
+ }
+ if ((sint_t)hop_size <= 0) {
+ AUBIO_ERR("Can not open %s with hop_size %d\n", path, hop_size);
+ goto beach;
}
s->hop_size = hop_size;