annotate ffmpeg/libavcodec/audioconvert.c @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 /*
yading@10 2 * audio conversion
yading@10 3 * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
yading@10 4 *
yading@10 5 * This file is part of FFmpeg.
yading@10 6 *
yading@10 7 * FFmpeg is free software; you can redistribute it and/or
yading@10 8 * modify it under the terms of the GNU Lesser General Public
yading@10 9 * License as published by the Free Software Foundation; either
yading@10 10 * version 2.1 of the License, or (at your option) any later version.
yading@10 11 *
yading@10 12 * FFmpeg is distributed in the hope that it will be useful,
yading@10 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@10 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@10 15 * Lesser General Public License for more details.
yading@10 16 *
yading@10 17 * You should have received a copy of the GNU Lesser General Public
yading@10 18 * License along with FFmpeg; if not, write to the Free Software
yading@10 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@10 20 */
yading@10 21
yading@10 22 /**
yading@10 23 * @file
yading@10 24 * audio conversion
yading@10 25 * @author Michael Niedermayer <michaelni@gmx.at>
yading@10 26 */
yading@10 27
yading@10 28 #include "libavutil/avstring.h"
yading@10 29 #include "libavutil/common.h"
yading@10 30 #include "libavutil/libm.h"
yading@10 31 #include "libavutil/samplefmt.h"
yading@10 32 #include "avcodec.h"
yading@10 33 #include "audioconvert.h"
yading@10 34
yading@10 35 struct AVAudioConvert {
yading@10 36 int in_channels, out_channels;
yading@10 37 int fmt_pair;
yading@10 38 };
yading@10 39
yading@10 40 AVAudioConvert *av_audio_convert_alloc(enum AVSampleFormat out_fmt, int out_channels,
yading@10 41 enum AVSampleFormat in_fmt, int in_channels,
yading@10 42 const float *matrix, int flags)
yading@10 43 {
yading@10 44 AVAudioConvert *ctx;
yading@10 45 if (in_channels!=out_channels)
yading@10 46 return NULL; /* FIXME: not supported */
yading@10 47 ctx = av_malloc(sizeof(AVAudioConvert));
yading@10 48 if (!ctx)
yading@10 49 return NULL;
yading@10 50 ctx->in_channels = in_channels;
yading@10 51 ctx->out_channels = out_channels;
yading@10 52 ctx->fmt_pair = out_fmt + AV_SAMPLE_FMT_NB*in_fmt;
yading@10 53 return ctx;
yading@10 54 }
yading@10 55
yading@10 56 void av_audio_convert_free(AVAudioConvert *ctx)
yading@10 57 {
yading@10 58 av_free(ctx);
yading@10 59 }
yading@10 60
yading@10 61 int av_audio_convert(AVAudioConvert *ctx,
yading@10 62 void * const out[6], const int out_stride[6],
yading@10 63 const void * const in[6], const int in_stride[6], int len)
yading@10 64 {
yading@10 65 int ch;
yading@10 66
yading@10 67 //FIXME optimize common cases
yading@10 68
yading@10 69 for(ch=0; ch<ctx->out_channels; ch++){
yading@10 70 const int is= in_stride[ch];
yading@10 71 const int os= out_stride[ch];
yading@10 72 const uint8_t *pi= in[ch];
yading@10 73 uint8_t *po= out[ch];
yading@10 74 uint8_t *end= po + os*len;
yading@10 75 if(!out[ch])
yading@10 76 continue;
yading@10 77
yading@10 78 #define CONV(ofmt, otype, ifmt, expr)\
yading@10 79 if(ctx->fmt_pair == ofmt + AV_SAMPLE_FMT_NB*ifmt){\
yading@10 80 do{\
yading@10 81 *(otype*)po = expr; pi += is; po += os;\
yading@10 82 }while(po < end);\
yading@10 83 }
yading@10 84
yading@10 85 //FIXME put things below under ifdefs so we do not waste space for cases no codec will need
yading@10 86 //FIXME rounding ?
yading@10 87
yading@10 88 CONV(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_U8 , *(const uint8_t*)pi)
yading@10 89 else CONV(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_U8 , (*(const uint8_t*)pi - 0x80)<<8)
yading@10 90 else CONV(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_U8 , (*(const uint8_t*)pi - 0x80)<<24)
yading@10 91 else CONV(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_U8 , (*(const uint8_t*)pi - 0x80)*(1.0 / (1<<7)))
yading@10 92 else CONV(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_U8 , (*(const uint8_t*)pi - 0x80)*(1.0 / (1<<7)))
yading@10 93 else CONV(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_S16, (*(const int16_t*)pi>>8) + 0x80)
yading@10 94 else CONV(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_S16, *(const int16_t*)pi)
yading@10 95 else CONV(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S16, *(const int16_t*)pi<<16)
yading@10 96 else CONV(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_S16, *(const int16_t*)pi*(1.0 / (1<<15)))
yading@10 97 else CONV(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_S16, *(const int16_t*)pi*(1.0 / (1<<15)))
yading@10 98 else CONV(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_S32, (*(const int32_t*)pi>>24) + 0x80)
yading@10 99 else CONV(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_S32, *(const int32_t*)pi>>16)
yading@10 100 else CONV(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_S32, *(const int32_t*)pi)
yading@10 101 else CONV(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_S32, *(const int32_t*)pi*(1.0 / (1U<<31)))
yading@10 102 else CONV(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_S32, *(const int32_t*)pi*(1.0 / (1U<<31)))
yading@10 103 else CONV(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_FLT, av_clip_uint8( lrintf(*(const float*)pi * (1<<7)) + 0x80))
yading@10 104 else CONV(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, av_clip_int16( lrintf(*(const float*)pi * (1<<15))))
yading@10 105 else CONV(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, av_clipl_int32(llrintf(*(const float*)pi * (1U<<31))))
yading@10 106 else CONV(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_FLT, *(const float*)pi)
yading@10 107 else CONV(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_FLT, *(const float*)pi)
yading@10 108 else CONV(AV_SAMPLE_FMT_U8 , uint8_t, AV_SAMPLE_FMT_DBL, av_clip_uint8( lrint(*(const double*)pi * (1<<7)) + 0x80))
yading@10 109 else CONV(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, av_clip_int16( lrint(*(const double*)pi * (1<<15))))
yading@10 110 else CONV(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, av_clipl_int32(llrint(*(const double*)pi * (1U<<31))))
yading@10 111 else CONV(AV_SAMPLE_FMT_FLT, float , AV_SAMPLE_FMT_DBL, *(const double*)pi)
yading@10 112 else CONV(AV_SAMPLE_FMT_DBL, double , AV_SAMPLE_FMT_DBL, *(const double*)pi)
yading@10 113 else return -1;
yading@10 114 }
yading@10 115 return 0;
yading@10 116 }