Libav
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 Libav.
6  *
7  * Libav 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  * Libav 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 Libav; 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  int 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  int i;
63 
64  /* Read the file header. */
65  avio_rb32(pb); /* Skip Magic. */
66  thp->version = avio_rb32(pb);
67 
68  avio_rb32(pb); /* Max buf size. */
69  avio_rb32(pb); /* Max samples. */
70 
71  thp->fps = av_d2q(av_int2float(avio_rb32(pb)), INT_MAX);
72  thp->framecnt = avio_rb32(pb);
73  thp->first_framesz = avio_rb32(pb);
74  avio_rb32(pb); /* Data size. */
75 
76  thp->compoff = avio_rb32(pb);
77  avio_rb32(pb); /* offsetDataOffset. */
78  thp->first_frame = avio_rb32(pb);
79  thp->last_frame = avio_rb32(pb);
80 
81  thp->next_framesz = thp->first_framesz;
82  thp->next_frame = thp->first_frame;
83 
84  /* Read the component structure. */
85  avio_seek (pb, thp->compoff, SEEK_SET);
86  thp->compcount = avio_rb32(pb);
87 
88  /* Read the list of component types. */
89  avio_read(pb, thp->components, 16);
90 
91  for (i = 0; i < thp->compcount; i++) {
92  if (thp->components[i] == 0) {
93  if (thp->vst != 0)
94  break;
95 
96  /* Video component. */
97  st = avformat_new_stream(s, NULL);
98  if (!st)
99  return AVERROR(ENOMEM);
100 
101  /* The denominator and numerator are switched because 1/fps
102  is required. */
103  avpriv_set_pts_info(st, 64, thp->fps.den, thp->fps.num);
106  st->codecpar->codec_tag = 0; /* no fourcc */
107  st->codecpar->width = avio_rb32(pb);
108  st->codecpar->height = avio_rb32(pb);
109  st->codecpar->sample_rate = av_q2d(thp->fps);
110  thp->vst = st;
111  thp->video_stream_index = st->index;
112 
113  if (thp->version == 0x11000)
114  avio_rb32(pb); /* Unknown. */
115  } else if (thp->components[i] == 1) {
116  if (thp->has_audio != 0)
117  break;
118 
119  /* Audio component. */
120  st = avformat_new_stream(s, NULL);
121  if (!st)
122  return AVERROR(ENOMEM);
123 
126  st->codecpar->codec_tag = 0; /* no fourcc */
127  st->codecpar->channels = avio_rb32(pb); /* numChannels. */
128  st->codecpar->sample_rate = avio_rb32(pb); /* Frequency. */
129  st->duration = avio_rb32(pb);
130 
131  avpriv_set_pts_info(st, 64, 1, st->codecpar->sample_rate);
132 
133  thp->audio_stream_index = st->index;
134  thp->has_audio = 1;
135  }
136  }
137 
138  return 0;
139 }
140 
142  AVPacket *pkt)
143 {
144  ThpDemuxContext *thp = s->priv_data;
145  AVIOContext *pb = s->pb;
146  int size;
147  int ret;
148 
149  if (thp->audiosize == 0) {
150  /* Terminate when last frame is reached. */
151  if (thp->frame >= thp->framecnt)
152  return AVERROR(EIO);
153 
154  avio_seek(pb, thp->next_frame, SEEK_SET);
155 
156  /* Locate the next frame and read out its size. */
157  thp->next_frame += thp->next_framesz;
158  thp->next_framesz = avio_rb32(pb);
159 
160  avio_rb32(pb); /* Previous total size. */
161  size = avio_rb32(pb); /* Total size of this frame. */
162 
163  /* Store the audiosize so the next time this function is called,
164  the audio can be read. */
165  if (thp->has_audio)
166  thp->audiosize = avio_rb32(pb); /* Audio size. */
167  else
168  thp->frame++;
169 
170  ret = av_get_packet(pb, pkt, size);
171  if (ret != size) {
172  av_packet_unref(pkt);
173  return AVERROR(EIO);
174  }
175 
176  pkt->stream_index = thp->video_stream_index;
177  } else {
178  ret = av_get_packet(pb, pkt, thp->audiosize);
179  if (ret != thp->audiosize) {
180  av_packet_unref(pkt);
181  return AVERROR(EIO);
182  }
183 
184  pkt->stream_index = thp->audio_stream_index;
185  if (thp->audiosize >= 8)
186  pkt->duration = AV_RB32(&pkt->data[4]);
187 
188  thp->audiosize = 0;
189  thp->frame++;
190  }
191 
192  return 0;
193 }
194 
196  .name = "thp",
197  .long_name = NULL_IF_CONFIG_SMALL("THP"),
198  .priv_data_size = sizeof(ThpDemuxContext),
202 };
Bytestream IO Context.
Definition: avio.h:104
int next_frame
Definition: thp.c:36
int size
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.
Definition: utils.c:2986
int video_stream_index
Definition: thp.c:38
AVInputFormat ff_thp_demuxer
Definition: thp.c:195
static av_always_inline float av_int2float(uint32_t i)
Reinterpret a 32-bit integer as a float.
Definition: intfloat.h:40
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
Definition: avcodec.h:3483
int num
numerator
Definition: rational.h:44
int index
stream index in AVFormatContext
Definition: avformat.h:706
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:242
int next_framesz
Definition: thp.c:37
Format I/O context.
Definition: avformat.h:940
int width
Video only.
Definition: avcodec.h:3525
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:696
#define AV_RB32
Definition: intreadwrite.h:130
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1364
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.
Definition: utils.c:2648
static double av_q2d(AVRational a)
Convert rational to double.
Definition: rational.h:69
uint8_t * data
Definition: avcodec.h:1346
unsigned char components[16]
Definition: thp.c:41
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:117
AVStream * vst
Definition: thp.c:42
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:545
#define AVERROR(e)
Definition: error.h:43
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. ...
Definition: internal.h:148
enum AVMediaType codec_type
General type of the encoded data.
Definition: avcodec.h:3479
static int thp_probe(AVProbeData *p)
Definition: thp.c:48
int first_framesz
Definition: thp.c:30
int audiosize
Definition: thp.c:44
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:400
AVRational av_d2q(double d, int max)
Convert a double precision floating point number to a rational.
Definition: rational.c:105
AVRational fps
Definition: thp.c:34
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
#define AV_RL32
Definition: intreadwrite.h:146
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:546
Stream structure.
Definition: avformat.h:705
NULL
Definition: eval.c:55
AVIOContext * pb
I/O context.
Definition: avformat.h:982
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:347
static int read_packet(AVFormatContext *ctx, AVPacket *pkt)
Definition: libcdio.c:114
rational number numerator/denominator
Definition: rational.h:43
This structure contains the data a format has to probe a file.
Definition: avformat.h:398
int framecnt
Definition: thp.c:33
int64_t duration
Decoding: duration of the stream, in stream time base.
Definition: avformat.h:757
int sample_rate
Audio only.
Definition: avcodec.h:3564
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:407
Main libavformat public API header.
int version
Definition: thp.c:28
static int thp_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: thp.c:141
int den
denominator
Definition: rational.h:45
void * priv_data
Format private data.
Definition: avformat.h:968
int audio_stream_index
Definition: thp.c:39
int channels
Audio only.
Definition: avcodec.h:3560
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:529
AVCodecParameters * codecpar
Definition: avformat.h:831
uint32_t codec_tag
Additional information about the codec (corresponds to the AVI FOURCC).
Definition: avcodec.h:3487
int stream_index
Definition: avcodec.h:1348
int has_audio
Definition: thp.c:43
#define MKTAG(a, b, c, d)
Definition: common.h:256
This structure stores compressed data.
Definition: avcodec.h:1323
int compcount
Definition: thp.c:40