]> git.sesse.net Git - ffmpeg/blob - libavformat/flvdec.c
correct pcm in flv handling
[ffmpeg] / 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 unsigned int get_be24(ByteIOContext *s)
22 {
23     unsigned int val;
24     val = get_byte(s) << 16;
25     val |= get_byte(s) << 8;
26     val |= get_byte(s);
27     return val;
28 }
29
30 static int flv_probe(AVProbeData *p)
31 {
32     const uint8_t *d;
33
34     if (p->buf_size < 6)
35         return 0;
36     d = p->buf;
37     if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V') {
38         return 50;
39     }
40     return 0;
41 }
42
43 static int flv_read_header(AVFormatContext *s,
44                            AVFormatParameters *ap)
45 {
46     int offset, flags;
47     AVStream *st;
48     
49     s->ctx_flags |= AVFMTCTX_NOHEADER; //ok we have a header but theres no fps, codec type, sample_rate, ...
50
51     url_fskip(&s->pb, 4);
52     flags = get_byte(&s->pb);
53
54     offset = get_be32(&s->pb);
55     url_fseek(&s->pb, offset, SEEK_SET);
56
57     return 0;
58 }
59
60 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt)
61 {
62     int ret, i, type, size, pts, flags, is_audio;
63     AVStream *st = NULL;
64     
65  for(;;){
66     url_fskip(&s->pb, 4); /* size of previous packet */
67     type = get_byte(&s->pb);
68     size = get_be24(&s->pb);
69     pts = get_be24(&s->pb);
70 //    av_log(s, AV_LOG_DEBUG, "type:%d, size:%d, pts:%d\n", type, size, pts);
71     if (url_feof(&s->pb))
72         return AVERROR_IO;
73     url_fskip(&s->pb, 4); /* reserved */
74     flags = 0;
75     
76     if(size == 0)
77         continue;
78     
79     if (type == 8) {
80         is_audio=1;
81         flags = get_byte(&s->pb);
82         size--;
83     } else if (type == 9) {
84         is_audio=0;
85         flags = get_byte(&s->pb);
86         size--;
87     } else {
88         /* skip packet */
89         av_log(s, AV_LOG_ERROR, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags);
90         url_fskip(&s->pb, size);
91         continue;
92     }
93
94     /* now find stream */
95     for(i=0;i<s->nb_streams;i++) {
96         st = s->streams[i];
97         if (st->id == is_audio)
98             break;
99     }
100     if(i == s->nb_streams){
101         st = av_new_stream(s, is_audio);
102         if (!st)
103             return AVERROR_NOMEM;
104
105         av_set_pts_info(st, 24, 1, 1000); /* 24 bit pts in ms */
106         st->codec.frame_rate_base= 1;
107         st->codec.frame_rate= 1000;
108     }
109     if(st->discard){
110         url_fskip(&s->pb, size);
111         continue;
112     }
113     break;
114  }
115
116     if(is_audio){
117         if(st->codec.sample_rate == 0){
118             st->codec.codec_type = CODEC_TYPE_AUDIO;
119             st->codec.channels = (flags&1)+1;
120             if((flags >> 4) == 5)
121                 st->codec.sample_rate= 8000;
122             else
123                 st->codec.sample_rate = (44100<<((flags>>2)&3))>>3;
124             switch(flags >> 4){/* 0: uncompressed 1: ADPCM 2: mp3 5: Nellymoser 8kHz mono 6: Nellymoser*/
125             case 0: if (flags&2) st->codec.codec_id = CODEC_ID_PCM_S16BE;
126                     else st->codec.codec_id = CODEC_ID_PCM_S8; break;
127             case 2: st->codec.codec_id = CODEC_ID_MP3; break;
128             // this is not listed at FLV but at SWF, strange...
129             case 3: if (flags&2) st->codec.codec_id = CODEC_ID_PCM_S16LE;
130                     else st->codec.codec_id = CODEC_ID_PCM_S8; break;
131             default:
132                 st->codec.codec_tag= (flags >> 4);
133             }
134         }
135     }else{
136             st->codec.codec_type = CODEC_TYPE_VIDEO;
137             switch(flags & 0xF){
138             case 2: st->codec.codec_id = CODEC_ID_FLV1; break;
139             default:
140                 st->codec.codec_tag= flags & 0xF;
141             }
142     }
143
144     if (av_new_packet(pkt, size) < 0)
145         return AVERROR_IO;
146
147     ret = get_buffer(&s->pb, pkt->data, size);
148     if (ret <= 0) {
149         av_free_packet(pkt);
150         return AVERROR_IO;
151     }
152     /* note: we need to modify the packet size here to handle the last
153        packet */
154     pkt->size = ret;
155     pkt->pts = pts;
156     pkt->stream_index = st->index;
157     
158     if (!is_audio && ((flags >> 4)==1))
159         pkt->flags |= PKT_FLAG_KEY;
160     
161     return ret;
162 }
163
164 static int flv_read_close(AVFormatContext *s)
165 {
166     return 0;
167 }
168
169 AVInputFormat flv_iformat = {
170     "flv",
171     "flv format",
172     0,
173     flv_probe,
174     flv_read_header,
175     flv_read_packet,
176     flv_read_close,
177     .extensions = "flv",
178     .value = CODEC_ID_FLV1,
179 };
180
181 int flvdec_init(void)
182 {
183     av_register_input_format(&flv_iformat);
184     return 0;
185 }