Displaying 20 results from an estimated 8539 matches for "decoding".
Did you mean:
deciding
2007 Nov 12
0
2 commits - libswfdec/swfdec_loadvars_as.c test/trace
...ecode.as | 49 +++++++++++++++++++++++++++++++++
11 files changed, 151 insertions(+), 1 deletion(-)
New commits:
commit 112da910c93fc66ecb0a5cd5bf8a94a8346398a9
Author: Benjamin Otte <otte at gnome.org>
Date: Mon Nov 12 21:23:25 2007 +0100
add test for Andreas (and variable decoding, too)
diff --git a/test/trace/Makefile.am b/test/trace/Makefile.am
index bbb3ac2..84fcf41 100644
--- a/test/trace/Makefile.am
+++ b/test/trace/Makefile.am
@@ -923,6 +923,15 @@ EXTRA_DIST = \
loadvars-7.swf \
loadvars-7.swf.trace \
loadvars.txt \
+ loadvars-decode.as \
+ loadvars-decode-5.swf...
2004 Sep 10
2
better seeking
When I was trying to find yesterday's xmms-plugin bug, i have noticed
that seeking in stream without seek-table isn't very good. With
attached patch it is much better.
--
Miroslav Lichvar
-------------- next part --------------
--- src/libFLAC/seekable_stream_decoder.c.orig 2003-02-26 19:41:51.000000000 +0100
+++ src/libFLAC/seekable_stream_decoder.c 2003-07-09 23:49:35.000000000 +0200
2004 Sep 10
3
Altivec, automake
I think I've gotten FLAC__lpc_restore_signal() about as good as I'm going to
get it.
Here's what I have:
-a new file, lpc_asm.s, which has the assembly routines
-changes to cpu.h, cpu.c, and stream_decoder.c to enable them
-changes to configure.in to support the new cpu stuff
-a preliminary Makefile.am
-maybe something else I'm forgetting
Now automake complains that configure.in
2004 Sep 10
2
Altivec, automake
...it to work on other
BSDs. However, I don't know what that would be, and I couldn't determine any
safe way to do the check in Linux, nor do I have any way to test anything other
than OS X. The altivec code itself should work on any platform with altivec.
Regarding performance, command-line decoding will see a modest improvement, but
it's really bottlenecked by the MD5 checking (and I don't have a clue as to how
to optimize that). Real-time decoding should be improved substantially -- I've
been meaning to test that and will get back to you with the results.
--
Brady Patterson (bra...
2006 Oct 28
3
better seeking
Ok, the patch from 2003 about improving seeking still didn't make it
to CVS, so here is another try.
I made some benchmarking with the test_seeking utility from flac
sources to show how bad the current seeking is, especially without
seektable. Track used for the experiment had about 50 minutes.
In the following table is average number of seeks and number of
decoded frames required for one
2011 Dec 23
2
Decoding only a certain frame results in different values than when decoding the entire file
My file is 3 hours long, so decoding takes around 5 minutes on an
average computer.
That is a bit too long unfortunately...
Am 23.12.2011 20:38, schrieb Steve Checkoway:
> On Dec 23, 2011, at 10:54, Hermann Weber<hermie.weber at gmx.de> wrote:
>
>> And how many frames does Speex need to "recover"?
>&...
2007 Nov 12
0
3 commits - libswfdec/swfdec_player.c test/trace
libswfdec/swfdec_player.c | 18 +--
test/trace/loadvars-decode-5.swf |binary
test/trace/loadvars-decode-5.swf.trace | 182 +++++++++++++++++++++++++++++++++
test/trace/loadvars-decode-6.swf |binary
test/trace/loadvars-decode-6.swf.trace | 182 +++++++++++++++++++++++++++++++++
test/trace/loadvars-decode-7.swf |binary
test/trace/loadvars-decode-7.swf.trace |
2004 Sep 10
0
Linking against libFLAC_static.lib using MSVC
I'm having a hell of a time linking against libFLAC_static.lib on Win32:
link -out:blib\arch\auto\Audio\FLAC\Decoder\Decoder.dll -dll -nologo -nodefaultlib -debug -opt:ref,icf -libpath:"C:\Perl\lib\CORE" -machine:x86 Decoder.obj libflacsupport.lib C:\Perl\lib\CORE\perl58.lib C:\Perl\lib\CORE\libFLAC_static.lib -def:Decoder.def
Creating library
2007 Apr 08
0
6 commits - libswfdec/Makefile.am libswfdec/swfdec_audio_flv.c libswfdec/swfdec_audio_flv.h libswfdec/swfdec_audio_stream.c libswfdec/swfdec_audio_stream.h libswfdec/swfdec_buffer.c libswfdec/swfdec_codec_adpcm.c libswfdec/swfdec_codec_audio.c
...ffer_queue_new ();
- channels = SWFDEC_AUDIO_OUT_N_CHANNELS (format);
+ if (buffer == NULL)
+ return;
+
+ channels = SWFDEC_AUDIO_OUT_N_CHANNELS (dec->out_format);
swfdec_bits_init (&bits, buffer);
n_bits = swfdec_bits_getbits (&bits, 2) + 2;
SWFDEC_DEBUG ("starting decoding: %u channels, %u bits", channels, n_bits);
/* 22 is minimum required header size */
while (swfdec_bits_left (&bits) >= 22) {
- buffer = swfdec_codec_adpcm_decode_chunk (&bits, n_bits, channels);
+ buffer = swfdec_audio_decoder_adpcm_decode_chunk (&bits, n_bits, chann...
2005 Jan 25
0
bitbuffer optimizations
On Mon, Jan 24, 2005 at 06:31:21PM -0800, Josh Coalson wrote:
> yes, a mere 2 years later it is checked in!
>
> speed improvement for me is roughly 17% testing flac files on
> linux-i386.
Thanks!
In case you would like to check another old patch, I have attached updated
patch for seekable stream decoder, originally posted on 09/07/2003.
--
Miroslav Lichvar
-------------- next
2016 Feb 09
2
Compilation failure using mingw-w64 and gcc-5.3.0
Thank you for the feedback.
This is cross-compiling for mingw-w64-x86_64 using gcc-5.3.0 and
mingw-w64-4.0.4 on GNU/Linux.
Upon attempting to compile now, a large number of errors occur in
flac/decode.c which I have placed at the end of this email. They are eased
by adding this to decode.c:
#if _WIN32
#include <windows.h>
#include <shlobj.h>
#endif
...among the headers.
Then, this
2007 Apr 06
0
3 commits - libswfdec-gtk/swfdec_gtk_loader.c libswfdec/Makefile.am libswfdec/swfdec_codec.c libswfdec/swfdec_codec_ffmpeg.c libswfdec/swfdec_codec_gst.c libswfdec/swfdec_codec.h libswfdec/swfdec_codec_screen.c libswfdec/swfdec_codec_video.c
...| 10 ++
19 files changed, 418 insertions(+), 328 deletions(-)
New commits:
diff-tree f9ed2528c36837320c94bb1fec2313445c85c886 (from 25c390688e91b470212ae7eade090d28d0546a00)
Author: Benjamin Otte <otte@gnome.org>
Date: Fri Apr 6 15:45:20 2007 +0200
revamp the video decoding API
lots of code saved, and VP6 with GStreamer works now
diff --git a/libswfdec/Makefile.am b/libswfdec/Makefile.am
index 0ad15c5..fa1abb6 100644
--- a/libswfdec/Makefile.am
+++ b/libswfdec/Makefile.am
@@ -35,6 +35,7 @@ libswfdec_@SWFDEC_MAJORMINOR@_la_SOURCES
swfdec_codec_adpcm.c \
$...
2006 Nov 03
2
better seeking
...if(!FLAC__stream_decoder_get_decode_position(decoder, &upper_bound)) {
+ decoder->protected_->state = FLAC__STREAM_DECODER_SEEK_ERROR;
+ return false;
+ }
+ }
+ else {
+ /* target_sample >= this_frame_sample + this frame's blocksize */
+
+ /* we are close, continue in decoding next frames */
+ if(target_sample < this_frame_sample + 4 * decoder->private_->last_frame.header.blocksize)
+ needs_seek = false;
+
+ lower_bound_sample = this_frame_sample + decoder->private_->last_frame.header.blocksize;
+ if(!FLAC__stream_decoder_get_decode_position(de...
2007 Dec 21
1
Continous decoding of several audio files without destroying speex_decoder
Hi All,
We are using speex decoder only for narrow band decoding.
Quite often, even though source frame is not silence, decoded audio is
silence.
I wonder there is a problem in the way we uses speex decoder API.
Basically, we initialize speex decoder only once and just reset the decoder
before we decoding another file.
Do we need to intialize speex decoder and d...
2005 Jun 20
1
NB decode in SB
...band
decode is downshifted at the end. In this same version the wideband
then upshifts the signal by the same amount.
I would like to do away with the downshift on the narrowband side and
the upshift on the wideband side and just past the decoded signal
through. To do this and allow for the decoding of narrowband only
signals I need to detect who the calling function is to the narrowband
decode.
What I was wondering is if there was already a member variable that held
the current decode state.
-Fritz
Jean-Marc Valin wrote:
>Could you explain a bit more what your question is?
>
>...
2014 Dec 15
1
[PATCH] src/libFLAC/stream_decoder.c : Rework fix for seeking bug.
To avoid crash caused by an unbound LPC decoding when predictor order is
larger than blocksize, the sanity check needs to be moved to the subframe
decoding functions.
---
src/libFLAC/stream_decoder.c | 30 ++++++++++++------------------
1 file changed, 12 insertions(+), 18 deletions(-)
diff --git a/src/libFLAC/stream_decoder.c b/src/libFLAC/str...
2013 Jul 01
2
About Decode Streaming
...e
> latency to be sure at least one complete block is in the receiving buffer.
> So, only call FLAC__stream_decoder_process_single() if the buffer is filled
> with enough data. If you want the lowest latency possible you could force a
> small block size or let the encoding PC signal the decoding PC when a block
> is finished, so the decoding process can be sure there is a full block in
> the buffer.
>
> Oh, and you might take a look at the reading callback, maybe that one is
> overreading the buffer?
>
> I hope that helps.
>
>
> On 01-07-13 17:51, Burak Or?un...
2005 Sep 27
4
Speex ver 1.1.10 decoder problem
...Somehow, I couldn't get the
original wav file back. I used both Speex ver 1.1.6
and ver 1.1.10 to both encode and decode, despite the
same output file sizes, the output file from ver
1.1.10 decoder only lasts for a few seconds (the file
is supposed to be a few minutes long).
I have also tried decoding the wav file that was
encoded with ver 1.1.10 encoder with ver 1.1.6 decoder
and it works fine.. So I supposed the problem is in
the ver 1.1.10 decoder.
Have anyone experienced the same problem? Any
suggestions or comments would be really appreciated
Thanks heaps
______________________________...
2006 Dec 05
2
intro + specification remarks + some questions
...- 'packet decode' floor curves
- 'packet decode' residues
- synthesise
I.e. a bit more highlevel structure to the docs would be cool and
provide a lot of clarity. The lowlevel pseudocode is great and highly
readable, but I did notice that somewhere halfway (after decoding the
headers) the style changed quite a bit leading me to suspect two authors
at work.
* The second part (packet decode / synthesis) is the probably the
hardest to read/understand, and some of the pseudocode is on the edge of
difficult to grasp.
* 7.2.2. header decode / 7.2.2.1. packet decode...
2011 Dec 21
3
Decoding only a certain frame results in different values than when decoding the entire file
...our decoder state memory that is not longer sync ?
> When a decoder processes a frame, it uses that frame and its memory
state (affected by the previous frames) to generate the output samples.
If you skip the previous frames, the decoder state memory will not be
the same (as when you do full decoding) which causes the output to be
different.
> I hope this helps.
> L.
>
>
> On Wed, Dec 21, 2011 at 5:17 AM, Hermann Weber <hermie.weber at gmx.de>
wrote:
>
> Hello!
>
> I am still using version 1.0.4.
>
> When I have encoded a larger fi...