]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/flvdec.c
COSMETICS: tabs --> spaces, some prettyprinting
[frescor/ffmpeg.git] / libavformat / flvdec.c
1 /*
2  * FLV encoder.
3  * Copyright (c) 2003 The FFmpeg Project.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19 #include "avformat.h"
20
21 static int flv_probe(AVProbeData *p)
22 {
23     const uint8_t *d;
24
25     if (p->buf_size < 6)
26         return 0;
27     d = p->buf;
28     if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V') {
29         return 50;
30     }
31     return 0;
32 }
33
34 static int flv_read_header(AVFormatContext *s,
35                            AVFormatParameters *ap)
36 {
37     int offset, flags;
38
39     s->ctx_flags |= AVFMTCTX_NOHEADER; //ok we have a header but theres no fps, codec type, sample_rate, ...
40
41     url_fskip(&s->pb, 4);
42     flags = get_byte(&s->pb);
43
44     offset = get_be32(&s->pb);
45     url_fseek(&s->pb, offset, SEEK_SET);
46
47     return 0;
48 }
49
50 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
51 {
52     int ret, i, type, size, pts, flags, is_audio, next;
53     AVStream *st = NULL;
54
55  for(;;){
56     url_fskip(&s->pb, 4); /* size of previous packet */
57     type = get_byte(&s->pb);
58     size = get_be24(&s->pb);
59     pts = get_be24(&s->pb);
60 //    av_log(s, AV_LOG_DEBUG, "type:%d, size:%d, pts:%d\n", type, size, pts);
61     if (url_feof(&s->pb))
62         return AVERROR_IO;
63     url_fskip(&s->pb, 4); /* reserved */
64     flags = 0;
65
66     if(size == 0)
67         continue;
68
69     next= size + url_ftell(&s->pb);
70
71     if (type == 8) {
72         is_audio=1;
73         flags = get_byte(&s->pb);
74     } else if (type == 9) {
75         is_audio=0;
76         flags = get_byte(&s->pb);
77     } else if (type == 18 && size > 13+1+4) {
78         url_fskip(&s->pb, 13); //onMetaData blah
79         if(get_byte(&s->pb) == 8){
80             url_fskip(&s->pb, 4);
81         }
82         while(url_ftell(&s->pb) + 5 < next){
83             char tmp[128];
84             int type, len;
85             double d= 0;
86
87             len= get_be16(&s->pb);
88             if(len >= sizeof(tmp) || !len)
89                 break;
90             get_buffer(&s->pb, tmp, len);
91             tmp[len]=0;
92
93             type= get_byte(&s->pb);
94             if(type==0){
95                 d= av_int2dbl(get_be64(&s->pb));
96             }else if(type==2){
97                 len= get_be16(&s->pb);
98                 if(len >= sizeof(tmp))
99                     break;
100                 url_fskip(&s->pb, len);
101             }else if(type==8){
102                 //array
103                 break;
104             }else if(type==11){
105                 d= av_int2dbl(get_be64(&s->pb));
106                 get_be16(&s->pb);
107             }
108
109             if(!strcmp(tmp, "duration")){
110                 s->duration = d*AV_TIME_BASE;
111             }else if(!strcmp(tmp, "videodatarate")){
112             }else if(!strcmp(tmp, "audiodatarate")){
113             }
114         }
115         url_fseek(&s->pb, next, SEEK_SET);
116         continue;
117     } else {
118         /* skip packet */
119         av_log(s, AV_LOG_ERROR, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
120         url_fseek(&s->pb, next, SEEK_SET);
121         continue;
122     }
123
124     /* now find stream */
125     for(i=0;i<s->nb_streams;i++) {
126         st = s->streams[i];
127         if (st->id == is_audio)
128             break;
129     }
130     if(i == s->nb_streams){
131         st = av_new_stream(s, is_audio);
132         if (!st)
133             return AVERROR_NOMEM;
134
135         av_set_pts_info(st, 24, 1, 1000); /* 24 bit pts in ms */
136         st->codec->time_base= (AVRational){1,1000};
137     }
138 //    av_log(NULL, AV_LOG_DEBUG, "%d %X %d \n", is_audio, flags, st->discard);
139     if(  (st->discard >= AVDISCARD_NONKEY && !((flags >> 4)==1 ||  is_audio))
140        ||(st->discard >= AVDISCARD_BIDIR  &&  ((flags >> 4)==3 && !is_audio))
141        || st->discard >= AVDISCARD_ALL
142        ){
143         url_fseek(&s->pb, next, SEEK_SET);
144         continue;
145     }
146     break;
147  }
148
149     if(is_audio){
150         if(st->codec->sample_rate == 0){
151             st->codec->codec_type = CODEC_TYPE_AUDIO;
152             st->codec->channels = (flags&1)+1;
153             if((flags >> 4) == 5)
154                 st->codec->sample_rate= 8000;
155             else
156                 st->codec->sample_rate = (44100<<((flags>>2)&3))>>3;
157             switch(flags >> 4){/* 0: uncompressed 1: ADPCM 2: mp3 5: Nellymoser 8kHz mono 6: Nellymoser*/
158             case 0: if (flags&2) st->codec->codec_id = CODEC_ID_PCM_S16BE;
159                     else st->codec->codec_id = CODEC_ID_PCM_S8; break;
160             case 1: st->codec->codec_id = CODEC_ID_ADPCM_SWF; break;
161             case 2: st->codec->codec_id = CODEC_ID_MP3; break;
162             // this is not listed at FLV but at SWF, strange...
163             case 3: if (flags&2) st->codec->codec_id = CODEC_ID_PCM_S16LE;
164                     else st->codec->codec_id = CODEC_ID_PCM_S8; break;
165             default:
166                     av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flags >> 4);
167                 st->codec->codec_tag= (flags >> 4);
168             }
169             st->codec->bits_per_sample = (flags & 2) ? 16 : 8;
170         }
171     }else{
172             st->codec->codec_type = CODEC_TYPE_VIDEO;
173             switch(flags & 0xF){
174             case 2: st->codec->codec_id = CODEC_ID_FLV1; break;
175             default:
176                     av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flags & 0xf);
177                 st->codec->codec_tag= flags & 0xF;
178             }
179     }
180
181     ret= av_get_packet(&s->pb, pkt, size - 1);
182     if (ret <= 0) {
183         return AVERROR_IO;
184     }
185     /* note: we need to modify the packet size here to handle the last
186        packet */
187     pkt->size = ret;
188     pkt->pts = pts;
189     pkt->stream_index = st->index;
190
191     if (is_audio || ((flags >> 4)==1))
192         pkt->flags |= PKT_FLAG_KEY;
193
194     return ret;
195 }
196
197 static int flv_read_close(AVFormatContext *s)
198 {
199     return 0;
200 }
201
202 AVInputFormat flv_iformat = {
203     "flv",
204     "flv format",
205     0,
206     flv_probe,
207     flv_read_header,
208     flv_read_packet,
209     flv_read_close,
210     .extensions = "flv",
211     .value = CODEC_ID_FLV1,
212 };
213
214 int flvdec_init(void)
215 {
216     av_register_input_format(&flv_iformat);
217     return 0;
218 }