FFmpeg  4.4.7
dtshddec.c
Go to the documentation of this file.
1 /*
2  * Raw DTS-HD demuxer
3  * Copyright (c) 2012 Paul B Mahol
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/intreadwrite.h"
23 #include "libavutil/dict.h"
24 #include "libavcodec/dca.h"
25 #include "avformat.h"
26 #include "internal.h"
27 #include "avio_internal.h"
28 
29 #define AUPR_HDR 0x415550522D484452
30 #define AUPRINFO 0x41555052494E464F
31 #define BITSHVTB 0x4249545348565442
32 #define BLACKOUT 0x424C41434B4F5554
33 #define BRANCHPT 0x4252414E43485054
34 #define BUILDVER 0x4255494C44564552
35 #define CORESSMD 0x434F524553534D44
36 #define DTSHDHDR 0x4454534844484452
37 #define EXTSS_MD 0x45585453535f4d44
38 #define FILEINFO 0x46494C45494E464F
39 #define NAVI_TBL 0x4E4156492D54424C
40 #define STRMDATA 0x5354524D44415441
41 #define TIMECODE 0x54494D45434F4445
42 
43 typedef struct DTSHDDemuxContext {
44  uint64_t data_end;
46 
47 static int dtshd_probe(const AVProbeData *p)
48 {
49  if (AV_RB64(p->buf) == DTSHDHDR)
50  return AVPROBE_SCORE_MAX;
51  return 0;
52 }
53 
55 {
56  DTSHDDemuxContext *dtshd = s->priv_data;
57  AVIOContext *pb = s->pb;
58  uint64_t chunk_type, chunk_size;
59  int64_t duration, data_start;
60  AVStream *st;
61  int ret;
62  char *value;
63 
64  st = avformat_new_stream(s, NULL);
65  if (!st)
66  return AVERROR(ENOMEM);
70 
71  for (;;) {
72  chunk_type = avio_rb64(pb);
73  chunk_size = avio_rb64(pb);
74 
75  if (avio_feof(pb))
76  break;
77 
78  if (chunk_size < 4) {
79  av_log(s, AV_LOG_ERROR, "chunk size too small\n");
80  return AVERROR_INVALIDDATA;
81  }
82  if (chunk_size > ((uint64_t)1 << 61)) {
83  av_log(s, AV_LOG_ERROR, "chunk size too big\n");
84  return AVERROR_INVALIDDATA;
85  }
86 
87  switch (chunk_type) {
88  case STRMDATA:
89  data_start = avio_tell(pb);
90  dtshd->data_end = data_start + chunk_size;
91  if (dtshd->data_end <= chunk_size)
92  return AVERROR_INVALIDDATA;
93  if (!(pb->seekable & AVIO_SEEKABLE_NORMAL))
94  goto break_loop;
95  goto skip;
96  break;
97  case AUPR_HDR:
98  if (chunk_size < 21)
99  return AVERROR_INVALIDDATA;
100  avio_skip(pb, 3);
101  st->codecpar->sample_rate = avio_rb24(pb);
102  if (!st->codecpar->sample_rate)
103  return AVERROR_INVALIDDATA;
104  duration = avio_rb32(pb); // num_frames
105  duration *= avio_rb16(pb); // samples_per_frames
106  st->duration = duration;
107  avio_skip(pb, 5);
110  avio_skip(pb, chunk_size - 21);
111  break;
112  case FILEINFO:
113  if (chunk_size > INT_MAX)
114  goto skip;
115  value = av_malloc(chunk_size);
116  if (!value)
117  goto skip;
118  ret = ffio_read_size(pb, value, chunk_size);
119  if (ret < 0) {
120  av_free(value);
121  goto skip;
122  }
123  value[chunk_size - 1] = 0;
124  av_dict_set(&s->metadata, "fileinfo", value,
126  break;
127  default:
128 skip:
129  ret = avio_skip(pb, chunk_size);
130  if (ret < 0)
131  return ret;
132  };
133  }
134 
135  if (!dtshd->data_end)
136  return AVERROR_EOF;
137 
138  avio_seek(pb, data_start, SEEK_SET);
139 
140 break_loop:
141  if (st->codecpar->sample_rate)
142  avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
143 
144  return 0;
145 }
146 
148 {
149  DTSHDDemuxContext *dtshd = s->priv_data;
150  int64_t size, left;
151  int ret;
152 
153  left = dtshd->data_end - avio_tell(s->pb);
154  size = FFMIN(left, 1024);
155  if (size <= 0)
156  return AVERROR_EOF;
157 
158  ret = av_get_packet(s->pb, pkt, size);
159  if (ret < 0)
160  return ret;
161 
162  pkt->stream_index = 0;
163 
164  return ret;
165 }
166 
168  .name = "dtshd",
169  .long_name = NULL_IF_CONFIG_SMALL("raw DTS-HD"),
170  .priv_data_size = sizeof(DTSHDDemuxContext),
175  .extensions = "dtshd",
176  .raw_codec_id = AV_CODEC_ID_DTS,
177 };
Main libavformat public API header.
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:453
int av_get_packet(AVIOContext *s, AVPacket *pkt, int size)
Allocate and read the payload of a packet and initialize its fields with default values.
Definition: utils.c:310
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:463
@ AVSTREAM_PARSE_FULL_RAW
full parsing and repack with timestamp and position generation by parser for raw this assumes that ea...
Definition: avformat.h:798
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:253
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
Definition: avio.h:40
uint64_t avio_rb64(AVIOContext *s)
Definition: aviobuf.c:902
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:766
int avio_feof(AVIOContext *s)
Similar to feof() but also returns nonzero on read errors.
Definition: aviobuf.c:364
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:557
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:337
unsigned int avio_rb24(AVIOContext *s)
Definition: aviobuf.c:774
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:781
int ffio_read_size(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:682
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
#define AV_RB64
Definition: intreadwrite.h:164
#define flags(name, subs,...)
Definition: cbs_av1.c:572
#define s(width, name)
Definition: cbs_vp9.c:257
#define FFMIN(a, b)
Definition: common.h:105
#define NULL
Definition: coverity.c:32
long long int64_t
Definition: coverity.c:34
static int ff_dca_count_chs_for_mask(unsigned int mask)
Return number of individual channels in DCASpeakerPair mask.
Definition: dca.h:159
Public dictionary API.
#define DTSHDHDR
Definition: dtshddec.c:36
#define AUPR_HDR
Definition: dtshddec.c:29
#define STRMDATA
Definition: dtshddec.c:40
static int raw_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: dtshddec.c:147
#define FILEINFO
Definition: dtshddec.c:38
AVInputFormat ff_dtshd_demuxer
Definition: dtshddec.c:167
static int dtshd_read_header(AVFormatContext *s)
Definition: dtshddec.c:54
static int dtshd_probe(const AVProbeData *p)
Definition: dtshddec.c:47
double value
Definition: eval.c:100
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:550
@ AV_CODEC_ID_DTS
Definition: codec_id.h:428
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:4509
#define AV_DICT_DONT_STRDUP_VAL
Take ownership of a value that's been allocated with av_malloc() or another memory allocation functio...
Definition: dict.h:74
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:70
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
#define AVERROR_EOF
End of file.
Definition: error.h:55
#define AVERROR(e)
Definition: error.h:43
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:194
@ AVMEDIA_TYPE_AUDIO
Definition: avutil.h:202
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4945
static int read_probe(const AVProbeData *pd)
Definition: jvdec.c:55
common internal API header
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification.
Definition: internal.h:117
int channels
Audio only.
Definition: codec_par.h:166
enum AVMediaType codec_type
General type of the encoded data.
Definition: codec_par.h:56
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: codec_par.h:60
int sample_rate
Audio only.
Definition: codec_par.h:170
int initial_padding
Audio only.
Definition: codec_par.h:189
Format I/O context.
Definition: avformat.h:1232
Bytestream IO Context.
Definition: avio.h:161
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:260
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:645
This structure stores compressed data.
Definition: packet.h:346
int stream_index
Definition: packet.h:371
This structure contains the data a format has to probe a file.
Definition: avformat.h:441
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:443
Stream structure.
Definition: avformat.h:873
AVCodecParameters * codecpar
Codec parameters associated with this stream.
Definition: avformat.h:1038
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:922
enum AVStreamParseType need_parsing
Definition: avformat.h:1081
uint64_t data_end
Definition: dtshddec.c:44
#define av_free(p)
#define av_malloc(s)
#define av_log(a,...)
int64_t duration
Definition: movenc.c:64
AVPacket * pkt
Definition: movenc.c:59
int size