index
:
ffmpeg-streaming
master
Raptor Engineering's fork of FFmpeg with streaming enhancements https://git.ffmpeg.org/ffmpeg.git
Raptor Engineering, LLC
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
libavcodec
/
apedec.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
dsputil: Split bswap*_buf() off into a separate context
Diego Biurrun
2014-06-22
1
-4
/
+5
*
ape: Replace memset(0) by zero initialization
Diego Biurrun
2014-06-22
1
-3
/
+1
*
dsputil: Move APE-specific bits into apedsp
Diego Biurrun
2014-05-29
1
-5
/
+28
*
avcodec: more correct printf specifiers
Diego Biurrun
2014-03-22
1
-1
/
+4
*
cosmetics: Group .name and .long_name together in codec/format declarations
Diego Biurrun
2013-10-03
1
-1
/
+1
*
apedec: do not buffer decoded samples over AVPackets
Rafaël Carré
2013-08-28
1
-3
/
+1
*
ape: 3.80-3.92 decoding support
Kostya Shishkov
2013-03-25
1
-22
/
+455
*
add support for Monkey's Audio versions from 3.93
Kostya Shishkov
2013-03-15
1
-2
/
+89
*
ape: provide two additional bytes in buffer for old MAC versions
Kostya Shishkov
2013-03-15
1
-1
/
+3
*
ape: make version-dependent decoding functions called via pointers
Kostya Shishkov
2013-03-15
1
-59
/
+123
*
avcodec: av_log_ask_for_sample() ---> avpriv_request_sample()
Diego Biurrun
2013-03-13
1
-2
/
+2
*
lavc decoders: work with refcounted frames.
Anton Khirnov
2013-03-08
1
-1
/
+1
*
ape: decode directly to the user-provided AVFrame
Justin Ruggles
2013-02-12
1
-11
/
+7
*
lavc: add a wrapper for AVCodecContext.get_buffer().
Anton Khirnov
2012-12-04
1
-1
/
+2
*
Include libavutil/channel_layout.h instead of libavutil/audioconvert.h
Justin Ruggles
2012-11-11
1
-3
/
+3
*
apedec: output in planar sample format
Justin Ruggles
2012-10-01
1
-19
/
+20
*
avopt: Store defaults for AV_OPT_TYPE_INT in the i64 union member
Martin Storsjö
2012-09-04
1
-1
/
+1
*
avopt: Store defaults for AV_OPT_TYPE_CONST in the i64 union member
Martin Storsjö
2012-09-04
1
-1
/
+1
*
Replace all CODEC_ID_* with AV_CODEC_ID_*
Anton Khirnov
2012-08-07
1
-1
/
+1
*
ape: Use unsigned integer maths
Christophe Gisquet
2012-05-10
1
-2
/
+2
*
cosmetics: Align codec declarations
Martin Storsjö
2012-04-06
1
-2
/
+2
*
apedec: check bits <= 32.
Michael Niedermayer
2012-03-31
1
-1
/
+4
*
dsputil: Add ff_ prefix to the dsputil*_init* functions
Martin Storsjö
2012-02-15
1
-1
/
+1
*
apedec: allow the user to set the maximum number of output samples per call
Justin Ruggles
2012-02-07
1
-2
/
+20
*
apedec: do not unnecessarily zero output samples for mono frames
Justin Ruggles
2012-02-07
1
-11
/
+4
*
apedec: allocate a single flat buffer for decoded samples
Justin Ruggles
2012-02-07
1
-24
/
+29
*
apedec: use sizeof(field) instead of sizeof(type)
Justin Ruggles
2012-02-07
1
-8
/
+10
*
apedec: 8bit and 24bit support
Paul B Mahol
2012-02-04
1
-11
/
+45
*
apedec: remove unneeded #include of get_bits.h and associated macro
Justin Ruggles
2012-02-02
1
-2
/
+0
*
apedec: av_fast_malloc() instead of av_realloc()
Justin Ruggles
2012-02-02
1
-4
/
+5
*
apedec: fix handling of packet sizes that are not a multiple of 4 bytes
Justin Ruggles
2012-02-02
1
-6
/
+11
*
Drop ALT_ prefix from BITSTREAM_READER_LE name.
Diego Biurrun
2011-12-22
1
-1
/
+1
*
Add avcodec_decode_audio4().
Justin Ruggles
2011-12-02
1
-15
/
+22
*
apedec: fix signed integer overflows
Mans Rullgard
2011-11-26
1
-1
/
+1
*
apedec: consume the whole packet when copying to the decoder buffer.
Justin Ruggles
2011-11-10
1
-7
/
+9
*
apedec: do not needlessly copy s->samples to nblocks.
Justin Ruggles
2011-11-10
1
-4
/
+2
*
apedec: check output buffer size after calculating actual output size
Justin Ruggles
2011-11-10
1
-8
/
+10
*
apedec: remove unneeded entropy decoder normalization.
Justin Ruggles
2011-11-10
1
-11
/
+1
*
apedec: assert that s->samples is not negative before trying to decode
Justin Ruggles
2011-10-28
1
-0
/
+5
*
apedec: use FFALIGN macro for internal data buffer size
Justin Ruggles
2011-10-28
1
-1
/
+1
*
apedec: do not keep incrementing the input data pointer past the end of the
Justin Ruggles
2011-10-28
1
-3
/
+6
*
apedec: check for input buffer overflow while reading frame header
Justin Ruggles
2011-10-28
1
-6
/
+28
*
apedec: use unsigned int for offset
Justin Ruggles
2011-10-28
1
-4
/
+5
*
apedec: remove pointless increment of 'buf'
Justin Ruggles
2011-10-28
1
-1
/
+0
*
apedec: set s->currentframeblocks after validating nblocks
Justin Ruggles
2011-10-28
1
-2
/
+1
*
apedec: use unsigned int for 'nblocks' and make sure that it's within int range
Justin Ruggles
2011-10-28
1
-4
/
+4
*
apedec: do not set s->samples until after validation.
Justin Ruggles
2011-10-28
1
-2
/
+3
*
apedec: check for data buffer realloc failure
Justin Ruggles
2011-10-28
1
-1
/
+4
*
apedec: return meaningful error values in ape_decode_frame()
Justin Ruggles
2011-10-28
1
-3
/
+3
*
apedec: correct an error message
Justin Ruggles
2011-10-28
1
-3
/
+1
[next]