Mercurial > libavformat.hg
annotate tta.c @ 3148:f00aeedea66a libavformat
MSN TCP Webcam stream demuxer.
| author | ramiro |
|---|---|
| date | Tue, 18 Mar 2008 19:54:47 +0000 |
| parents | d52c718e83f9 |
| children | 6f61c3b36632 |
| rev | line source |
|---|---|
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
1 /* |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
2 * TTA demuxer |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
3 * Copyright (c) 2006 Alex Beregszaszi |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
4 * |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1281
diff
changeset
|
5 * This file is part of FFmpeg. |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1281
diff
changeset
|
6 * |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1281
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
9 * License as published by the Free Software Foundation; either |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1281
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
11 * |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1281
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
15 * Lesser General Public License for more details. |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
16 * |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1281
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
| 2217 | 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
20 */ |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
21 #include "avformat.h" |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
22 #include "bitstream.h" |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
23 |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
24 typedef struct { |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
25 int totalframes, currentframe; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
26 } TTAContext; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
27 |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
28 static int tta_probe(AVProbeData *p) |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
29 { |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
30 const uint8_t *d = p->buf; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
31 if (d[0] == 'T' && d[1] == 'T' && d[2] == 'A' && d[3] == '1') |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
32 return 80; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
33 return 0; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
34 } |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
35 |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
36 static int tta_read_header(AVFormatContext *s, AVFormatParameters *ap) |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
37 { |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
38 TTAContext *c = s->priv_data; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
39 AVStream *st; |
| 1969 | 40 int i, channels, bps, samplerate, datalen, framelen; |
|
2031
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
41 uint64_t framepos; |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
42 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
43 if (get_le32(s->pb) != ff_get_fourcc("TTA1")) |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
44 return -1; // not tta file |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
45 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
46 url_fskip(s->pb, 2); // FIXME: flags |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
47 channels = get_le16(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
48 bps = get_le16(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
49 samplerate = get_le32(s->pb); |
| 1079 | 50 if(samplerate <= 0 || samplerate > 1000000){ |
| 51 av_log(s, AV_LOG_ERROR, "nonsense samplerate\n"); | |
| 52 return -1; | |
| 53 } | |
| 54 | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
55 datalen = get_le32(s->pb); |
| 1079 | 56 if(datalen < 0){ |
| 57 av_log(s, AV_LOG_ERROR, "nonsense datalen\n"); | |
| 58 return -1; | |
| 59 } | |
| 60 | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
61 url_fskip(s->pb, 4); // header crc |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
62 |
|
1968
170e151f1d9e
10^10l to the idiot who designed this format and didnt even realize what number he used
michael
parents:
1358
diff
changeset
|
63 framelen = samplerate*256/245; |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
64 c->totalframes = datalen / framelen + ((datalen % framelen) ? 1 : 0); |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
65 c->currentframe = 0; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
66 |
| 1079 | 67 if(c->totalframes >= UINT_MAX/sizeof(uint32_t)){ |
| 68 av_log(s, AV_LOG_ERROR, "totalframes too large\n"); | |
| 69 return -1; | |
| 70 } | |
|
2031
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
71 |
|
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
72 st = av_new_stream(s, 0); |
|
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
73 if (!st) |
|
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2217
diff
changeset
|
74 return AVERROR(ENOMEM); |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
75 |
|
2031
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
76 av_set_pts_info(st, 64, 1, samplerate); |
|
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
77 st->start_time = 0; |
|
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
78 st->duration = datalen; |
|
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
79 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
80 framepos = url_ftell(s->pb) + 4*c->totalframes + 4; |
|
2031
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
81 |
|
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
82 for (i = 0; i < c->totalframes; i++) { |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
83 uint32_t size = get_le32(s->pb); |
|
2031
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
84 av_add_index_entry(st, framepos, i*framelen, size, 0, AVINDEX_KEYFRAME); |
|
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
85 framepos += size; |
|
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
86 } |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
87 url_fskip(s->pb, 4); // seektable crc |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
88 |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
89 st->codec->codec_type = CODEC_TYPE_AUDIO; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
90 st->codec->codec_id = CODEC_ID_TTA; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
91 st->codec->channels = channels; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
92 st->codec->sample_rate = samplerate; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
93 st->codec->bits_per_sample = bps; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
94 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
95 st->codec->extradata_size = url_ftell(s->pb); |
| 1079 | 96 if(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE <= (unsigned)st->codec->extradata_size){ |
| 97 //this check is redundant as get_buffer should fail | |
| 98 av_log(s, AV_LOG_ERROR, "extradata_size too large\n"); | |
| 99 return -1; | |
| 100 } | |
|
957
99a7f76a8954
10l, allocate bitbuffer with regard to the padding size
alex
parents:
948
diff
changeset
|
101 st->codec->extradata = av_mallocz(st->codec->extradata_size+FF_INPUT_BUFFER_PADDING_SIZE); |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
102 url_fseek(s->pb, 0, SEEK_SET); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
103 get_buffer(s->pb, st->codec->extradata, st->codec->extradata_size); |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
104 |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
105 return 0; |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
106 } |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
107 |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
108 static int tta_read_packet(AVFormatContext *s, AVPacket *pkt) |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
109 { |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
110 TTAContext *c = s->priv_data; |
|
2031
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
111 AVStream *st = s->streams[0]; |
| 2375 | 112 int size, ret; |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
113 |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
114 // FIXME! |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
115 if (c->currentframe > c->totalframes) |
|
2031
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
116 return -1; |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
117 |
| 2375 | 118 size = st->index_entries[c->currentframe].size; |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
119 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
120 ret = av_get_packet(s->pb, pkt, size); |
| 2375 | 121 pkt->dts = st->index_entries[c->currentframe++].timestamp; |
| 122 return ret; | |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
123 } |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
124 |
| 2041 | 125 static int tta_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) |
| 126 { | |
| 127 TTAContext *c = s->priv_data; | |
| 128 AVStream *st = s->streams[stream_index]; | |
| 129 int index = av_index_search_timestamp(st, timestamp, flags); | |
| 130 if (index < 0) | |
| 131 return -1; | |
| 132 | |
| 133 c->currentframe = index; | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2375
diff
changeset
|
134 url_fseek(s->pb, st->index_entries[index].pos, SEEK_SET); |
| 2041 | 135 |
| 136 return 0; | |
| 137 } | |
| 138 | |
| 1167 | 139 AVInputFormat tta_demuxer = { |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
140 "tta", |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
141 "true-audio", |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
142 sizeof(TTAContext), |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
143 tta_probe, |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
144 tta_read_header, |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
145 tta_read_packet, |
|
2031
d3c1ef5b9a2f
Change from using a seek table internal to the TTA demuxer to using the standard lavf index.
conrad
parents:
2001
diff
changeset
|
146 NULL, |
| 2041 | 147 tta_read_seek, |
|
948
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
148 .extensions = "tta", |
|
1e766711e6c8
tta demuxer, also usable for moving tta audio data into an other container
alex
parents:
diff
changeset
|
149 }; |
