summaryrefslogtreecommitdiff
path: root/libavformat/sol.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavformat/sol.c')
-rw-r--r--libavformat/sol.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/libavformat/sol.c b/libavformat/sol.c
index 038feeaac6..eed1b38f32 100644
--- a/libavformat/sol.c
+++ b/libavformat/sol.c
@@ -131,13 +131,9 @@ static int sol_read_packet(AVFormatContext *s,
if (url_feof(&s->pb))
return -EIO;
- if (av_new_packet(pkt, MAX_SIZE))
- return -EIO;
+ ret= av_get_packet(&s->pb, pkt, MAX_SIZE);
pkt->stream_index = 0;
- ret = get_buffer(&s->pb, pkt->data, pkt->size);
- if (ret < 0)
- av_free_packet(pkt);
/* note: we need to modify the packet size here to handle the last
packet */
pkt->size = ret;