⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pcm.c

📁 mediastreamer2是开源的网络传输媒体流的库
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * PCM codecs * Copyright (c) 2001 Fabrice Bellard. * * This file is part of FFmpeg. * * FFmpeg is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * FFmpeg is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with FFmpeg; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA *//** * @file pcm.c * PCM codecs */#include "avcodec.h"#include "bitstream.h" // for ff_reverse#include "bytestream.h"#define MAX_CHANNELS 64/* from g711.c by SUN microsystems (unrestricted use) */#define         SIGN_BIT        (0x80)      /* Sign bit for a A-law byte. */#define         QUANT_MASK      (0xf)       /* Quantization field mask. */#define         NSEGS           (8)         /* Number of A-law segments. */#define         SEG_SHIFT       (4)         /* Left shift for segment number. */#define         SEG_MASK        (0x70)      /* Segment field mask. */#define         BIAS            (0x84)      /* Bias for linear code. *//* * alaw2linear() - Convert an A-law value to 16-bit linear PCM * */static int alaw2linear(unsigned char a_val){        int t;        int seg;        a_val ^= 0x55;        t = a_val & QUANT_MASK;        seg = ((unsigned)a_val & SEG_MASK) >> SEG_SHIFT;        if(seg) t= (t + t + 1 + 32) << (seg + 2);        else    t= (t + t + 1     ) << 3;        return ((a_val & SIGN_BIT) ? t : -t);}static int ulaw2linear(unsigned char u_val){        int t;        /* Complement to obtain normal u-law value. */        u_val = ~u_val;        /*         * Extract and bias the quantization bits. Then         * shift up by the segment number and subtract out the bias.         */        t = ((u_val & QUANT_MASK) << 3) + BIAS;        t <<= ((unsigned)u_val & SEG_MASK) >> SEG_SHIFT;        return ((u_val & SIGN_BIT) ? (BIAS - t) : (t - BIAS));}/* 16384 entries per table */static uint8_t linear_to_alaw[16384];static uint8_t linear_to_ulaw[16384];static void build_xlaw_table(uint8_t *linear_to_xlaw,                             int (*xlaw2linear)(unsigned char),                             int mask){    int i, j, v, v1, v2;    j = 0;    for(i=0;i<128;i++) {        if (i != 127) {            v1 = xlaw2linear(i ^ mask);            v2 = xlaw2linear((i + 1) ^ mask);            v = (v1 + v2 + 4) >> 3;        } else {            v = 8192;        }        for(;j<v;j++) {            linear_to_xlaw[8192 + j] = (i ^ mask);            if (j > 0)                linear_to_xlaw[8192 - j] = (i ^ (mask ^ 0x80));        }    }    linear_to_xlaw[0] = linear_to_xlaw[1];}static int pcm_encode_init(AVCodecContext *avctx){    avctx->frame_size = 1;    switch(avctx->codec->id) {    case CODEC_ID_PCM_ALAW:        build_xlaw_table(linear_to_alaw, alaw2linear, 0xd5);        break;    case CODEC_ID_PCM_MULAW:        build_xlaw_table(linear_to_ulaw, ulaw2linear, 0xff);        break;    default:        break;    }    switch(avctx->codec->id) {    case CODEC_ID_PCM_S32LE:    case CODEC_ID_PCM_S32BE:    case CODEC_ID_PCM_U32LE:    case CODEC_ID_PCM_U32BE:        avctx->block_align = 4 * avctx->channels;        break;    case CODEC_ID_PCM_S24LE:    case CODEC_ID_PCM_S24BE:    case CODEC_ID_PCM_U24LE:    case CODEC_ID_PCM_U24BE:    case CODEC_ID_PCM_S24DAUD:        avctx->block_align = 3 * avctx->channels;        break;    case CODEC_ID_PCM_S16LE:    case CODEC_ID_PCM_S16BE:    case CODEC_ID_PCM_U16LE:    case CODEC_ID_PCM_U16BE:        avctx->block_align = 2 * avctx->channels;        break;    case CODEC_ID_PCM_S8:    case CODEC_ID_PCM_U8:    case CODEC_ID_PCM_MULAW:    case CODEC_ID_PCM_ALAW:        avctx->block_align = avctx->channels;        break;    default:        break;    }    avctx->coded_frame= avcodec_alloc_frame();    avctx->coded_frame->key_frame= 1;    return 0;}static int pcm_encode_close(AVCodecContext *avctx){    av_freep(&avctx->coded_frame);    return 0;}/** * \brief convert samples from 16 bit * \param bps byte per sample for the destination format, must be >= 2 * \param le 0 for big-, 1 for little-endian * \param us 0 for signed, 1 for unsigned output * \param samples input samples * \param dst output samples * \param n number of samples in samples buffer. */static inline void encode_from16(int bps, int le, int us,                               short **samples, uint8_t **dst, int n) {    int usum = us ? 0x8000 : 0;    if (bps > 2)        memset(*dst, 0, n * bps);    if (le) *dst += bps - 2;    for(;n>0;n--) {        register int v = *(*samples)++;        v += usum;        if (le) AV_WL16(*dst, v);        else    AV_WB16(*dst, v);        *dst += bps;    }    if (le) *dst -= bps - 2;}static int pcm_encode_frame(AVCodecContext *avctx,                            unsigned char *frame, int buf_size, void *data){    int n, sample_size, v;    short *samples;    unsigned char *dst;    switch(avctx->codec->id) {    case CODEC_ID_PCM_S32LE:    case CODEC_ID_PCM_S32BE:    case CODEC_ID_PCM_U32LE:    case CODEC_ID_PCM_U32BE:        sample_size = 4;        break;    case CODEC_ID_PCM_S24LE:    case CODEC_ID_PCM_S24BE:    case CODEC_ID_PCM_U24LE:    case CODEC_ID_PCM_U24BE:    case CODEC_ID_PCM_S24DAUD:        sample_size = 3;        break;    case CODEC_ID_PCM_S16LE:    case CODEC_ID_PCM_S16BE:    case CODEC_ID_PCM_U16LE:    case CODEC_ID_PCM_U16BE:        sample_size = 2;        break;    default:        sample_size = 1;        break;    }    n = buf_size / sample_size;    samples = data;    dst = frame;    switch(avctx->codec->id) {    case CODEC_ID_PCM_S32LE:        encode_from16(4, 1, 0, &samples, &dst, n);        break;    case CODEC_ID_PCM_S32BE:        encode_from16(4, 0, 0, &samples, &dst, n);        break;    case CODEC_ID_PCM_U32LE:        encode_from16(4, 1, 1, &samples, &dst, n);        break;    case CODEC_ID_PCM_U32BE:        encode_from16(4, 0, 1, &samples, &dst, n);        break;    case CODEC_ID_PCM_S24LE:        encode_from16(3, 1, 0, &samples, &dst, n);        break;    case CODEC_ID_PCM_S24BE:        encode_from16(3, 0, 0, &samples, &dst, n);        break;    case CODEC_ID_PCM_U24LE:        encode_from16(3, 1, 1, &samples, &dst, n);        break;    case CODEC_ID_PCM_U24BE:        encode_from16(3, 0, 1, &samples, &dst, n);        break;    case CODEC_ID_PCM_S24DAUD:        for(;n>0;n--) {            uint32_t tmp = ff_reverse[*samples >> 8] +                           (ff_reverse[*samples & 0xff] << 8);            tmp <<= 4; // sync flags would go here            bytestream_put_be24(&dst, tmp);            samples++;        }        break;    case CODEC_ID_PCM_S16LE:        for(;n>0;n--) {            v = *samples++;            bytestream_put_le16(&dst, v);        }        break;    case CODEC_ID_PCM_S16BE:        for(;n>0;n--) {            v = *samples++;            bytestream_put_be16(&dst, v);        }        break;    case CODEC_ID_PCM_U16LE:        for(;n>0;n--) {            v = *samples++;            v += 0x8000;            bytestream_put_le16(&dst, v);        }        break;    case CODEC_ID_PCM_U16BE:        for(;n>0;n--) {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -