summaryrefslogtreecommitdiff
path: root/libavformat/amr.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/amr.c')
-rw-r--r--libavformat/amr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavformat/amr.c b/libavformat/amr.c
index 21f41b7619..64c387b5ee 100644
--- a/libavformat/amr.c
+++ b/libavformat/amr.c
@@ -154,7 +154,7 @@ static int amr_read_packet(AVFormatContext *s,
return AVERROR_IO;
}
pkt->stream_index = 0;
-
+ pkt->pos= url_ftell(&s->pb);
pkt->data[0]=toc;
read = get_buffer(&s->pb, pkt->data+1, size);
@@ -189,6 +189,7 @@ static int amr_read_packet(AVFormatContext *s,
}
pkt->stream_index = 0;
+ pkt->pos= url_ftell(&s->pb);
pkt->data[0]=toc;
read = get_buffer(&s->pb, pkt->data+1, size-1);