On Tue, Oct 23, 2012 at 05:43:52PM -0400, Justin Ruggles wrote:
> ---
>  libavcodec/truespeech.c |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletions(-)
> 
> diff --git a/libavcodec/truespeech.c b/libavcodec/truespeech.c
> index bbee146..efe5f45 100644
> --- a/libavcodec/truespeech.c
> +++ b/libavcodec/truespeech.c
> @@ -19,6 +19,7 @@
>   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 
> USA
>   */
>  
> +#include "libavutil/audioconvert.h"
>  #include "libavutil/intreadwrite.h"
>  #include "avcodec.h"
>  #include "dsputil.h"
> @@ -66,7 +67,8 @@ static av_cold int truespeech_decode_init(AVCodecContext * 
> avctx)
>          return AVERROR(EINVAL);
>      }
>  
> -    avctx->sample_fmt = AV_SAMPLE_FMT_S16;
> +    avctx->channel_layout = AV_CH_LAYOUT_MONO;
> +    avctx->sample_fmt     = AV_SAMPLE_FMT_S16;
>  
>      ff_dsputil_init(&c->dsp, avctx);
>  
> -- 

LGTM
_______________________________________________
libav-devel mailing list
libav-devel@libav.org
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to