projects
/
platform
/
upstream
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3693608
)
Revert "wmapro: prevent division by zero when sample rate is unspecified"
author
Ronald S. Bultje
<rsbultje@gmail.com>
Fri, 3 Aug 2012 19:06:38 +0000
(12:06 -0700)
committer
Ronald S. Bultje
<rsbultje@gmail.com>
Fri, 3 Aug 2012 19:06:38 +0000
(12:06 -0700)
This reverts commit
36936080239ba9e162f9f5d0f722ce579cb606cf
. It was
already applied; no idea why it didn't error out while re-applying it.
libavcodec/wmaprodec.c
patch
|
blob
|
history
diff --git
a/libavcodec/wmaprodec.c
b/libavcodec/wmaprodec.c
index 5fcafa29a70acd4b596f0353f6ae53cb345a842c..699c1b7503f880ecc0e1447489ea6c1c2308c925 100644
(file)
--- a/
libavcodec/wmaprodec.c
+++ b/
libavcodec/wmaprodec.c
@@
-340,11
+340,6
@@
static av_cold int decode_init(AVCodecContext *avctx)
return AVERROR_INVALIDDATA;
}
- if (s->avctx->sample_rate <= 0) {
- av_log(avctx, AV_LOG_ERROR, "invalid sample rate\n");
- return AVERROR_INVALIDDATA;
- }
-
s->num_channels = avctx->channels;
if (s->num_channels < 0) {