📄 vorbis.c
字号:
vorbis_readstring(gb,vc->user_comments[i],len); } if (!get_bits1(gb)) { av_log(vc->avccontext, AV_LOG_ERROR, " Vorbis comment header packet corrupt (framing flag). \n"); return -1; } return 0;}static int vorbis_comment_query_count(vorbis_context *vc, const char *tag) { int i,count=0; int taglen = strlen(tag)+1; /* +1 for the = we append */ char *fulltag = (char *)av_malloc(taglen+1); strcpy(fulltag,tag); pstrcat(fulltag, taglen+1, "="); for (i=0;i<vc->comments;i++) { if(!strnicmp(vc->user_comments[i], fulltag, taglen)) count++; } av_free(fulltag); return count;}static const char *vorbis_comment_query(vorbis_context *vc, const char *tag, int count) { long i; int found = 0; int taglen = strlen(tag)+1; /* +1 for the = we append */ char *fulltag = (char *)av_malloc(taglen+ 1); strcpy(fulltag, tag); pstrcat(fulltag, taglen+1, "="); for (i=0;i<vc->comments;i++){ if (!strnicmp(vc->user_comments[i], fulltag, taglen)) { if (count == found) {/* We return a pointer to the data, not a copy */ av_free(fulltag); return vc->user_comments[i] + taglen; } else found++; } } av_free(fulltag); return NULL; /* didn't find anything */}static int vorbis_init_id_header(AVCodecContext *avccontext,const uint8_t *headers,int header_len){ vorbis_context *vc = avccontext->priv_data ; GetBitContext *gb = &(vc->gb); int hdr_type; init_get_bits(gb, headers, header_len*8); hdr_type=get_bits(gb, 8); if (hdr_type!=1) { av_log(avccontext, AV_LOG_ERROR, "First header is not the id header.\n"); return -1; } if (vorbis_parse_id_hdr(vc)) { av_log(avccontext, AV_LOG_ERROR, "Id header corrupt.\n"); vorbis_free(vc); return -1; } return 0;}static int vorbis_init_setup_header(AVCodecContext *avccontext,const uint8_t *headers,int header_len){ vorbis_context *vc = avccontext->priv_data ; GetBitContext *gb = &(vc->gb); int hdr_type; init_get_bits(gb, headers, header_len*8); hdr_type=get_bits(gb, 8); if (hdr_type!=5) { av_log(avccontext, AV_LOG_ERROR, "Third header is not the setup header.\n"); return -1; } if (vorbis_parse_setup_hdr(vc)) { av_log(avccontext, AV_LOG_ERROR, "Setup header corrupt.\n"); vorbis_free(vc); return -1; } return 0;}static int vorbis_init_comment_header(AVCodecContext *avccontext,const uint8_t *headers,int header_len){ vorbis_context *vc = avccontext->priv_data ; GetBitContext *gb = &(vc->gb); int hdr_type; init_get_bits(gb,headers, header_len*8); hdr_type=get_bits(gb,8); if (hdr_type!=3) { av_log(avccontext, AV_LOG_ERROR, "Second header is not the comment header.\n"); return -1; } if (vorbis_parse_comment_hdr(vc)) { av_log(avccontext, AV_LOG_ERROR, "Comment header corrupt.\n"); vorbis_free(vc); return -1; } if (vorbis_comment_query_count(vc,"LWING_GAIN")) sscanf(vorbis_comment_query(vc,"LWING_GAIN",0),"%f",&avccontext->postgain); if (vorbis_comment_query_count(vc,"POSTGAIN")) sscanf(vorbis_comment_query(vc,"POSTGAIN",0),"%f",&avccontext->postgain); if (vorbis_comment_query_count(vc,"REPLAYGAIN_TRACK_GAIN")) { if (sscanf(vorbis_comment_query(vc,"REPLAYGAIN_TRACK_GAIN",0),"%f dB",&avccontext->postgain)==1) avccontext->postgain=(float)pow(10.0,avccontext->postgain/20.0); } return 0;}// Process the extradata using the functions above (identification header, setup header)static int vorbis_decode_init(AVCodecContext *avccontext) { vorbis_context *vc = avccontext->priv_data ; const uint8_t *headers = avccontext->extradata; int headers_len=avccontext->extradata_size; int header_len[3]; int i, j; avccontext->sample_fmt=SAMPLE_FMT_FLT; vc->avccontext = avccontext; if ((!headers_len || headers[0]!=2) && avccontext->vorbis_header_size[0]==0) { av_log(avccontext, AV_LOG_ERROR, "Extradata corrupt.\n"); return 0; } if (avccontext->vorbis_header_size[0]==0) { for(j=1,i=0;i<2;++i, ++j) { header_len[i]=0; while(j<headers_len && headers[j]==0xff) { header_len[i]+=0xff; ++j; } if (j>=headers_len) { av_log(avccontext, AV_LOG_ERROR, "Extradata corrupt.\n"); return -1; } header_len[i]+=headers[j]; } header_len[2]=headers_len-header_len[0]-header_len[1]-j; headers+=j; }else{ header_len[0]=avccontext->vorbis_header_size[0]; header_len[1]=avccontext->vorbis_header_size[1]; header_len[2]=avccontext->vorbis_header_size[2]; } if (vorbis_init_id_header(avccontext, headers, header_len[0])<0) return -1; if (vorbis_init_setup_header(avccontext, headers+header_len[0]+header_len[1], header_len[2])<0) return -1; if (vorbis_init_comment_header(avccontext, headers+header_len[0],header_len[1])<0) return -1; avccontext->channels = vc->audio_channels; avccontext->sample_rate = vc->audio_samplerate; vc->inited=1; return 0 ;}// Decode audiopackets -------------------------------------------------// Read and decode floor (type 1 only)static uint_fast8_t vorbis_floor1_decode(vorbis_context *vc, vorbis_floor *vf, float *vec) { GetBitContext *gb=&vc->gb; static const uint_fast16_t range_v[4]={ 256, 128, 86, 64 }; uint_fast16_t range=range_v[vf->multiplier-1]; #if __STDC_VERSION__ >= 199901L uint_fast16_t floor1_Y[vf->x_list_dim]; uint_fast16_t floor1_Y_final[vf->x_list_dim]; uint_fast8_t floor1_flag[vf->x_list_dim]; #else uint_fast16_t *floor1_Y=_alloca(vf->x_list_dim*sizeof(uint_fast16_t)); uint_fast16_t *floor1_Y_final=_alloca(vf->x_list_dim*sizeof(uint_fast16_t)); uint_fast8_t *floor1_flag=_alloca(vf->x_list_dim*sizeof(uint_fast8_t)); #endif uint_fast8_t class_; uint_fast8_t cdim; uint_fast8_t cbits; uint_fast8_t csub; uint_fast8_t cval; int_fast16_t book; uint_fast16_t offset; uint_fast16_t i,j; uint_fast16_t *floor_x_sort=vf->x_list_order; /*u*/int_fast16_t adx, ady, off, predicted; // WTF ? dy/adx= (unsigned)dy/adx ? int_fast16_t dy, err; uint_fast16_t lx,hx, ly, hy=0; if (!get_bits1(gb)) return 1; // silence// Read values (or differences) for the floor's points floor1_Y[0]=get_bits(gb, ilog(range-1)); floor1_Y[1]=get_bits(gb, ilog(range-1)); AV_DEBUG("floor 0 Y %d floor 1 Y %d \n", floor1_Y[0], floor1_Y[1]); offset=2; for(i=0;i<vf->partitions;++i) { class_=vf->partition_class[i]; cdim=vf->class_dimensions[class_]; cbits=vf->class_subclasses[class_]; csub=(1<<cbits)-1; cval=0; AV_DEBUG("Cbits %d \n", cbits); if (cbits) { // this reads all subclasses for this partition's class cval=get_vlc2(gb, vc->codebooks[vf->class_masterbook[class_]].vlc.table, vc->codebooks[vf->class_masterbook[class_]].nb_bits, 3); } for(j=0;j<cdim;++j) { book=vf->subclass_books[class_][cval & csub]; AV_DEBUG("book %d Cbits %d cval %d bits:%d \n", book, cbits, cval, get_bits_count(gb)); cval=cval>>cbits; if (book>0) { floor1_Y[offset+j]=get_vlc2(gb, vc->codebooks[book].vlc.table, vc->codebooks[book].nb_bits, 3); } else { floor1_Y[offset+j]=0; } AV_DEBUG(" floor(%d) = %d \n", vf->x_list[offset+j], floor1_Y[offset+j]); } offset+=cdim; }// Amplitude calculation from the differences floor1_flag[0]=1; floor1_flag[1]=1; floor1_Y_final[0]=floor1_Y[0]; floor1_Y_final[1]=floor1_Y[1]; for(i=2;i<vf->x_list_dim;++i) { uint_fast16_t val, highroom, lowroom, room; uint_fast16_t high_neigh_offs; uint_fast16_t low_neigh_offs; low_neigh_offs=vf->low_neighbour[i]; high_neigh_offs=vf->high_neighbour[i]; dy=floor1_Y_final[high_neigh_offs]-floor1_Y_final[low_neigh_offs]; // render_point begin adx=vf->x_list[high_neigh_offs]-vf->x_list[low_neigh_offs]; ady= ABS(dy); err=ady*(vf->x_list[i]-vf->x_list[low_neigh_offs]); off=err/adx; if (dy<0) { predicted=floor1_Y_final[low_neigh_offs]-off; } else { predicted=floor1_Y_final[low_neigh_offs]+off; } // render_point end val=floor1_Y[i]; highroom=range-predicted; lowroom=predicted; if (highroom < lowroom) { room=highroom*2; } else { room=lowroom*2; // SPEC mispelling } if (val) { floor1_flag[low_neigh_offs]=1; floor1_flag[high_neigh_offs]=1; floor1_flag[i]=1; if (val>=room) { if (highroom > lowroom) { floor1_Y_final[i]=val-lowroom+predicted; } else { floor1_Y_final[i]=predicted-val+highroom-1; } } else { if (val & 1) { floor1_Y_final[i]=predicted-(val+1)/2; } else { floor1_Y_final[i]=predicted+val/2; } } } else { floor1_flag[i]=0; floor1_Y_final[i]=predicted; } AV_DEBUG(" Decoded floor(%d) = %d / val %d \n", vf->x_list[i], floor1_Y_final[i], val); }// Curve synth - connect the calculated dots and convert from dB scale FIXME optimize ? hx=0; lx=0; ly=floor1_Y_final[0]*vf->multiplier; // conforms to SPEC vec[0]=floor1_inverse_db_table[ly]; for(i=1;i<vf->x_list_dim;++i) { AV_DEBUG(" Looking at post %d \n", i); if (floor1_flag[floor_x_sort[i]]) { // SPEC mispelled int_fast16_t x, y, dy, base, sy; // if uncommented: dy = -32 adx = 2 base = 2blablabla ????? hy=floor1_Y_final[floor_x_sort[i]]*vf->multiplier; hx=vf->x_list[floor_x_sort[i]]; dy=hy-ly; adx=hx-lx; ady= (dy<0) ? -dy:dy;//ABS(dy); base=dy/adx; AV_DEBUG(" dy %d adx %d base %d = %d \n", dy, adx, base, dy/adx); x=lx; y=ly; err=0; if (dy<0) { sy=base-1; } else { sy=base+1; } ady=ady-(base<0 ? -base : base)*adx; vec[x]=floor1_inverse_db_table[y]; AV_DEBUG(" vec[ %d ] = %d \n", x, y); for(x=lx+1;(x<hx) && (x<vf->x_list[1]);++x) { err+=ady; if (err>=adx) { err-=adx; y+=sy; } else { y+=base; } vec[x]=floor1_inverse_db_table[y]; AV_DEBUG(" vec[ %d ] = %d \n", x, y); }/* for(j=1;j<hx-lx+1;++j) { // iterating render_point dy=hy-ly; adx=hx-lx; ady= dy<0 ? -dy : dy; err=ady*j; off=err/adx; if (dy<0) { predicted=ly-off; } else { predicted=ly+off; } if (lx+j < vf->x_list[1]) { vec[lx+j]=floor1_inverse_db_table[predicted]; } }*/ lx=hx; ly=hy; } } if (hx<vf->x_list[1]) { for(i=hx;i<vf->x_list[1];++i) { vec[i]=floor1_inverse_db_table[hy]; } } AV_DEBUG(" Floor decoded\n"); return 0;}// Read and decode residuestatic int vorbis_residue_decode(vorbis_context *vc, vorbis_residue *vr, uint_fast8_t ch, uint_fast8_t *do_not_decode, float *vec, uint_fast16_t vlen) { GetBitContext *gb=&vc->gb; uint_fast8_t c_p_c=vc->codebooks[vr->classbook].dimensions; uint_fast16_t n_to_read=vr->end-vr->begin; uint_fast16_t ptns_to_read=n_to_read/vr->partition_size; #if __STDC_VERSION__ >= 199901L uint_fast8_t classifs[ptns_to_read*vc->audio_channels]; #else uint_fast8_t *classifs=_alloca(ptns_to_read*vc->audio_channels*sizeof(uint_fast8_t)); #endif uint_fast8_t pass; uint_fast8_t ch_used; uint_fast8_t i,j,l; uint_fast16_t k; if (vr->type==2) { for(j=1;j<ch;++j) { do_not_decode[0]&=do_not_decode[j]; // FIXME - clobbering input } if (do_not_decode[0]) return 0; ch_used=1; } else { ch_used=ch; } AV_DEBUG(" residue type 0/1/2 decode begin, ch: %d cpc %d \n", ch, c_p_c); for(pass=0;pass<=vr->maxpass;++pass) { // FIXME OPTIMIZE? uint_fast16_t voffset; uint_fast16_t partition_count; uint_fast16_t j_times_ptns_to_read; voffset=vr->begin; for(partition_count=0;partition_count<ptns_to_read;) { // SPEC error if (!pass) { for(j_times_ptns_to_read=0, j=0;j<ch_used;++j) { if (!do_not_decode[j]) { uint_fast32_t temp=get_vlc2(gb, vc->codebooks[vr->classbook].vlc.table, vc->codebooks[vr->classbook].nb_bits, 3);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -