亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? adpcm.c

?? 君正早期ucos系統(只有早期的才不沒有打包成庫),MPLAYER,文件系統,圖片解碼,瀏覽,電子書,錄音,想學ucos,識貨的人就下吧 russblock fmradio explore set
?? C
?? 第 1 頁 / 共 4 頁
字號:
                    STORE_NODE(ms, FFMAX(16, (AdaptationTable[nibble] * step) >> 8));                }            } else if((version == CODEC_ID_ADPCM_IMA_WAV)|| (version == CODEC_ID_ADPCM_SWF)) {#define LOOP_NODES(NAME, STEP_TABLE, STEP_INDEX)\                const int predictor = nodes[j]->sample1;\                const int div = (sample - predictor) * 4 / STEP_TABLE;\                int nmin = av_clip(div-range, -7, 6);\                int nmax = av_clip(div+range, -6, 7);\                if(nmin<=0) nmin--; /* distinguish -0 from +0 */\                if(nmax<0) nmax--;\                for(nidx=nmin; nidx<=nmax; nidx++) {\                    const int nibble = nidx<0 ? 7-nidx : nidx;\                    int dec_sample = predictor + (STEP_TABLE * yamaha_difflookup[nibble]) / 8;\                    STORE_NODE(NAME, STEP_INDEX);\                }                LOOP_NODES(ima, step_table[step], av_clip(step + index_table[nibble], 0, 88));            } else { //CODEC_ID_ADPCM_YAMAHA                LOOP_NODES(yamaha, step, av_clip((step * yamaha_indexscale[nibble]) >> 8, 127, 24567));#undef LOOP_NODES#undef STORE_NODE            }        }        u = nodes;        nodes = nodes_next;        nodes_next = u;        // prevent overflow        if(nodes[0]->ssd > (1<<28)) {            for(j=1; j<frontier && nodes[j]; j++)                nodes[j]->ssd -= nodes[0]->ssd;            nodes[0]->ssd = 0;        }        // merge old paths to save memory        if(i == froze + FREEZE_INTERVAL) {            p = &paths[nodes[0]->path];            for(k=i; k>froze; k--) {                dst[k] = p->nibble;                p = &paths[p->prev];            }            froze = i;            pathn = 0;            // other nodes might use paths that don't coincide with the frozen one.            // checking which nodes do so is too slow, so just kill them all.            // this also slightly improves quality, but I don't know why.            memset(nodes+1, 0, (frontier-1)*sizeof(TrellisNode*));        }    }    p = &paths[nodes[0]->path];    for(i=n-1; i>froze; i--) {        dst[i] = p->nibble;        p = &paths[p->prev];    }    c->predictor = nodes[0]->sample1;    c->sample1 = nodes[0]->sample1;    c->sample2 = nodes[0]->sample2;    c->step_index = nodes[0]->step;    c->step = nodes[0]->step;    c->idelta = nodes[0]->step;}static int adpcm_encode_frame(AVCodecContext *avctx,                            unsigned char *frame, int buf_size, void *data){    int n, i, st;    short *samples;    unsigned char *dst;    ADPCMContext *c = avctx->priv_data;    dst = frame;    samples = (short *)data;    st= avctx->channels == 2;/*    n = (BLKSIZE - 4 * avctx->channels) / (2 * 8 * avctx->channels); */    switch(avctx->codec->id) {    case CODEC_ID_ADPCM_IMA_QT: /* XXX: can't test until we get .mov writer */        break;    case CODEC_ID_ADPCM_IMA_WAV:        n = avctx->frame_size / 8;            c->status[0].prev_sample = (signed short)samples[0]; /* XXX *//*            c->status[0].step_index = 0; *//* XXX: not sure how to init the state machine */            bytestream_put_le16(&dst, c->status[0].prev_sample);            *dst++ = (unsigned char)c->status[0].step_index;            *dst++ = 0; /* unknown */            samples++;            if (avctx->channels == 2) {                c->status[1].prev_sample = (signed short)samples[1];/*                c->status[1].step_index = 0; */                bytestream_put_le16(&dst, c->status[1].prev_sample);                *dst++ = (unsigned char)c->status[1].step_index;                *dst++ = 0;                samples++;            }            /* stereo: 4 bytes (8 samples) for left, 4 bytes for right, 4 bytes left, ... */            if(avctx->trellis > 0) {                uint8_t buf[2][n*8];                adpcm_compress_trellis(avctx, samples, buf[0], &c->status[0], n*8);                if(avctx->channels == 2)                    adpcm_compress_trellis(avctx, samples+1, buf[1], &c->status[1], n*8);                for(i=0; i<n; i++) {                    *dst++ = buf[0][8*i+0] | (buf[0][8*i+1] << 4);                    *dst++ = buf[0][8*i+2] | (buf[0][8*i+3] << 4);                    *dst++ = buf[0][8*i+4] | (buf[0][8*i+5] << 4);                    *dst++ = buf[0][8*i+6] | (buf[0][8*i+7] << 4);                    if (avctx->channels == 2) {                        *dst++ = buf[1][8*i+0] | (buf[1][8*i+1] << 4);                        *dst++ = buf[1][8*i+2] | (buf[1][8*i+3] << 4);                        *dst++ = buf[1][8*i+4] | (buf[1][8*i+5] << 4);                        *dst++ = buf[1][8*i+6] | (buf[1][8*i+7] << 4);                    }                }            } else            for (; n>0; n--) {                *dst = adpcm_ima_compress_sample(&c->status[0], samples[0]) & 0x0F;                *dst |= (adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels]) << 4) & 0xF0;                dst++;                *dst = adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 2]) & 0x0F;                *dst |= (adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 3]) << 4) & 0xF0;                dst++;                *dst = adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 4]) & 0x0F;                *dst |= (adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 5]) << 4) & 0xF0;                dst++;                *dst = adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 6]) & 0x0F;                *dst |= (adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels * 7]) << 4) & 0xF0;                dst++;                /* right channel */                if (avctx->channels == 2) {                    *dst = adpcm_ima_compress_sample(&c->status[1], samples[1]);                    *dst |= adpcm_ima_compress_sample(&c->status[1], samples[3]) << 4;                    dst++;                    *dst = adpcm_ima_compress_sample(&c->status[1], samples[5]);                    *dst |= adpcm_ima_compress_sample(&c->status[1], samples[7]) << 4;                    dst++;                    *dst = adpcm_ima_compress_sample(&c->status[1], samples[9]);                    *dst |= adpcm_ima_compress_sample(&c->status[1], samples[11]) << 4;                    dst++;                    *dst = adpcm_ima_compress_sample(&c->status[1], samples[13]);                    *dst |= adpcm_ima_compress_sample(&c->status[1], samples[15]) << 4;                    dst++;                }                samples += 8 * avctx->channels;            }        break;    case CODEC_ID_ADPCM_SWF:    {        int i;        PutBitContext pb;        init_put_bits(&pb, dst, buf_size*8);        n = avctx->frame_size-1;        //Store AdpcmCodeSize        put_bits(&pb, 2, 2);                //Set 4bits flash adpcm format        //Init the encoder state        for(i=0; i<avctx->channels; i++){            c->status[i].step_index = av_clip(c->status[i].step_index, 0, 63); // clip step so it fits 6 bits            put_bits(&pb, 16, samples[i] & 0xFFFF);            put_bits(&pb, 6, c->status[i].step_index);            c->status[i].prev_sample = (signed short)samples[i];        }        if(avctx->trellis > 0) {            uint8_t buf[2][n];            adpcm_compress_trellis(avctx, samples+2, buf[0], &c->status[0], n);            if (avctx->channels == 2)                adpcm_compress_trellis(avctx, samples+3, buf[1], &c->status[1], n);            for(i=0; i<n; i++) {                put_bits(&pb, 4, buf[0][i]);                if (avctx->channels == 2)                    put_bits(&pb, 4, buf[1][i]);            }        } else {            for (i=1; i<avctx->frame_size; i++) {                put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[0], samples[avctx->channels*i]) & 0xF);                if (avctx->channels == 2)                    put_bits(&pb, 4, adpcm_ima_compress_sample(&c->status[1], samples[2*i+1]) & 0xF);            }        }        flush_put_bits(&pb);        dst += put_bits_count(&pb)>>3;        break;    }    case CODEC_ID_ADPCM_MS:        for(i=0; i<avctx->channels; i++){            int predictor=0;            *dst++ = predictor;            c->status[i].coeff1 = AdaptCoeff1[predictor];            c->status[i].coeff2 = AdaptCoeff2[predictor];        }        for(i=0; i<avctx->channels; i++){            if (c->status[i].idelta < 16)                c->status[i].idelta = 16;            bytestream_put_le16(&dst, c->status[i].idelta);        }        for(i=0; i<avctx->channels; i++){            c->status[i].sample1= *samples++;            bytestream_put_le16(&dst, c->status[i].sample1);        }        for(i=0; i<avctx->channels; i++){            c->status[i].sample2= *samples++;            bytestream_put_le16(&dst, c->status[i].sample2);        }        if(avctx->trellis > 0) {            int n = avctx->block_align - 7*avctx->channels;            uint8_t buf[2][n];            if(avctx->channels == 1) {                n *= 2;                adpcm_compress_trellis(avctx, samples, buf[0], &c->status[0], n);                for(i=0; i<n; i+=2)                    *dst++ = (buf[0][i] << 4) | buf[0][i+1];            } else {                adpcm_compress_trellis(avctx, samples, buf[0], &c->status[0], n);                adpcm_compress_trellis(avctx, samples+1, buf[1], &c->status[1], n);                for(i=0; i<n; i++)                    *dst++ = (buf[0][i] << 4) | buf[1][i];            }        } else        for(i=7*avctx->channels; i<avctx->block_align; i++) {            int nibble;            nibble = adpcm_ms_compress_sample(&c->status[ 0], *samples++)<<4;            nibble|= adpcm_ms_compress_sample(&c->status[st], *samples++);            *dst++ = nibble;        }        break;    case CODEC_ID_ADPCM_YAMAHA:        n = avctx->frame_size / 2;        if(avctx->trellis > 0) {            uint8_t buf[2][n*2];            n *= 2;            if(avctx->channels == 1) {                adpcm_compress_trellis(avctx, samples, buf[0], &c->status[0], n);                for(i=0; i<n; i+=2)                    *dst++ = buf[0][i] | (buf[0][i+1] << 4);            } else {                adpcm_compress_trellis(avctx, samples, buf[0], &c->status[0], n);                adpcm_compress_trellis(avctx, samples+1, buf[1], &c->status[1], n);                for(i=0; i<n; i++)                    *dst++ = buf[0][i] | (buf[1][i] << 4);            }        } else        for (; n>0; n--) {            for(i = 0; i < avctx->channels; i++) {                int nibble;                nibble  = adpcm_yamaha_compress_sample(&c->status[i], samples[i]);                nibble |= adpcm_yamaha_compress_sample(&c->status[i], samples[i+avctx->channels]) << 4;                *dst++ = nibble;            }            samples += 2 * avctx->channels;        }        break;    default:        return -1;    }    return dst - frame;}#endif //CONFIG_ENCODERSstatic int adpcm_decode_init(AVCodecContext * avctx){    ADPCMContext *c = avctx->priv_data;    if(avctx->channels > 2U){        return -1;    }    c->channel = 0;    c->status[0].predictor = c->status[1].predictor = 0;    c->status[0].step_index = c->status[1].step_index = 0;    c->status[0].step = c->status[1].step = 0;    switch(avctx->codec->id) {    case CODEC_ID_ADPCM_CT:        c->status[0].step = c->status[1].step = 511;        break;    case CODEC_ID_ADPCM_IMA_WS:        if (avctx->extradata && avctx->extradata_size == 2 * 4) {            c->status[0].predictor = AV_RL32(avctx->extradata);            c->status[1].predictor = AV_RL32(avctx->extradata + 4);        }        break;    default:        break;    }    return 0;}static inline short adpcm_ima_expand_nibble(ADPCMChannelStatus *c, char nibble, int shift){    int step_index;    int predictor;    int sign, delta, diff, step;    step = step_table[c->step_index];    step_index = c->step_index + index_table[(unsigned)nibble];    if (step_index < 0) step_index = 0;    else if (step_index > 88) step_index = 88;    sign = nibble & 8;    delta = nibble & 7;    /* perform direct multiplication instead of series of jumps proposed by     * the reference ADPCM implementation since modern CPUs can do the mults     * quickly enough */    diff = ((2 * delta + 1) * step) >> shift;    predictor = c->predictor;    if (sign) predictor -= diff;    else predictor += diff;    c->predictor = av_clip_int16(predictor);    c->step_index = step_index;    return (short)c->predictor;}static inline short adpcm_ms_expand_nibble(ADPCMChannelStatus *c, char nibble){    int predictor;    predictor = (((c->sample1) * (c->coeff1)) + ((c->sample2) * (c->coeff2))) / 256;    predictor += (signed)((nibble & 0x08)?(nibble - 0x10):(nibble)) * c->idelta;    c->sample2 = c->sample1;    c->sample1 = av_clip_int16(predictor);    c->idelta = (AdaptationTable[(int)nibble] * c->idelta) >> 8;    if (c->idelta < 16) c->idelta = 16;    return c->sample1;}static inline short adpcm_ct_expand_nibble(ADPCMChannelStatus *c, char nibble){    int sign, delta, diff;    int new_step;    sign = nibble & 8;    delta = nibble & 7;    /* perform direct multiplication instead of series of jumps proposed by     * the reference ADPCM implementation since modern CPUs can do the mults     * quickly enough */    diff = ((2 * delta + 1) * c->step) >> 3;    /* predictor update is not so trivial: predictor is multiplied on 254/256 before updating */    c->predictor = ((c->predictor * 254) >> 8) + (sign ? -diff : diff);    c->predictor = av_clip_int16(c->predictor);    /* calculate new step and clamp it to range 511..32767 */    new_step = (ct_adpcm_table[nibble & 7] * c->step) >> 8;    c->step = av_clip(new_step, 511, 32767);    return (short)c->predictor;}static inline short adpcm_sbpro_expand_nibble(ADPCMChannelStatus *c, char nibble, int size, int shift){    int sign, delta, diff;    sign = nibble & (1<<(size-1));    delta = nibble & ((1<<(size-1))-1);    diff = delta << (7 + c->step + shift);    /* clamp result */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久久久影院色老大 | 国产欧美日韩激情| 国产日韩三级在线| 成人欧美一区二区三区黑人麻豆 | 欧美视频一二三区| 欧美一级一级性生活免费录像| 精品国产免费人成在线观看| 国产婷婷色一区二区三区 | 韩国精品一区二区| 成人av一区二区三区| 欧美日韩视频在线观看一区二区三区| 欧美亚洲高清一区二区三区不卡| 日韩亚洲欧美中文三级| 一区在线观看视频| 性做久久久久久免费观看| 国产一区二区毛片| 欧美人xxxx| 中文字幕亚洲欧美在线不卡| 亚洲影视在线播放| 国产超碰在线一区| 欧美午夜宅男影院| 最新日韩av在线| 国产九色精品成人porny | 久久亚区不卡日本| 午夜免费欧美电影| 色乱码一区二区三区88| 国产亚洲一区二区三区四区| 亚洲一区二区三区视频在线| 国产精品美女久久久久久久久久久 | 91久久精品一区二区三区| 2023国产精品自拍| 日本va欧美va欧美va精品| 欧美日韩视频在线观看一区二区三区| 亚洲天堂av老司机| a亚洲天堂av| 亚洲欧美综合在线精品| 国产aⅴ精品一区二区三区色成熟| 欧美老肥妇做.爰bbww视频| 亚洲欧洲日韩在线| 成人黄色电影在线| 欧美大尺度电影在线| 午夜精品一区二区三区免费视频| 99国产精品久久久| 中文字幕电影一区| 国内精品久久久久影院薰衣草| 欧美精品 日韩| 亚洲成av人片在线| 欧美三级电影精品| 日日摸夜夜添夜夜添国产精品| 欧美亚洲另类激情小说| 亚洲综合丝袜美腿| 在线日韩国产精品| 国产精品视频在线看| 国产成人精品午夜视频免费| 精品国产亚洲在线| 精品一区二区三区免费观看| 日韩欧美美女一区二区三区| 日韩高清在线一区| 精品国产91洋老外米糕| 美女在线视频一区| 精品成人在线观看| 成人午夜电影久久影院| 中文字幕免费在线观看视频一区| 成人综合在线视频| 亚洲欧美日韩国产综合在线| 91一区在线观看| 亚洲国产视频网站| 欧美一区二区成人6969| 激情深爱一区二区| 欧美v亚洲v综合ⅴ国产v| 精品夜夜嗨av一区二区三区| 国产午夜亚洲精品不卡| 色综合激情久久| 免费的成人av| 亚洲欧美在线观看| 日韩欧美精品在线视频| 91网站最新网址| 国产在线一区观看| 亚洲不卡一区二区三区| 日本一二三不卡| 欧美一级精品大片| 国产精品伊人色| 亚洲福利视频一区| 欧美国产精品一区二区| 欧美一区二区视频在线观看| jlzzjlzz亚洲女人18| 蜜桃视频在线观看一区| 一区二区三区蜜桃网| 久久久精品蜜桃| 日韩欧美一二三四区| 欧美自拍丝袜亚洲| av电影在线观看一区| 国产毛片精品一区| 秋霞电影网一区二区| 玉足女爽爽91| 国产精品欧美一区二区三区| 日韩欧美在线不卡| 欧美三日本三级三级在线播放| www.亚洲激情.com| 国产凹凸在线观看一区二区| 日韩av在线免费观看不卡| 一区二区成人在线视频| 国产精品你懂的在线| 久久你懂得1024| 亚洲精品一区二区三区福利| 日韩午夜小视频| 日韩一区二区三区观看| 欧美乱熟臀69xxxxxx| 色综合久久综合网| 色天使久久综合网天天| 91在线观看污| 97久久精品人人做人人爽50路| 成人亚洲一区二区一| 国产99久久久国产精品潘金网站| 国内精品自线一区二区三区视频| 久久国产夜色精品鲁鲁99| 麻豆精品在线看| 麻豆精品一区二区综合av| 美女国产一区二区| 久久狠狠亚洲综合| 国产一区二区三区免费观看| 国产盗摄女厕一区二区三区| 国产精品一区二区x88av| 国产99精品在线观看| 成人av在线一区二区三区| 高清shemale亚洲人妖| jlzzjlzz欧美大全| 欧美综合天天夜夜久久| 7878成人国产在线观看| 日韩亚洲欧美在线观看| 久久久不卡网国产精品二区| 中文字幕第一区二区| 亚洲精品欧美综合四区| 午夜一区二区三区视频| 免费在线观看精品| 国产成人a级片| 91在线精品一区二区| 欧洲精品一区二区| 精品日韩在线观看| 中文字幕一区二区三区av| 亚洲综合男人的天堂| 免费成人在线播放| 9人人澡人人爽人人精品| 在线一区二区三区| 精品免费一区二区三区| 国产精品美女一区二区| 亚洲电影第三页| 国产福利91精品一区二区三区| 91视频www| 日韩久久久精品| 亚洲欧美日韩成人高清在线一区| 亚洲成人av福利| 岛国一区二区三区| 777久久久精品| 国产精品久久午夜夜伦鲁鲁| 亚洲无人区一区| 成人动漫一区二区在线| 91精品国产色综合久久不卡电影 | 日韩欧美视频一区| 亚洲女厕所小便bbb| 免费不卡在线视频| 一本久久a久久免费精品不卡| 91精品黄色片免费大全| 欧美激情在线一区二区三区| 亚洲韩国一区二区三区| 国产成人av一区二区| 欧美一区二区三区影视| 最新不卡av在线| 韩国三级中文字幕hd久久精品| 色妹子一区二区| 中文字幕精品—区二区四季| 蓝色福利精品导航| 欧美日韩国产123区| 亚洲欧美一区二区久久| 国产成人综合视频| 精品少妇一区二区| 秋霞影院一区二区| 欧美日韩你懂得| 一区二区三区四区在线| 成人免费av网站| 久久久精品tv| 国产一区二区女| 欧美zozozo| 久久99在线观看| 日韩女优毛片在线| 日韩电影在线一区二区三区| 91久久免费观看| 亚洲综合丁香婷婷六月香| 99久久精品免费精品国产| 国产偷国产偷精品高清尤物| 精品一区二区三区的国产在线播放 | 国产精品一区二区在线观看网站| 8x福利精品第一导航| 亚洲国产精品天堂| 欧美三级日韩三级国产三级| 一区二区三区高清| 欧洲精品一区二区| 亚洲va天堂va国产va久| 欧日韩精品视频| 天天色天天操综合|