#1174: iPod / iPad plays both audio tracks simultaneously -------------------------------------+------------------------------------- Reporter: TonyPh12345 | Owner: Type: defect | Status: new Priority: normal | Component: Version: 0.10.2 | undetermined Keywords: | Resolution: Blocking: | Blocked By: Analyzed by developer: 0 | Reproduced by developer: 0 -------------------------------------+-------------------------------------
Comment (by TonyPh12345): Oh, interesting. Just as a quick & dirty HACK, all I needed to do was change (in utils.c at line 3138) if(st->cur_dts && st->cur_dts != AV_NOPTS_VALUE && ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) && st->cur_dts >= pkt->dts) || st->cur_dts > pkt->dts)){ to if(st->cur_dts && st->cur_dts != AV_NOPTS_VALUE && ((!(s->oformat->flags & AVFMT_TS_NONSTRICT) && st->cur_dts > pkt->dts) || st->cur_dts > pkt->dts)){ (changed the equality to an inequality) to get past the error in the GIT clone. I realize that's not a "Fix," but it gets me where I need to be. -- Ticket URL: <https://ffmpeg.org/trac/ffmpeg/ticket/1174#comment:6> FFmpeg <http://ffmpeg.org> FFmpeg issue tracker _______________________________________________ FFmpeg-trac mailing list FFmpeg-trac@avcodec.org http://avcodec.org/mailman/listinfo/ffmpeg-trac