thp.c
Go to the documentation of this file.
1 /*
2  * THP Demuxer
3  * Copyright (c) 2007 Marco Gerards
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/intfloat.h"
24 #include "avformat.h"
25 #include "internal.h"
26 
27 typedef struct ThpDemuxContext {
28  int version;
32  int compoff;
33  int framecnt;
35  int frame;
40  int compcount;
41  unsigned char components[16];
43  int has_audio;
44  unsigned audiosize;
46 
47 
48 static int thp_probe(AVProbeData *p)
49 {
50  /* check file header */
51  if (AV_RL32(p->buf) == MKTAG('T', 'H', 'P', '\0'))
52  return AVPROBE_SCORE_MAX;
53  else
54  return 0;
55 }
56 
58 {
59  ThpDemuxContext *thp = s->priv_data;
60  AVStream *st;
61  AVIOContext *pb = s->pb;
62  int64_t fsize= avio_size(pb);
63  int i;
64 
65  /* Read the file header. */
66  avio_rb32(pb); /* Skip Magic. */
67  thp->version = avio_rb32(pb);
68 
69  avio_rb32(pb); /* Max buf size. */
70  avio_rb32(pb); /* Max samples. */
71 
72  thp->fps = av_d2q(av_int2float(avio_rb32(pb)), INT_MAX);
73  thp->framecnt = avio_rb32(pb);
74  thp->first_framesz = avio_rb32(pb);
75  pb->maxsize = avio_rb32(pb);
76  if(fsize>0 && (!pb->maxsize || fsize < pb->maxsize))
77  pb->maxsize= fsize;
78 
79  thp->compoff = avio_rb32(pb);
80  avio_rb32(pb); /* offsetDataOffset. */
81  thp->first_frame = avio_rb32(pb);
82  thp->last_frame = avio_rb32(pb);
83 
84  thp->next_framesz = thp->first_framesz;
85  thp->next_frame = thp->first_frame;
86 
87  /* Read the component structure. */
88  avio_seek (pb, thp->compoff, SEEK_SET);
89  thp->compcount = avio_rb32(pb);
90 
91  /* Read the list of component types. */
92  avio_read(pb, thp->components, 16);
93 
94  for (i = 0; i < thp->compcount; i++) {
95  if (thp->components[i] == 0) {
96  if (thp->vst != 0)
97  break;
98 
99  /* Video component. */
100  st = avformat_new_stream(s, NULL);
101  if (!st)
102  return AVERROR(ENOMEM);
103 
104  /* The denominator and numerator are switched because 1/fps
105  is required. */
106  avpriv_set_pts_info(st, 64, thp->fps.den, thp->fps.num);
109  st->codec->codec_tag = 0; /* no fourcc */
110  st->codec->width = avio_rb32(pb);
111  st->codec->height = avio_rb32(pb);
112  st->codec->sample_rate = av_q2d(thp->fps);
113  st->nb_frames =
114  st->duration = thp->framecnt;
115  thp->vst = st;
116  thp->video_stream_index = st->index;
117 
118  if (thp->version == 0x11000)
119  avio_rb32(pb); /* Unknown. */
120  } else if (thp->components[i] == 1) {
121  if (thp->has_audio != 0)
122  break;
123 
124  /* Audio component. */
125  st = avformat_new_stream(s, NULL);
126  if (!st)
127  return AVERROR(ENOMEM);
128 
131  st->codec->codec_tag = 0; /* no fourcc */
132  st->codec->channels = avio_rb32(pb); /* numChannels. */
133  st->codec->sample_rate = avio_rb32(pb); /* Frequency. */
134 
135  avpriv_set_pts_info(st, 64, 1, st->codec->sample_rate);
136 
137  thp->audio_stream_index = st->index;
138  thp->has_audio = 1;
139  }
140  }
141 
142  return 0;
143 }
144 
146  AVPacket *pkt)
147 {
148  ThpDemuxContext *thp = s->priv_data;
149  AVIOContext *pb = s->pb;
150  unsigned int size;
151  int ret;
152 
153  if (thp->audiosize == 0) {
154  /* Terminate when last frame is reached. */
155  if (thp->frame >= thp->framecnt)
156  return AVERROR_EOF;
157 
158  avio_seek(pb, thp->next_frame, SEEK_SET);
159 
160  /* Locate the next frame and read out its size. */
161  thp->next_frame += thp->next_framesz;
162  thp->next_framesz = avio_rb32(pb);
163 
164  avio_rb32(pb); /* Previous total size. */
165  size = avio_rb32(pb); /* Total size of this frame. */
166 
167  /* Store the audiosize so the next time this function is called,
168  the audio can be read. */
169  if (thp->has_audio)
170  thp->audiosize = avio_rb32(pb); /* Audio size. */
171  else
172  thp->frame++;
173 
174  ret = av_get_packet(pb, pkt, size);
175  if (ret != size) {
176  av_free_packet(pkt);
177  return AVERROR(EIO);
178  }
179 
180  pkt->stream_index = thp->video_stream_index;
181  } else {
182  ret = av_get_packet(pb, pkt, thp->audiosize);
183  if (ret != thp->audiosize) {
184  av_free_packet(pkt);
185  return AVERROR(EIO);
186  }
187 
188  pkt->stream_index = thp->audio_stream_index;
189  if (thp->audiosize >= 8)
190  pkt->duration = AV_RB32(&pkt->data[4]);
191 
192  thp->audiosize = 0;
193  thp->frame++;
194  }
195 
196  return 0;
197 }
198 
200  .name = "thp",
201  .long_name = NULL_IF_CONFIG_SMALL("THP"),
202  .priv_data_size = sizeof(ThpDemuxContext),
206 };
const char * s
Definition: avisynth_c.h:668
Bytestream IO Context.
Definition: avio.h:68
int64_t avio_size(AVIOContext *s)
Get the filesize.
Definition: aviobuf.c:261
int next_frame
Definition: thp.c:36
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:242
int frame
Definition: thp.c:35
static int thp_read_header(AVFormatContext *s)
Definition: thp.c:57
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.
int video_stream_index
Definition: thp.c:38
AVInputFormat ff_thp_demuxer
Definition: thp.c:199
static av_always_inline float av_int2float(uint32_t i)
Reinterpret a 32-bit integer as a float.
Definition: intfloat.h:40
int num
numerator
Definition: rational.h:44
int index
stream index in AVFormatContext
Definition: avformat.h:644
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:199
int next_framesz
Definition: thp.c:37
int64_t maxsize
max filesize, used to limit allocations This field is internal to libavformat and access from outside...
Definition: avio.h:123
struct ThpDemuxContext ThpDemuxContext
Format I/O context.
Definition: avformat.h:944
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:610
#define AV_RB32
static AVPacket pkt
Definition: demuxing.c:56
int compoff
Definition: thp.c:32
int first_frame
Definition: thp.c:29
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
static double av_q2d(AVRational a)
Convert rational to double.
Definition: rational.h:69
uint8_t * data
unsigned char components[16]
Definition: thp.c:41
#define AVERROR_EOF
End of file.
Definition: error.h:55
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.
AVStream * vst
Definition: thp.c:42
int duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:478
int last_frame
Definition: thp.c:31
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int thp_probe(AVProbeData *p)
Definition: thp.c:48
int first_framesz
Definition: thp.c:30
int size
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:662
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:336
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
Definition: rational.c:106
AVRational fps
Definition: thp.c:34
static int read_probe(AVProbeData *pd)
ret
Definition: avfilter.c:821
int width
picture width / height.
#define AV_RL32
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:517
Stream structure.
Definition: avformat.h:643
NULL
Definition: eval.c:55
enum AVMediaType codec_type
enum AVCodecID codec_id
int sample_rate
samples per second
AVIOContext * pb
I/O context.
Definition: avformat.h:977
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> (&#39;D&#39;<<24) + (&#39;C&#39;<<16) + (&#39;B&#39;<<8) + &#39;A&#39;).
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
synthesis window for stochastic i
rational number numerator/denominator
Definition: rational.h:43
This structure contains the data a format has to probe a file.
Definition: avformat.h:334
Filter the word “frame” indicates either a video frame or a group of audio as stored in an AVFilterBuffer structure Format for each input and each output the list of supported formats For video that means pixel format For audio that means channel sample they are references to shared objects When the negotiation mechanism computes the intersection of the formats supported at each end of a all references to both lists are replaced with a reference to the intersection And when a single format is eventually chosen for a link amongst the remaining all references to the list are updated That means that if a filter requires that its input and output have the same format amongst a supported all it has to do is use a reference to the same list of formats query_formats can leave some formats unset and return AVERROR(EAGAIN) to cause the negotiation mechanism toagain later.That can be used by filters with complex requirements to use the format negotiated on one link to set the formats supported on another.Buffer references ownership and permissions
int framecnt
Definition: thp.c:33
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:696
#define AVPROBE_SCORE_MAX
maximum score, half of that is used for file-extension-based detection
Definition: avformat.h:340
Main libavformat public API header.
int version
Definition: thp.c:28
static int thp_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: thp.c:145
int64_t nb_frames
number of frames in this stream if known or 0
Definition: avformat.h:698
int den
denominator
Definition: rational.h:45
int channels
number of audio channels
void * priv_data
Format private data.
Definition: avformat.h:964
int audio_stream_index
Definition: thp.c:39
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:461
unsigned audiosize
Definition: thp.c:44
int has_audio
Definition: thp.c:43
#define MKTAG(a, b, c, d)
Definition: common.h:282
This structure stores compressed data.
int compcount
Definition: thp.c:40