summaryrefslogtreecommitdiff
path: root/libavcodec/tta.c
Commit message (Expand)AuthorAgeFilesLines
* avcodec/tta: fix regression with new channel layout switchPaul B Mahol2023-02-111-1/+2
* avcodec/tta: simplify final samples conversionPaul B Mahol2022-09-171-12/+8
* avcodec/tta: Check 24bit scaling for overflowMichael Niedermayer2022-09-161-2/+9
* avcodec/codec_internal: Add macro to set AVCodec.long_nameAndreas Rheinhardt2022-09-031-1/+1
* avcodec: Make init-threadsafety the defaultAndreas Rheinhardt2022-07-181-1/+1
* avcodec/codec_internal: Use union for FFCodec decode/encode callbacksAndreas Rheinhardt2022-04-051-1/+1
* avcodec/codec_internal: Make FFCodec.decode use AVFrame*Andreas Rheinhardt2022-04-051-2/+1
* avcodec/codec_internal: Add FFCodec, hide internal part of AVCodecAndreas Rheinhardt2022-03-211-7/+7
* avcodec/internal: Move FF_CODEC_CAP_* to a new header codec_internal.hAndreas Rheinhardt2022-03-211-1/+1
* tta: convert to new channel layout APIAnton Khirnov2022-03-151-5/+13
* avcodec/tta: Cleanup generically on init failureAndreas Rheinhardt2022-02-111-4/+2
* avcodec/thread: Don't use ThreadFrame when unnecessaryAndreas Rheinhardt2022-02-091-2/+1
* Replace all occurences of av_mallocz_array() by av_calloc()Andreas Rheinhardt2021-09-201-1/+2
* avcodec/avcodec: Stop including channel_layout.h in avcodec.hAndreas Rheinhardt2021-07-221-0/+1
* avcodec/tta: Mark decoder as init-threadsafeAndreas Rheinhardt2021-05-021-0/+1
* avcodec: Constify AVCodecsAndreas Rheinhardt2021-04-271-1/+1
* avcodec: set AV_CODEC_CAP_CHANNEL_CONF on decoders which set their own channelsHendrik Leppkes2020-12-101-1/+1
* pthread_frame: merge the functionality for normal decoder init and init_threa...Anton Khirnov2020-04-101-8/+0
* avformat/matroskadec: avcodec/tta: Set extradata_size to 22Andreas Rheinhardt2019-12-041-1/+1
* avcodec/tta: Fix integer overflow in predictionMichael Niedermayer2019-08-291-5/+5
* avcodec/tta: Limit decoder to 16 channelsMichael Niedermayer2019-07-081-1/+1
* avcodec/tta: Fix undefined shiftMichael Niedermayer2019-06-261-1/+1
* avcodec/tta: Don't try to read more than MIN_CACHE_BITS bitsJames Almer2017-04-071-1/+1
* Merge commit '4adbb44ad154cec05e87de60bb827a13c0fe87df'James Almer2017-04-061-1/+1
|\
| * tta: avoid undefined shiftsAnton Khirnov2016-11-251-1/+1
| * tta: use get_unary() instead of a custom implementationAnton Khirnov2016-11-251-11/+2
* | avcodec/ttadsp: cosmeticsJames Almer2016-08-061-2/+2
* | Merge commit 'b668662939de3a02454cfc9ba3e6d10b87527a40'Clément Bœsch2016-06-291-4/+6
|\ \ | |/
| * get_bits: Move BITSTREAM_READER_LE definition before all relevant #includesDiego Biurrun2016-06-071-2/+4
* | avcodec/tta: Un-break build without threadsMichael Niedermayer2015-10-041-2/+0
* | avcodec: use HAVE_THREADS header guards to silence -Wunused-functionGanesh Ajjanagadde2015-10-041-0/+2
* | avcodec/tta: Check init_get_bits8() for failureMichael Niedermayer2015-09-041-1/+5
* | Merge commit 'def97856de6021965db86c25a732d78689bd6bb0'Michael Niedermayer2015-07-271-1/+1
|\ \ | |/
| * lavc: AV-prefix all codec capabilitiesVittorio Giovara2015-07-271-1/+1
* | avcodec/tta: Use av_freep() to avoid leaving stale pointers in memoryMichael Niedermayer2014-11-191-1/+1
* | avcodec/tta: fix macro ()Michael Niedermayer2014-06-071-1/+1
* | avcodec/tta: use av_malloc(z)_array()Michael Niedermayer2014-04-181-2/+2
* | tta: split off hybrid filter processing as ttadspJames Almer2014-02-131-32/+6
* | Merge commit '23a211cbba0b7c9ee694040031b2e5da1be54a00'Michael Niedermayer2013-10-281-1/+2
|\ \ | |/
| * lavc: change all decoders to behave consistently with AV_EF_CRCCHECK.Anton Khirnov2013-10-281-2/+4
* | Merge commit 'b2bed9325dbd6be0da1d91ffed3f513c40274fd2'Michael Niedermayer2013-10-041-1/+1
|\ \ | |/
| * cosmetics: Group .name and .long_name together in codec/format declarationsDiego Biurrun2013-10-031-1/+1
* | avcodec/tta: use init_get_bits8()Michael Niedermayer2013-08-051-1/+1
* | lavc: copy AVCodecContext for threadsPaul B Mahol2013-06-131-0/+2
* | lavc: add ONLY_IF_THREADS_ENABLED where it is missingPaul B Mahol2013-06-061-1/+1
* | ttadec: frame multi-threading supportPaul B Mahol2013-06-051-15/+30
* | tta: use interger instead of pointer to iterate output samples for 24-bit casePaul B Mahol2013-06-021-1/+1
* | tta: move GetBitContext out of private contextPaul B Mahol2013-06-021-19/+19
* | tta: move code that will be shared with encoder to separate filePaul B Mahol2013-06-021-67/+14
* | tta: use get_unary()Paul B Mahol2013-06-011-11/+2