summaryrefslogtreecommitdiff
path: root/libavformat/westwood_aud.c
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-01-24 11:28:02 -0500
committerJustin Ruggles <justin.ruggles@gmail.com>2012-01-24 14:13:47 -0500
commit0e6a8b5cf76f830923c85730e6369ca46cfe834c (patch)
tree6f93777e456b6011d9ef64767aaa475b0ea74f4e /libavformat/westwood_aud.c
parent98c290cc0828a25b04259f2b408054aaeca016e4 (diff)
aud: set pts_wrap_bits to 64.
Time stamps are not read from the bitstream, so no wrapping is needed.
Diffstat (limited to 'libavformat/westwood_aud.c')
-rw-r--r--libavformat/westwood_aud.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/westwood_aud.c b/libavformat/westwood_aud.c
index 21d16f7385..27dc3fae63 100644
--- a/libavformat/westwood_aud.c
+++ b/libavformat/westwood_aud.c
@@ -117,7 +117,7 @@ static int wsaud_read_header(AVFormatContext *s,
st = avformat_new_stream(s, NULL);
if (!st)
return AVERROR(ENOMEM);
- avpriv_set_pts_info(st, 33, 1, wsaud->audio_samplerate);
+ avpriv_set_pts_info(st, 64, 1, wsaud->audio_samplerate);
st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
st->codec->codec_id = wsaud->audio_type;
st->codec->codec_tag = 0; /* no tag */