summaryrefslogtreecommitdiff
path: root/ffmpeg/libavformat/xwma.c
diff options
context:
space:
mode:
authorTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
committerTim Redfern <tim@eclectronics.org>2013-12-29 12:19:38 +0000
commitf7813a5324be39d13ab536c245d15dfc602a7849 (patch)
treefad99148b88823d34a5df2f0a25881a002eb291b /ffmpeg/libavformat/xwma.c
parentb7a5a477b8ff4d4e3028b9dfb9a9df0a41463f92 (diff)
basic type mechanism working
Diffstat (limited to 'ffmpeg/libavformat/xwma.c')
-rw-r--r--ffmpeg/libavformat/xwma.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/ffmpeg/libavformat/xwma.c b/ffmpeg/libavformat/xwma.c
index 0d40bd7..e629b3f 100644
--- a/ffmpeg/libavformat/xwma.c
+++ b/ffmpeg/libavformat/xwma.c
@@ -20,6 +20,7 @@
*/
#include <inttypes.h>
+#include <stdint.h>
#include "avformat.h"
#include "internal.h"
@@ -199,8 +200,10 @@ static int xwma_read_header(AVFormatContext *s)
/* Estimate the duration from the total number of output bytes. */
const uint64_t total_decoded_bytes = dpds_table[dpds_table_size - 1];
- if(!bytes_per_sample) {
- av_log(s, AV_LOG_ERROR, "bytes_per_sample is 0\n");
+ if (!bytes_per_sample) {
+ av_log(s, AV_LOG_ERROR,
+ "Invalid bits_per_coded_sample %d for %d channels\n",
+ st->codec->bits_per_coded_sample, st->codec->channels);
return AVERROR_INVALIDDATA;
}