diff --git a/libavformat/avidec.c b/libavformat/avidec.c
index 361a52ff3648904a087758ff5e23e2e6b6fc15b3..0d36099337133c5255edf58ddc5403a63671acf0 100644
--- a/libavformat/avidec.c
+++ b/libavformat/avidec.c
@@ -419,7 +419,11 @@ static int avi_read_packet(AVFormatContext *s, AVPacket *pkt)
                 ast = st->priv_data;
 
                 /* XXX: how to handle B frames in avi ? */
-                pkt->pts = ((int64_t)ast->frame_offset * ast->scale* AV_TIME_BASE) / ast->rate;
+                if(st->codec.codec_type == CODEC_TYPE_VIDEO)
+                    pkt->pts = ((int64_t)ast->frame_offset * ast->scale* AV_TIME_BASE) / ast->rate;
+                else //FIXME this is proably not correct for all weird avis
+                    pkt->pts = ((int64_t)ast->frame_offset * ast->scale* AV_TIME_BASE) / (ast->rate * st->codec.block_align);
+//printf("%Ld %d %d %d %d\n", pkt->pts, ast->frame_offset, ast->scale,  AV_TIME_BASE,  ast->rate);
                 pkt->stream_index = n;
                 /* FIXME: We really should read index for that */
                 if (st->codec.codec_type == CODEC_TYPE_VIDEO) {