On 12/15/18, James Almer <jamr...@gmail.com> wrote: >> ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com >> <http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog>> | Thu Dec 13 23:51:02 >> 2018 +0100| [e5a0013c4a6248fe7e2a651db1fda6b9bb2cd743] | committer: Paul B >> Mahol >> >> avformat/mxfdec: fix error check in macro >> >> Fixes #6750. >> >> >/http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e5a0013c4a6248fe7e2a651db1fda6b9bb2cd743 >> /--- >> >> libavformat/mxfdec.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/libavformat/mxfdec.c b/libavformat/mxfdec.c >> index 887645d28b..f5e3a736e5 100644 >> --- a/libavformat/mxfdec.c >> +++ b/libavformat/mxfdec.c >> @@ -2590,7 +2590,7 @@ static int64_t mxf_timestamp_to_int64(uint64_t >> timestamp) >> >> #define SET_TS_METADATA(pb, name, var, str) do { \ >> var = avio_rb64(pb); \ >> - if ((ret = avpriv_dict_set_timestamp(&s->metadata, name, >> mxf_timestamp_to_int64(var)) < 0)) \ >> + if ((ret = avpriv_dict_set_timestamp(&s->metadata, name, >> mxf_timestamp_to_int64(var))) < 0) \ >> return ret; \ >> } while (0) > > This broke several mxf tests. > > copy-trac4914 > lavf-mxf > lavf-mxf_d10 > lavf-mxf_dv25 > lavf-mxf_dvcpro50 > lavf-mxf_opatom > lavf-mxf_opatom_audio
Can not reproduce. Is this MSVS only thing? _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel