[FFmpeg-trac] #1174(undetermined:new): iPod / iPad plays both audio tracks simultaneously

FFmpeg trac at avcodec.org
Sat Apr 7 15:52:32 CEST 2012


#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


More information about the FFmpeg-trac mailing list