diff options
author | Michael Niedermayer | 2012-08-21 06:14:29 +0200 |
---|---|---|
committer | Michael Niedermayer | 2012-08-21 06:14:29 +0200 |
commit | 19a61bf39d3964eb332d141d1bf9a6847b6bb856 (patch) | |
tree | 9de4e71af372ed50342ff643aaf872bc21b29d38 /libavformat/rdt.c | |
parent | 85a576775e1da9f22058aecd1924762e62a29867 (diff) |
rmdec: pass mime type to ff_rm_read_mdpr_codecdata()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/rdt.c')
-rw-r--r-- | libavformat/rdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rdt.c b/libavformat/rdt.c index 24d901cc9b..6404a5d5e3 100644 --- a/libavformat/rdt.c +++ b/libavformat/rdt.c @@ -176,7 +176,7 @@ rdt_load_mdpr (PayloadContext *rdt, AVStream *st, int rule_nr) size = rdt->mlti_data_size; avio_seek(&pb, 0, SEEK_SET); } - if (ff_rm_read_mdpr_codecdata(rdt->rmctx, &pb, st, rdt->rmst[st->index], size) < 0) + if (ff_rm_read_mdpr_codecdata(rdt->rmctx, &pb, st, rdt->rmst[st->index], size, NULL) < 0) return -1; return 0; |