summaryrefslogtreecommitdiff
path: root/libavcodec/dvaudiodec.c
Commit message (Collapse)AuthorAge
* avcodec/avcodec: Stop including channel_layout.h in avcodec.hAndreas Rheinhardt2021-07-22
| | | | | | Also include channel_layout.h directly wherever used. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avcodec/dvaudiodec: Mark decoder as init-threadsafeAndreas Rheinhardt2021-05-02
| | | | Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
* avcodec: Constify AVCodecsAndreas Rheinhardt2021-04-27
| | | | | | | | | | Given that the AVCodec.next pointer has now been removed, most of the AVCodecs are not modified at all any more and can therefore be made const (as this patch does); the only exceptions are the very few codecs for external libraries that have a init_static_data callback. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
* avcodec/dvaudiodec: now that we got samples, fix 12bit casePaul B Mahol2016-03-23
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec: add dvaudio parserPaul B Mahol2016-01-28
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/dvaudiodec: support cases when codec_tag is not set but block_align isPaul B Mahol2016-01-27
| | | | | | Support packets larger than block size, return single block size. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/dvaudiodec: set channel layoutPaul B Mahol2016-01-27
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec/dvaudiodec: only stereo makes sensePaul B Mahol2016-01-26
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* avcodec: add Ulead DV audio decoderPaul B Mahol2016-01-26
Fixes #1564. Signed-off-by: Paul B Mahol <onemda@gmail.com>