[FFmpeg-trac] #213(undetermined:reopened): aac codec regression

FFmpeg trac at avcodec.org
Thu Mar 22 16:29:26 CET 2012


#213: aac codec regression
-------------------------------------+-------------------------------------
             Reporter:  ami_stuff    |                    Owner:
                 Type:  defect       |                   Status:  reopened
             Priority:  normal       |                Component:
              Version:  unspecified  |  undetermined
             Keywords:  aac mov      |               Resolution:
             Blocking:               |               Blocked By:
Analyzed by developer:  0            |  Reproduced by developer:  0
-------------------------------------+-------------------------------------

Comment (by ami_stuff):

 commenting out

 {{{
 //    if (HAVE_AMD3DNOW && (mm_flags & AV_CPU_FLAG_3DNOW))
 //        dsputil_init_3dnow(c, avctx, mm_flags);

     if (HAVE_AMD3DNOWEXT && (mm_flags & AV_CPU_FLAG_3DNOWEXT))
         dsputil_init_3dnow2(c, avctx, mm_flags);

     if (HAVE_SSE && (mm_flags & AV_CPU_FLAG_SSE))
         dsputil_init_sse(c, avctx, mm_flags);

     if (mm_flags & AV_CPU_FLAG_SSE2)
         dsputil_init_sse2(c, avctx, mm_flags);
 }}}

 doesn't help, but when I comment out

 {{{
     if (HAVE_AMD3DNOWEXT && (mm_flags & AV_CPU_FLAG_3DNOWEXT))
         dsputil_init_3dnow2(c, avctx, mm_flags);

 //    if (HAVE_SSE && (mm_flags & AV_CPU_FLAG_SSE))
 //        dsputil_init_sse(c, avctx, mm_flags);

     if (mm_flags & AV_CPU_FLAG_SSE2)
         dsputil_init_sse2(c, avctx, mm_flags);
 }}}

 I get correct output.

-- 
Ticket URL: <https://ffmpeg.org/trac/ffmpeg/ticket/213#comment:14>
FFmpeg <http://ffmpeg.org>
FFmpeg issue tracker


More information about the FFmpeg-trac mailing list