FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mlpdec.c
Go to the documentation of this file.
1 /*
2  * MLP and TrueHD demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  * Copyright (c) 2005 Alex Beregszaszi
5  * Copyright (c) 2015 Carl Eugen Hoyos
6  *
7  * This file is part of FFmpeg.
8  *
9  * FFmpeg is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Lesser General Public
11  * License as published by the Free Software Foundation; either
12  * version 2.1 of the License, or (at your option) any later version.
13  *
14  * FFmpeg is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * Lesser General Public License for more details.
18  *
19  * You should have received a copy of the GNU Lesser General Public
20  * License along with FFmpeg; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22  */
23 
24 #include "avformat.h"
25 #include "rawdec.h"
26 #include "libavutil/intreadwrite.h"
27 
28 static int av_always_inline mlp_thd_probe(AVProbeData *p, uint32_t sync)
29 {
30  const uint8_t *buf, *last_buf = p->buf, *end = p->buf + p->buf_size;
31  int frames = 0, valid = 0, size = 0;
32  int nsubframes = 0;
33 
34  for (buf = p->buf; buf + 8 <= end; buf++) {
35  if (AV_RB32(buf + 4) == sync) {
36  frames++;
37  if (last_buf + size == buf) {
38  valid += 1 + nsubframes / 8;
39  }
40  nsubframes = 0;
41  last_buf = buf;
42  size = (AV_RB16(buf) & 0xfff) * 2;
43  } else if (buf - last_buf == size) {
44  nsubframes++;
45  size += (AV_RB16(buf) & 0xfff) * 2;
46  }
47  }
48  if (valid >= 100)
49  return AVPROBE_SCORE_MAX;
50  return 0;
51 }
52 
53 #if CONFIG_MLP_DEMUXER
54 static int mlp_probe(AVProbeData *p)
55 {
56  return mlp_thd_probe(p, 0xf8726fbb);
57 }
58 
59 AVInputFormat ff_mlp_demuxer = {
60  .name = "mlp",
61  .long_name = NULL_IF_CONFIG_SMALL("raw MLP"),
62  .read_probe = mlp_probe,
63  .read_header = ff_raw_audio_read_header,
64  .read_packet = ff_raw_read_partial_packet,
66  .extensions = "mlp",
67  .raw_codec_id = AV_CODEC_ID_MLP,
68 };
69 #endif
70 
71 #if CONFIG_TRUEHD_DEMUXER
72 static int thd_probe(AVProbeData *p)
73 {
74  return mlp_thd_probe(p, 0xf8726fba);
75 }
76 
77 AVInputFormat ff_truehd_demuxer = {
78  .name = "truehd",
79  .long_name = NULL_IF_CONFIG_SMALL("raw TrueHD"),
80  .read_probe = thd_probe,
81  .read_header = ff_raw_audio_read_header,
82  .read_packet = ff_raw_read_partial_packet,
84  .extensions = "thd",
85  .raw_codec_id = AV_CODEC_ID_TRUEHD,
86 };
87 #endif
88 
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_WB24 unsigned int_TMPL AV_RB16
Definition: bytestream.h:87
uint8_t
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
Definition: bytestream.h:87
ptrdiff_t size
Definition: opengl_enc.c:101
int ff_raw_read_partial_packet(AVFormatContext *s, AVPacket *pkt)
Definition: rawdec.c:35
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:179
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:464
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:463
int ff_raw_audio_read_header(AVFormatContext *s)
Definition: rawdec.c:55
int frames
Definition: movenc.c:65
#define AVFMT_NOTIMESTAMPS
Format does not need / have any timestamps.
Definition: avformat.h:486
void * buf
Definition: avisynth_c.h:690
static int av_always_inline mlp_thd_probe(AVProbeData *p, uint32_t sync)
Definition: mlpdec.c:28
#define AVFMT_GENERIC_INDEX
Use generic index building code.
Definition: avformat.h:487
This structure contains the data a format has to probe a file.
Definition: avformat.h:461
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:473
Main libavformat public API header.
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:664
#define av_always_inline
Definition: attributes.h:39