[FFmpeg-trac] #3870(avcodec:new): Incorrect AVSampleFormat for sample_fmts_s16p (libavcodec/adpcm.c)

FFmpeg trac at avcodec.org
Tue Aug 19 18:50:07 CEST 2014


#3870: Incorrect AVSampleFormat for sample_fmts_s16p (libavcodec/adpcm.c)
-------------------------------------+-------------------------------------
             Reporter:  avclubn00b   |                     Type:  defect
               Status:  new          |                 Priority:  minor
            Component:  avcodec      |                  Version:  git-
             Keywords:  adpcm        |  master
  planar audio                       |               Blocked By:
             Blocking:               |  Reproduced by developer:  0
Analyzed by developer:  0            |
-------------------------------------+-------------------------------------
 As of git: ea97859c8c218b83ab747a7eabcb88ca446f6751 line 1533 in
 libavcodec/adpcm.c contains:


 {{{
 static const enum AVSampleFormat sample_fmts_s16p[] = { AV_SAMPLE_FMT_S16,
 }}}


 I believe it should contain:


 {{{
 static const enum AVSampleFormat sample_fmts_s16p[] = {
 AV_SAMPLE_FMT_S16P,
 }}}


 Note the trailing "P" for the planar format.

 I am truly sorry if this is wrong place to report this. I looked around on
 the site for sometime before deciding here was better than nowhere.

--
Ticket URL: <https://trac.ffmpeg.org/ticket/3870>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker


More information about the FFmpeg-trac mailing list