search for: deccontrol

Displaying 13 results from an estimated 13 matches for "deccontrol".

Did you mean: ccontrol
2015 Apr 13
2
Availability of the 1.1.1 stable version
...else { audiosize = frame_size; mode = st->prev_mode; *As the mode is made as prev mode now, which was a silk, this goes inside,* /* SILK processing */ if (mode != MODE_CELT_ONLY) { *Then in this function called this*, silk_ret = silk_Decode( silk_dec, &st->DecControl, lost_flag, first_frame, &dec, pcm_ptr, &silk_frame_size ); *And finally, somehow, the "silk_frame_size" is a negative value ( say -1376272 in our case), then in the same function called the below and this crashes here.* pcm_ptr += silk_frame_si...
2015 Apr 16
3
Availability of the 1.1.1 stable version
...s the mode is made as prev mode now, which was a silk, this goes > inside,_* > > /* SILK processing */ > if (mode != MODE_CELT_ONLY) > { > > *_Then in this function called this_*, > > silk_ret = silk_Decode( silk_dec, &st->DecControl, > lost_flag, first_frame, &dec, > pcm_ptr, &silk_frame_size ); > > > *_And finally, somehow, the "silk_frame_size" is a negative value ( > say -1376272 in our case), then in the same function called the >...
2015 Apr 16
2
Availability of the 1.1.1 stable version
...inside,_* > > > > /* SILK processing */ > > if (mode != MODE_CELT_ONLY) > > { > > > > *_Then in this function called this_*, > > > > silk_ret = silk_Decode( silk_dec, &st->DecControl, > > lost_flag, first_frame, &dec, > > pcm_ptr, &silk_frame_size ); > > > > > > *_And finally, somehow, the "silk_frame_size" is a negative > value ( > > say -1376272...
2015 Apr 16
0
Availability of the 1.1.1 stable version
...de = st->prev_mode; > > *As the mode is made as prev mode now, which was a silk, this goes inside,* > > /* SILK processing */ > if (mode != MODE_CELT_ONLY) > { > > *Then in this function called this*, > > silk_ret = silk_Decode( silk_dec, &st->DecControl, > lost_flag, first_frame, &dec, pcm_ptr, > &silk_frame_size ); > > > *And finally, somehow, the "silk_frame_size" is a negative value ( say > -1376272 in our case), then in the same function called the below and this > crashes...
2015 Apr 09
2
Availability of the 1.1.1 stable version
Hi, I'm curious to know when would be the 1.1.1 stable version available. In 1.1, we are facing crash when opus library is trying to decode the CELT-only, full band and 20 ms. So we tried with 1.1.1 beta and it looks to be fine. Is there any open issue regarding this in 1.1 version? Thanks Suresh -------------- next part -------------- An HTML attachment was scrubbed... URL:
2015 Apr 16
0
Availability of the 1.1.1 stable version
...was a silk, this goes > > inside,_* > > > > /* SILK processing */ > > if (mode != MODE_CELT_ONLY) > > { > > > > *_Then in this function called this_*, > > > > silk_ret = silk_Decode( silk_dec, &st->DecControl, > > lost_flag, first_frame, &dec, > > pcm_ptr, &silk_frame_size ); > > > > > > *_And finally, somehow, the "silk_frame_size" is a negative value ( > > say -1376272 in our case), then in the same f...
2015 Apr 20
1
Availability of the 1.1.1 stable version
...gt; > /* SILK processing */ > > > if (mode != MODE_CELT_ONLY) > > > { > > > > > > *_Then in this function called this_*, > > > > > > silk_ret = silk_Decode( silk_dec, &st->DecControl, > > > lost_flag, first_frame, &dec, > > > pcm_ptr, &silk_frame_size ); > > > > > > > > > *_And finally, somehow, the "silk_frame_size" is a negative > > value (...
2015 Apr 21
2
Availability of the 1.1.1 stable version
...> if (mode != MODE_CELT_ONLY) > > > > { > > > > > > > > *_Then in this function called this_*, > > > > > > > > silk_ret = silk_Decode( silk_dec, > &st->DecControl, > > > > lost_flag, first_frame, > > &dec, > > > > pcm_ptr, &silk_frame_size ); > > > > > > > > > > > > *_And finally, somehow, the &quot...
2015 Apr 21
0
Availability of the 1.1.1 stable version
...LK processing */ > > > if (mode != MODE_CELT_ONLY) > > > { > > > > > > *_Then in this function called this_*, > > > > > > silk_ret = silk_Decode( silk_dec, &st->DecControl, > > > lost_flag, first_frame, > &dec, > > > pcm_ptr, &silk_frame_size ); > > > > > > > > > *_And finally, somehow, the "silk_frame_size" is a ne...
2015 Apr 21
3
Availability of the 1.1.1 stable version
...> > > { > > > > > > > > > > *_Then in this function called this_*, > > > > > > > > > > silk_ret = silk_Decode( silk_dec, > > &st->DecControl, > > > > > lost_flag, > > first_frame, > > > &dec, > > > > > pcm_ptr, &silk_frame_size ); > > > > > > > > > > > &...
2013 May 23
2
ASM runtime detection and optimizations
...uot; struct OpusDecoder { int celt_dec_offset; @@ -70,6 +71,7 @@ struct OpusDecoder { #endif opus_uint32 rangeFinal; + int arch; }; #ifdef FIXED_POINT @@ -119,6 +121,7 @@ int opus_decoder_init(OpusDecoder *st, opus_int32 Fs, int channels) st->Fs = Fs; st->DecControl.API_sampleRate = st->Fs; st->DecControl.nChannelsAPI = st->channels; + st->arch = opus_select_arch(); /* Reset decoder */ ret = silk_InitDecoder( silk_dec ); diff --git a/src/opus_encoder.c b/src/opus_encoder.c index b6424d6..305fad9 100644 --- a/src/opus_encoder.c...
2015 Apr 21
0
Availability of the 1.1.1 stable version
...e != MODE_CELT_ONLY) > > > > { > > > > > > > > *_Then in this function called this_*, > > > > > > > > silk_ret = silk_Decode( silk_dec, > &st->DecControl, > > > > lost_flag, > first_frame, > > &dec, > > > > pcm_ptr, &silk_frame_size ); > > > > > > > > > > > >...
2015 Apr 22
0
Availability of the 1.1.1 stable version
...> { >> > > > > >> > > > > *_Then in this function called this_*, >> > > > > >> > > > > silk_ret = silk_Decode( silk_dec, >> > &st->DecControl, >> > > > > lost_flag, >> > first_frame, >> > > &dec, >> > > > > pcm_ptr, &silk_frame_size ); >> > > > > >> > >...