FFmpeg
dtsdec.c
Go to the documentation of this file.
1 /*
2  * RAW DTS demuxer
3  * Copyright (c) 2008 Benjamin Larsson
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21 
22 #include "libavutil/crc.h"
23 
24 #include "libavcodec/bytestream.h"
25 #include "libavcodec/dca.h"
27 #include "libavcodec/get_bits.h"
28 
29 #include "avformat.h"
30 #include "rawdec.h"
31 
32 static int dts_probe(const AVProbeData *p)
33 {
34  const uint8_t *buf, *bufp;
35  uint32_t state = -1;
36  int markers[4*16] = {0};
37  int exss_markers = 0, exss_nextpos = 0;
38  int sum, max, pos, ret, i;
39  int64_t diff = 0;
41 
42  for (pos = FFMIN(4096, p->buf_size); pos < p->buf_size - 2; pos += 2) {
43  int marker, wide_hdr, hdr_size, framesize;
45  GetBitContext gb;
46 
47  bufp = buf = p->buf + pos;
48  state = (state << 16) | bytestream_get_be16(&bufp);
49 
50  if (pos >= 4)
51  diff += FFABS(((int16_t)AV_RL16(buf)) - (int16_t)AV_RL16(buf-4));
52 
53  /* extension substream (EXSS) */
55  if (pos < exss_nextpos)
56  continue;
57 
58  init_get_bits(&gb, buf - 2, 96);
59  skip_bits_long(&gb, 42);
60 
61  wide_hdr = get_bits1(&gb);
62  hdr_size = get_bits(&gb, 8 + 4 * wide_hdr) + 1;
63  framesize = get_bits(&gb, 16 + 4 * wide_hdr) + 1;
64  if (hdr_size & 3 || framesize & 3)
65  continue;
66  if (hdr_size < 16 || framesize < hdr_size)
67  continue;
68  if (pos - 2 + hdr_size > p->buf_size)
69  continue;
70  if (av_crc(av_crc_get_table(AV_CRC_16_CCITT), 0xffff, buf + 3, hdr_size - 5))
71  continue;
72 
73  if (pos == exss_nextpos)
74  exss_markers++;
75  else
76  exss_markers = FFMAX(1, exss_markers - 1);
77  exss_nextpos = pos + framesize;
78  continue;
79  }
80 
81  /* regular bitstream */
82  if (state == DCA_SYNCWORD_CORE_BE &&
83  (bytestream_get_be16(&bufp) & 0xFC00) == 0xFC00)
84  marker = 0;
85  else if (state == DCA_SYNCWORD_CORE_LE &&
86  (bytestream_get_be16(&bufp) & 0x00FC) == 0x00FC)
87  marker = 1;
88 
89  /* 14 bits big-endian bitstream */
90  else if (state == DCA_SYNCWORD_CORE_14B_BE &&
91  (bytestream_get_be16(&bufp) & 0xFFF0) == 0x07F0)
92  marker = 2;
93 
94  /* 14 bits little-endian bitstream */
95  else if (state == DCA_SYNCWORD_CORE_14B_LE &&
96  (bytestream_get_be16(&bufp) & 0xF0FF) == 0xF007)
97  marker = 3;
98  else
99  continue;
100 
102  hdr, DCA_CORE_FRAME_HEADER_SIZE)) < 0)
103  continue;
104  if (avpriv_dca_parse_core_frame_header(&h, hdr, ret) < 0)
105  continue;
106 
107  marker += 4 * h.sr_code;
108 
109  markers[marker] ++;
110  }
111 
112  if (exss_markers > 3)
113  return AVPROBE_SCORE_EXTENSION + 1;
114 
115  sum = max = 0;
116  for (i=0; i<FF_ARRAY_ELEMS(markers); i++) {
117  sum += markers[i];
118  if (markers[max] < markers[i])
119  max = i;
120  }
121 
122  if (markers[max] > 3 && p->buf_size / markers[max] < 32*1024 &&
123  markers[max] * 4 > sum * 3 &&
124  diff / p->buf_size > 200)
125  return AVPROBE_SCORE_EXTENSION + 1;
126 
127  return 0;
128 }
129 
132  .name = "dts",
133  .long_name = NULL_IF_CONFIG_SMALL("raw DTS"),
134  .read_probe = dts_probe,
135  .read_header = ff_raw_audio_read_header,
136  .read_packet = ff_raw_read_partial_packet,
137  .flags = AVFMT_GENERIC_INDEX,
138  .extensions = "dts",
139  .raw_codec_id = AV_CODEC_ID_DTS,
140  .priv_data_size = sizeof(FFRawDemuxerContext),
141  .priv_class = &dts_demuxer_class,};
ff_dts_demuxer
AVInputFormat ff_dts_demuxer
Definition: dtsdec.c:131
skip_bits_long
static void skip_bits_long(GetBitContext *s, int n)
Skips the specified number of bits.
Definition: get_bits.h:291
dca.h
DCA_SYNCWORD_CORE_14B_BE
#define DCA_SYNCWORD_CORE_14B_BE
Definition: dca_syncwords.h:24
dts_probe
static int dts_probe(const AVProbeData *p)
Definition: dtsdec.c:32
max
#define max(a, b)
Definition: cuda_runtime.h:33
AVProbeData::buf_size
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:449
init_get_bits
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:659
crc.h
get_bits
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:379
avpriv_dca_convert_bitstream
int avpriv_dca_convert_bitstream(const uint8_t *src, int src_size, uint8_t *dst, int max_size)
Convert bitstream to one representation based on sync marker.
Definition: dca.c:54
GetBitContext
Definition: get_bits.h:61
FFRawDemuxerContext
Definition: rawdec.h:37
AVFMT_GENERIC_INDEX
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:468
state
static struct @313 state
buf
void * buf
Definition: avisynth_c.h:766
AVInputFormat
Definition: avformat.h:640
ff_raw_read_partial_packet
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
Definition: rawdec.c:35
AVInputFormat::name
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:645
AVProbeData::buf
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:448
get_bits.h
AV_RL16
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_RL16
Definition: bytestream.h:90
dca_syncwords.h
FFABS
#define FFABS(a)
Absolute value, Note, INT_MIN / INT64_MIN result in undefined behavior as they are not representable ...
Definition: common.h:72
rawdec.h
get_bits1
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:498
ff_raw_audio_read_header
int ff_raw_audio_read_header(AVFormatContext *s)
Definition: rawdec.c:56
AVProbeData
This structure contains the data a format has to probe a file.
Definition: avformat.h:446
AVPROBE_SCORE_EXTENSION
#define AVPROBE_SCORE_EXTENSION
score for file extension
Definition: avformat.h:456
DCA_SYNCWORD_CORE_BE
#define DCA_SYNCWORD_CORE_BE
Definition: dca_syncwords.h:22
DCACoreFrameHeader
Definition: dca.h:51
NULL_IF_CONFIG_SMALL
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:188
FFMAX
#define FFMAX(a, b)
Definition: common.h:94
AV_CODEC_ID_DTS
@ AV_CODEC_ID_DTS
Definition: avcodec.h:568
DCA_SYNCWORD_CORE_14B_LE
#define DCA_SYNCWORD_CORE_14B_LE
Definition: dca_syncwords.h:25
FFMIN
#define FFMIN(a, b)
Definition: common.h:96
av_crc_get_table
const AVCRC * av_crc_get_table(AVCRCId crc_id)
Get an initialized standard CRC table.
Definition: crc.c:374
i
#define i(width, name, range_min, range_max)
Definition: cbs_h2645.c:259
AV_CRC_16_CCITT
@ AV_CRC_16_CCITT
Definition: crc.h:52
uint8_t
uint8_t
Definition: audio_convert.c:194
DCA_SYNCWORD_SUBSTREAM
#define DCA_SYNCWORD_SUBSTREAM
Definition: dca_syncwords.h:32
ret
ret
Definition: filter_design.txt:187
DCA_CORE_FRAME_HEADER_SIZE
#define DCA_CORE_FRAME_HEADER_SIZE
Definition: dca.h:37
avformat.h
AV_INPUT_BUFFER_PADDING_SIZE
#define AV_INPUT_BUFFER_PADDING_SIZE
Definition: avcodec.h:790
FF_ARRAY_ELEMS
#define FF_ARRAY_ELEMS(a)
Definition: sinewin_tablegen_template.c:38
av_crc
uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length)
Calculate the CRC of a block.
Definition: crc.c:392
DCA_SYNCWORD_CORE_LE
#define DCA_SYNCWORD_CORE_LE
Definition: dca_syncwords.h:23
avpriv_dca_parse_core_frame_header
int avpriv_dca_parse_core_frame_header(DCACoreFrameHeader *h, const uint8_t *buf, int size)
Parse and validate core frame header.
Definition: dca.c:149
diff
static av_always_inline int diff(const uint32_t a, const uint32_t b)
Definition: vf_palettegen.c:136
bytestream.h
h
h
Definition: vp9dsp_template.c:2038
FF_RAW_DEMUXER_CLASS
#define FF_RAW_DEMUXER_CLASS(name)
Definition: rawdec.h:55