diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2008-11-17 14:20:00 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2008-11-17 14:20:00 +0000 |
commit | fcc995a533ddf0d892348c76244bd667949a3223 (patch) | |
tree | cbfa83bcbe937ce30297e522ec047703badb69f5 /libavformat/rdt.c | |
parent | 074bfa7de756e42523093bbf7ee5bb9772043d55 (diff) | |
download | ffmpeg-fcc995a533ddf0d892348c76244bd667949a3223.tar.gz |
Add ByteIOContext argument to public ff_rm_* functions so that we can
specify the data source as function argument instead of in s->pb before
calling the function. Discussed in ML thread "[PATCH] fix small memleak
in rdt.c".
Originally committed as revision 15849 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r-- | libavformat/rdt.c | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c index 0982d62a1f..9561859678 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -159,8 +159,7 @@ rdt_load_mdpr (PayloadContext *rdt, AVStream *st, int rule_nr) size = rdt->mlti_data_size; url_fseek(pb, 0, SEEK_SET); } - rdt->rmctx->pb = pb; - if (ff_rm_read_mdpr_codecdata(rdt->rmctx, st, size) < 0) + if (ff_rm_read_mdpr_codecdata(rdt->rmctx, pb, st, size) < 0) return -1; url_close_buf(pb); @@ -259,7 +258,7 @@ rdt_parse_packet (PayloadContext *rdt, AVStream *st, const uint8_t *buf, int len, int flags) { int seq = 1, res; - ByteIOContext *pb = rdt->rmctx->pb; + ByteIOContext *pb; RMContext *rm = rdt->rmctx->priv_data; if (rm->audio_pkt_cnt == 0) { @@ -267,8 +266,7 @@ rdt_parse_packet (PayloadContext *rdt, AVStream *st, url_open_buf (&pb, buf, len, URL_RDONLY); flags = (flags & PKT_FLAG_KEY) ? 2 : 0; - rdt->rmctx->pb = pb; - res = ff_rm_parse_packet (rdt->rmctx, st, len, pkt, + res = ff_rm_parse_packet (rdt->rmctx, pb, st, len, pkt, &seq, &flags, timestamp); pos = url_ftell(pb); url_close_buf (pb); @@ -277,14 +275,13 @@ rdt_parse_packet (PayloadContext *rdt, AVStream *st, if (rm->audio_pkt_cnt > 0 && st->codec->codec_id == CODEC_ID_AAC) { memcpy (rdt->buffer, buf + pos, len - pos); - url_open_buf (&pb, rdt->buffer, len - pos, URL_RDONLY); - rdt->rmctx->pb = pb; + url_open_buf (&rdt->rmctx->pb, rdt->buffer, len - pos, URL_RDONLY); } } else { - ff_rm_retrieve_cache (rdt->rmctx, st, pkt); + ff_rm_retrieve_cache (rdt->rmctx, rdt->rmctx->pb, st, pkt); if (rm->audio_pkt_cnt == 0 && st->codec->codec_id == CODEC_ID_AAC) - url_close_buf (pb); + url_close_buf (rdt->rmctx->pb); } pkt->stream_index = st->index; pkt->pts = *timestamp; |