Skip to content

Commit

Permalink
avcodec/dca_xll: add detection of DTS:X and DTS:X IMAX
Browse files Browse the repository at this point in the history
Signed-off-by: Marth64 <marth64@proxyid.net>
  • Loading branch information
Marth64x authored and Nevcairiel committed Mar 2, 2023
1 parent 96ed043 commit 98a4699
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 13 deletions.
15 changes: 9 additions & 6 deletions libavcodec/avcodec.h
Original file line number Diff line number Diff line change
Expand Up @@ -1584,12 +1584,15 @@ typedef struct AVCodecContext {
#define FF_PROFILE_DNXHR_HQX 4
#define FF_PROFILE_DNXHR_444 5

#define FF_PROFILE_DTS 20
#define FF_PROFILE_DTS_ES 30
#define FF_PROFILE_DTS_96_24 40
#define FF_PROFILE_DTS_HD_HRA 50
#define FF_PROFILE_DTS_HD_MA 60
#define FF_PROFILE_DTS_EXPRESS 70
#define FF_PROFILE_DTS 20
#define FF_PROFILE_DTS_ES 30
#define FF_PROFILE_DTS_96_24 40
#define FF_PROFILE_DTS_HD_HRA 50
#define FF_PROFILE_DTS_HD_MA 60
#define FF_PROFILE_DTS_EXPRESS 70
#define FF_PROFILE_DTS_HD_MA_X 61
#define FF_PROFILE_DTS_HD_MA_X_IMAX 62


#define FF_PROFILE_EAC3_DDP_ATMOS 30

Expand Down
3 changes: 3 additions & 0 deletions libavcodec/dca_syncwords.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@
#define DCA_SYNCWORD_SUBSTREAM_CORE 0x02B09261U
#define DCA_SYNCWORD_REV1AUX 0x9A1105A0U

#define DCA_SYNCWORD_XLL_X 0x02000850U
#define DCA_SYNCWORD_XLL_X_IMAX 0xF14000D0U

#endif /* AVCODEC_DCA_SYNCWORDS_H */
26 changes: 25 additions & 1 deletion libavcodec/dca_xll.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#include "avcodec.h"
#include "libavutil/channel_layout.h"
#include "dcadec.h"
#include "dcadata.h"
Expand Down Expand Up @@ -1054,6 +1055,22 @@ static int parse_frame(DCAXllDecoder *s, const uint8_t *data, int size, DCAExssA
return ret;
if ((ret = parse_band_data(s)) < 0)
return ret;

if (s->frame_size * 8 > FFALIGN(get_bits_count(&s->gb), 32)) {
unsigned int extradata_syncword;

// Align to dword
skip_bits_long(&s->gb, -get_bits_count(&s->gb) & 31);

extradata_syncword = show_bits_long(&s->gb, 32);

if (extradata_syncword == DCA_SYNCWORD_XLL_X) {
s->x_syncword_present = 1;
} else if ((extradata_syncword >> 1) == (DCA_SYNCWORD_XLL_X_IMAX >> 1)) {
s->x_imax_syncword_present = 1;
}
}

if (ff_dca_seek_bits(&s->gb, s->frame_size * 8)) {
av_log(s->avctx, AV_LOG_ERROR, "Read past end of XLL frame\n");
return AVERROR_INVALIDDATA;
Expand Down Expand Up @@ -1428,8 +1445,15 @@ int ff_dca_xll_filter_frame(DCAXllDecoder *s, AVFrame *frame)
return AVERROR(EINVAL);
}

if (s->x_imax_syncword_present) {
avctx->profile = FF_PROFILE_DTS_HD_MA_X_IMAX;
} else if (s->x_syncword_present) {
avctx->profile = FF_PROFILE_DTS_HD_MA_X;
} else {
avctx->profile = FF_PROFILE_DTS_HD_MA;
}

avctx->bits_per_raw_sample = p->storage_bit_res;
avctx->profile = FF_PROFILE_DTS_HD_MA;
avctx->bit_rate = 0;

frame->nb_samples = nsamples = s->nframesamples << (s->nfreqbands - 1);
Expand Down
3 changes: 3 additions & 0 deletions libavcodec/dca_xll.h
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,9 @@ typedef struct DCAXllDecoder {

DCADSPContext *dcadsp;

int x_syncword_present; ///< Syncword for extension data at end of frame (DTS:X) is present
int x_imax_syncword_present; ///< Syncword for extension data at end of frame (DTS:X IMAX) is present

int output_mask;
int32_t *output_samples[DCA_SPEAKER_COUNT];
} DCAXllDecoder;
Expand Down
14 changes: 8 additions & 6 deletions libavcodec/profiles.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,14 @@ const AVProfile ff_aac_profiles[] = {
};

const AVProfile ff_dca_profiles[] = {
{ FF_PROFILE_DTS, "DTS" },
{ FF_PROFILE_DTS_ES, "DTS-ES" },
{ FF_PROFILE_DTS_96_24, "DTS 96/24" },
{ FF_PROFILE_DTS_HD_HRA, "DTS-HD HRA" },
{ FF_PROFILE_DTS_HD_MA, "DTS-HD MA" },
{ FF_PROFILE_DTS_EXPRESS, "DTS Express" },
{ FF_PROFILE_DTS, "DTS" },
{ FF_PROFILE_DTS_ES, "DTS-ES" },
{ FF_PROFILE_DTS_96_24, "DTS 96/24" },
{ FF_PROFILE_DTS_HD_HRA, "DTS-HD HRA" },
{ FF_PROFILE_DTS_HD_MA, "DTS-HD MA" },
{ FF_PROFILE_DTS_HD_MA_X, "DTS-HD MA + DTS:X" },
{ FF_PROFILE_DTS_HD_MA_X_IMAX, "DTS-HD MA + DTS:X IMAX" },
{ FF_PROFILE_DTS_EXPRESS, "DTS Express" },
{ FF_PROFILE_UNKNOWN },
};

Expand Down

0 comments on commit 98a4699

Please sign in to comment.