Mercurial > libavformat.hg
annotate flvdec.c @ 3215:4efe0debe0cf libavformat
Stop find_stream_info() searching for further streams if 2 streams have
been found.
| author | michael |
|---|---|
| date | Sun, 13 Apr 2008 23:47:03 +0000 |
| parents | e24c36cb72a5 |
| children | 0ece8d5c42d8 |
| rev | line source |
|---|---|
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
1 /* |
|
1415
3b00fb8ef8e4
replace coder/decoder file description in libavformat by muxer/demuxer
aurel
parents:
1414
diff
changeset
|
2 * FLV demuxer |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
3 * Copyright (c) 2003 The FFmpeg Project. |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
4 * |
| 2216 | 5 * This demuxer will generate a 1 byte extradata for VP6F content. |
| 6 * It is composed of: | |
| 7 * - upper 4bits: difference between encoded width and visible width | |
| 8 * - lower 4bits: difference between encoded height and visible height | |
| 9 * | |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1318
diff
changeset
|
10 * This file is part of FFmpeg. |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1318
diff
changeset
|
11 * |
|
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1318
diff
changeset
|
12 * FFmpeg is free software; you can redistribute it and/or |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
13 * modify it under the terms of the GNU Lesser General Public |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
14 * 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:
1318
diff
changeset
|
15 * version 2.1 of the License, or (at your option) any later version. |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
16 * |
|
1358
0899bfe4105c
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
1318
diff
changeset
|
17 * FFmpeg is distributed in the hope that it will be useful, |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
20 * Lesser General Public License for more details. |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
21 * |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
22 * 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:
1318
diff
changeset
|
23 * License along with FFmpeg; if not, write to the Free Software |
|
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
887
diff
changeset
|
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
25 */ |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
26 #include "avformat.h" |
|
1553
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
27 #include "flv.h" |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
28 |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
29 static int flv_probe(AVProbeData *p) |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
30 { |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
31 const uint8_t *d; |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
32 |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
33 d = p->buf; |
| 1718 | 34 if (d[0] == 'F' && d[1] == 'L' && d[2] == 'V' && d[3] < 5 && d[5]==0) { |
| 35 return AVPROBE_SCORE_MAX; | |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
36 } |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
37 return 0; |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
38 } |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
39 |
| 1568 | 40 static void flv_set_audio_codec(AVFormatContext *s, AVStream *astream, int flv_codecid) { |
| 41 AVCodecContext *acodec = astream->codec; | |
| 42 switch(flv_codecid) { | |
| 43 //no distinction between S16 and S8 PCM codec flags | |
|
3061
8ae0431d7f43
flv/swf do not have a big endian codec id, they only support
michael
parents:
2848
diff
changeset
|
44 case FLV_CODECID_PCM: |
| 3062 | 45 acodec->codec_id = acodec->bits_per_sample == 8 ? CODEC_ID_PCM_S8 : |
| 46 #ifdef WORDS_BIGENDIAN | |
| 47 CODEC_ID_PCM_S16BE; | |
| 48 #else | |
| 49 CODEC_ID_PCM_S16LE; | |
| 50 #endif | |
| 51 break; | |
| 1568 | 52 case FLV_CODECID_PCM_LE: |
| 53 acodec->codec_id = acodec->bits_per_sample == 8 ? CODEC_ID_PCM_S8 : CODEC_ID_PCM_S16LE; break; | |
| 54 case FLV_CODECID_ADPCM: acodec->codec_id = CODEC_ID_ADPCM_SWF; break; | |
| 2023 | 55 case FLV_CODECID_MP3 : acodec->codec_id = CODEC_ID_MP3 ; astream->need_parsing = AVSTREAM_PARSE_FULL; break; |
| 1568 | 56 case FLV_CODECID_NELLYMOSER_8HZ_MONO: |
| 57 acodec->sample_rate = 8000; //in case metadata does not otherwise declare samplerate | |
| 58 case FLV_CODECID_NELLYMOSER: | |
| 2604 | 59 acodec->codec_id = CODEC_ID_NELLYMOSER; |
| 60 break; | |
| 1568 | 61 default: |
| 62 av_log(s, AV_LOG_INFO, "Unsupported audio codec (%x)\n", flv_codecid >> FLV_AUDIO_CODECID_OFFSET); | |
| 63 acodec->codec_tag = flv_codecid >> FLV_AUDIO_CODECID_OFFSET; | |
| 64 } | |
| 65 } | |
| 66 | |
| 67 static int flv_set_video_codec(AVFormatContext *s, AVStream *vstream, int flv_codecid) { | |
| 68 AVCodecContext *vcodec = vstream->codec; | |
| 69 switch(flv_codecid) { | |
| 70 case FLV_CODECID_H263 : vcodec->codec_id = CODEC_ID_FLV1 ; break; | |
| 71 case FLV_CODECID_SCREEN: vcodec->codec_id = CODEC_ID_FLASHSV; break; | |
| 72 case FLV_CODECID_VP6 : vcodec->codec_id = CODEC_ID_VP6F ; | |
| 2572 | 73 case FLV_CODECID_VP6A : |
| 74 if(flv_codecid == FLV_CODECID_VP6A) | |
| 75 vcodec->codec_id = CODEC_ID_VP6A; | |
| 1568 | 76 if(vcodec->extradata_size != 1) { |
| 77 vcodec->extradata_size = 1; | |
| 78 vcodec->extradata = av_malloc(1); | |
| 79 } | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
80 vcodec->extradata[0] = get_byte(s->pb); |
| 1568 | 81 return 1; // 1 byte body size adjustment for flv_read_packet() |
| 82 default: | |
| 83 av_log(s, AV_LOG_INFO, "Unsupported video codec (%x)\n", flv_codecid); | |
| 84 vcodec->codec_tag = flv_codecid; | |
| 85 } | |
| 86 | |
| 87 return 0; | |
| 88 } | |
| 89 | |
|
1560
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
90 static int amf_get_string(ByteIOContext *ioc, char *buffer, int buffsize) { |
| 1561 | 91 int length = get_be16(ioc); |
|
1560
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
92 if(length >= buffsize) { |
|
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
93 url_fskip(ioc, length); |
| 1561 | 94 return -1; |
|
1560
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
95 } |
|
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
96 |
|
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
97 get_buffer(ioc, buffer, length); |
|
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
98 |
|
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
99 buffer[length] = '\0'; |
|
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
100 |
|
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
101 return length; |
|
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
102 } |
|
f59b66f9d679
amf_get_string() by Allan Hsu allan aat counterpop doot net
michael
parents:
1559
diff
changeset
|
103 |
| 1568 | 104 static int amf_parse_object(AVFormatContext *s, AVStream *astream, AVStream *vstream, const char *key, unsigned int max_pos, int depth) { |
| 105 AVCodecContext *acodec, *vcodec; | |
| 106 ByteIOContext *ioc; | |
| 107 AMFDataType amf_type; | |
| 108 char str_val[256]; | |
| 109 double num_val; | |
| 110 | |
| 111 num_val = 0; | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
112 ioc = s->pb; |
| 1568 | 113 |
| 114 amf_type = get_byte(ioc); | |
| 115 | |
| 116 switch(amf_type) { | |
| 117 case AMF_DATA_TYPE_NUMBER: | |
| 118 num_val = av_int2dbl(get_be64(ioc)); break; | |
| 119 case AMF_DATA_TYPE_BOOL: | |
| 120 num_val = get_byte(ioc); break; | |
| 121 case AMF_DATA_TYPE_STRING: | |
| 122 if(amf_get_string(ioc, str_val, sizeof(str_val)) < 0) | |
| 123 return -1; | |
| 124 break; | |
| 125 case AMF_DATA_TYPE_OBJECT: { | |
| 126 unsigned int keylen; | |
| 127 | |
| 128 while(url_ftell(ioc) < max_pos - 2 && (keylen = get_be16(ioc))) { | |
| 129 url_fskip(ioc, keylen); //skip key string | |
| 130 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0) | |
| 131 return -1; //if we couldn't skip, bomb out. | |
| 132 } | |
| 133 if(get_byte(ioc) != AMF_END_OF_OBJECT) | |
| 134 return -1; | |
| 135 } | |
| 136 break; | |
| 137 case AMF_DATA_TYPE_NULL: | |
| 138 case AMF_DATA_TYPE_UNDEFINED: | |
| 139 case AMF_DATA_TYPE_UNSUPPORTED: | |
| 140 break; //these take up no additional space | |
| 141 case AMF_DATA_TYPE_MIXEDARRAY: | |
| 142 url_fskip(ioc, 4); //skip 32-bit max array index | |
| 143 while(url_ftell(ioc) < max_pos - 2 && amf_get_string(ioc, str_val, sizeof(str_val)) > 0) { | |
| 144 //this is the only case in which we would want a nested parse to not skip over the object | |
| 145 if(amf_parse_object(s, astream, vstream, str_val, max_pos, depth + 1) < 0) | |
| 146 return -1; | |
| 147 } | |
| 148 if(get_byte(ioc) != AMF_END_OF_OBJECT) | |
| 149 return -1; | |
| 150 break; | |
| 151 case AMF_DATA_TYPE_ARRAY: { | |
| 152 unsigned int arraylen, i; | |
| 153 | |
| 154 arraylen = get_be32(ioc); | |
| 155 for(i = 0; i < arraylen && url_ftell(ioc) < max_pos - 1; i++) { | |
| 156 if(amf_parse_object(s, NULL, NULL, NULL, max_pos, depth + 1) < 0) | |
| 157 return -1; //if we couldn't skip, bomb out. | |
| 158 } | |
| 159 } | |
| 160 break; | |
| 161 case AMF_DATA_TYPE_DATE: | |
| 162 url_fskip(ioc, 8 + 2); //timestamp (double) and UTC offset (int16) | |
| 163 break; | |
| 164 default: //unsupported type, we couldn't skip | |
| 165 return -1; | |
| 166 } | |
| 167 | |
| 168 if(depth == 1 && key) { //only look for metadata values when we are not nested and key != NULL | |
| 169 acodec = astream ? astream->codec : NULL; | |
| 170 vcodec = vstream ? vstream->codec : NULL; | |
| 171 | |
| 172 if(amf_type == AMF_DATA_TYPE_BOOL) { | |
| 173 if(!strcmp(key, "stereo") && acodec) acodec->channels = num_val > 0 ? 2 : 1; | |
| 174 } else if(amf_type == AMF_DATA_TYPE_NUMBER) { | |
| 175 if(!strcmp(key, "duration")) s->duration = num_val * AV_TIME_BASE; | |
|
1719
f813f8755dd1
flv follows in movs footsteps and has random trash in the width/height fields
michael
parents:
1718
diff
changeset
|
176 // else if(!strcmp(key, "width") && vcodec && num_val > 0) vcodec->width = num_val; |
|
f813f8755dd1
flv follows in movs footsteps and has random trash in the width/height fields
michael
parents:
1718
diff
changeset
|
177 // else if(!strcmp(key, "height") && vcodec && num_val > 0) vcodec->height = num_val; |
|
3152
1d9a55c8d259
Additional checks for strange num_val in FLV metadata
skal
parents:
3062
diff
changeset
|
178 else if(!strcmp(key, "audiocodecid") && acodec && 0 <= (int)num_val) |
|
1d9a55c8d259
Additional checks for strange num_val in FLV metadata
skal
parents:
3062
diff
changeset
|
179 flv_set_audio_codec(s, astream, (int)num_val << FLV_AUDIO_CODECID_OFFSET); |
|
1d9a55c8d259
Additional checks for strange num_val in FLV metadata
skal
parents:
3062
diff
changeset
|
180 else if(!strcmp(key, "videocodecid") && vcodec && 0 <= (int)num_val) |
|
1d9a55c8d259
Additional checks for strange num_val in FLV metadata
skal
parents:
3062
diff
changeset
|
181 flv_set_video_codec(s, vstream, (int)num_val); |
|
1d9a55c8d259
Additional checks for strange num_val in FLV metadata
skal
parents:
3062
diff
changeset
|
182 else if(!strcmp(key, "audiosamplesize") && acodec && 0 < (int)num_val) { |
| 1568 | 183 acodec->bits_per_sample = num_val; |
| 184 //we may have to rewrite a previously read codecid because FLV only marks PCM endianness. | |
| 185 if(num_val == 8 && (acodec->codec_id == CODEC_ID_PCM_S16BE || acodec->codec_id == CODEC_ID_PCM_S16LE)) | |
| 186 acodec->codec_id = CODEC_ID_PCM_S8; | |
| 187 } | |
| 188 else if(!strcmp(key, "audiosamplerate") && acodec && num_val >= 0) { | |
| 189 //some tools, like FLVTool2, write consistently approximate metadata sample rates | |
|
2847
f2a69a8c657d
Correctly handle FLV_CODECID_NELLYMOSER_8HZ_MONO files
banan
parents:
2771
diff
changeset
|
190 if (!acodec->sample_rate) { |
| 2848 | 191 switch((int)num_val) { |
| 192 case 44000: acodec->sample_rate = 44100 ; break; | |
| 193 case 22000: acodec->sample_rate = 22050 ; break; | |
| 194 case 11000: acodec->sample_rate = 11025 ; break; | |
| 195 case 5000 : acodec->sample_rate = 5512 ; break; | |
| 196 default : acodec->sample_rate = num_val; | |
| 197 } | |
|
2847
f2a69a8c657d
Correctly handle FLV_CODECID_NELLYMOSER_8HZ_MONO files
banan
parents:
2771
diff
changeset
|
198 } |
| 1568 | 199 } |
| 200 } | |
| 201 } | |
| 202 | |
| 203 return 0; | |
| 204 } | |
| 205 | |
| 206 static int flv_read_metabody(AVFormatContext *s, unsigned int next_pos) { | |
| 207 AMFDataType type; | |
| 208 AVStream *stream, *astream, *vstream; | |
| 209 ByteIOContext *ioc; | |
| 210 int i, keylen; | |
| 211 char buffer[11]; //only needs to hold the string "onMetaData". Anything longer is something we don't want. | |
| 212 | |
| 213 astream = NULL; | |
| 214 vstream = NULL; | |
| 215 keylen = 0; | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
216 ioc = s->pb; |
| 1568 | 217 |
| 218 //first object needs to be "onMetaData" string | |
| 219 type = get_byte(ioc); | |
| 220 if(type != AMF_DATA_TYPE_STRING || amf_get_string(ioc, buffer, sizeof(buffer)) < 0 || strcmp(buffer, "onMetaData")) | |
| 221 return -1; | |
| 222 | |
| 223 //find the streams now so that amf_parse_object doesn't need to do the lookup every time it is called. | |
| 224 for(i = 0; i < s->nb_streams; i++) { | |
| 225 stream = s->streams[i]; | |
| 226 if (stream->codec->codec_type == CODEC_TYPE_AUDIO) astream = stream; | |
| 227 else if(stream->codec->codec_type == CODEC_TYPE_VIDEO) vstream = stream; | |
| 228 } | |
| 229 | |
| 230 //parse the second object (we want a mixed array) | |
| 231 if(amf_parse_object(s, astream, vstream, buffer, next_pos, 0) < 0) | |
| 232 return -1; | |
| 233 | |
| 234 return 0; | |
| 235 } | |
| 236 | |
| 2691 | 237 static AVStream *create_stream(AVFormatContext *s, int is_audio){ |
| 238 AVStream *st = av_new_stream(s, is_audio); | |
| 239 if (!st) | |
| 240 return NULL; | |
| 241 st->codec->codec_type = is_audio ? CODEC_TYPE_AUDIO : CODEC_TYPE_VIDEO; | |
| 242 av_set_pts_info(st, 24, 1, 1000); /* 24 bit pts in ms */ | |
| 243 return st; | |
| 244 } | |
| 245 | |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
246 static int flv_read_header(AVFormatContext *s, |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
247 AVFormatParameters *ap) |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
248 { |
|
1563
bf3589ba8d7e
move duration finding code into read_packet() so it can be skiped if duration has already been set
michael
parents:
1562
diff
changeset
|
249 int offset, flags; |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
250 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
251 url_fskip(s->pb, 4); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
252 flags = get_byte(s->pb); |
| 1886 | 253 /* old flvtool cleared this field */ |
| 254 /* FIXME: better fix needed */ | |
| 255 if (!flags) { | |
| 256 flags = FLV_HEADER_FLAG_HASVIDEO | FLV_HEADER_FLAG_HASAUDIO; | |
| 257 av_log(s, AV_LOG_WARNING, "Broken FLV file, which says no streams present, this might fail\n"); | |
| 258 } | |
| 3214 | 259 if((flags & (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO)) |
| 260 != (FLV_HEADER_FLAG_HASVIDEO|FLV_HEADER_FLAG_HASAUDIO)) | |
| 261 s->ctx_flags |= AVFMTCTX_NOHEADER; | |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
262 |
|
1559
515e80ef01e6
get rid of AVFMTCTX_NOHEADER, create streams in read_header()
michael
parents:
1553
diff
changeset
|
263 if(flags & FLV_HEADER_FLAG_HASVIDEO){ |
| 2691 | 264 if(!create_stream(s, 0)) |
|
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2216
diff
changeset
|
265 return AVERROR(ENOMEM); |
|
1559
515e80ef01e6
get rid of AVFMTCTX_NOHEADER, create streams in read_header()
michael
parents:
1553
diff
changeset
|
266 } |
|
515e80ef01e6
get rid of AVFMTCTX_NOHEADER, create streams in read_header()
michael
parents:
1553
diff
changeset
|
267 if(flags & FLV_HEADER_FLAG_HASAUDIO){ |
| 2691 | 268 if(!create_stream(s, 1)) |
|
2273
7eb456c4ed8a
Replace all occurrences of AVERROR_NOMEM with AVERROR(ENOMEM).
takis
parents:
2216
diff
changeset
|
269 return AVERROR(ENOMEM); |
|
1559
515e80ef01e6
get rid of AVFMTCTX_NOHEADER, create streams in read_header()
michael
parents:
1553
diff
changeset
|
270 } |
|
515e80ef01e6
get rid of AVFMTCTX_NOHEADER, create streams in read_header()
michael
parents:
1553
diff
changeset
|
271 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
272 offset = get_be32(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
273 url_fseek(s->pb, offset, SEEK_SET); |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
274 |
| 1318 | 275 s->start_time = 0; |
| 276 | |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
277 return 0; |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
278 } |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
279 |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
280 static int flv_read_packet(AVFormatContext *s, AVPacket *pkt) |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
281 { |
| 2571 | 282 int ret, i, type, size, pts, flags, is_audio, next, pos; |
| 679 | 283 AVStream *st = NULL; |
| 885 | 284 |
| 445 | 285 for(;;){ |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
286 pos = url_ftell(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
287 url_fskip(s->pb, 4); /* size of previous packet */ |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
288 type = get_byte(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
289 size = get_be24(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
290 pts = get_be24(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
291 pts |= get_byte(s->pb) << 24; |
| 2571 | 292 // av_log(s, AV_LOG_DEBUG, "type:%d, size:%d, pts:%d\n", type, size, pts); |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
293 if (url_feof(s->pb)) |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
294 return AVERROR(EIO); |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
295 url_fskip(s->pb, 3); /* stream id, always 0 */ |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
296 flags = 0; |
| 885 | 297 |
| 445 | 298 if(size == 0) |
| 299 continue; | |
| 885 | 300 |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
301 next= size + url_ftell(s->pb); |
| 821 | 302 |
|
1553
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
303 if (type == FLV_TAG_TYPE_AUDIO) { |
| 445 | 304 is_audio=1; |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
305 flags = get_byte(s->pb); |
|
1553
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
306 } else if (type == FLV_TAG_TYPE_VIDEO) { |
| 445 | 307 is_audio=0; |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
308 flags = get_byte(s->pb); |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
309 } else { |
| 1568 | 310 if (type == FLV_TAG_TYPE_META && size > 13+1+4) |
| 311 flv_read_metabody(s, next); | |
| 312 else /* skip packet */ | |
| 313 av_log(s, AV_LOG_ERROR, "skipping flv packet: type %d, size %d, flags %d\n", type, size, flags); | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
314 url_fseek(s->pb, next, SEEK_SET); |
| 445 | 315 continue; |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
316 } |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
317 |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
318 /* now find stream */ |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
319 for(i=0;i<s->nb_streams;i++) { |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
320 st = s->streams[i]; |
| 445 | 321 if (st->id == is_audio) |
| 322 break; | |
| 323 } | |
| 324 if(i == s->nb_streams){ | |
|
1559
515e80ef01e6
get rid of AVFMTCTX_NOHEADER, create streams in read_header()
michael
parents:
1553
diff
changeset
|
325 av_log(NULL, AV_LOG_ERROR, "invalid stream\n"); |
| 2692 | 326 st= create_stream(s, is_audio); |
|
3215
4efe0debe0cf
Stop find_stream_info() searching for further streams if 2 streams have
michael
parents:
3214
diff
changeset
|
327 s->ctx_flags &= ~AVFMTCTX_NOHEADER; |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
328 } |
| 708 | 329 // av_log(NULL, AV_LOG_DEBUG, "%d %X %d \n", is_audio, flags, st->discard); |
|
1553
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
330 if( (st->discard >= AVDISCARD_NONKEY && !((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY || is_audio)) |
|
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
331 ||(st->discard >= AVDISCARD_BIDIR && ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_DISP_INTER && !is_audio)) |
| 708 | 332 || st->discard >= AVDISCARD_ALL |
| 333 ){ | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
334 url_fseek(s->pb, next, SEEK_SET); |
| 652 | 335 continue; |
| 336 } | |
|
1553
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
337 if ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY) |
| 2571 | 338 av_add_index_entry(st, pos, pts, size, 0, AVINDEX_KEYFRAME); |
| 445 | 339 break; |
| 340 } | |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
341 |
|
1563
bf3589ba8d7e
move duration finding code into read_packet() so it can be skiped if duration has already been set
michael
parents:
1562
diff
changeset
|
342 // if not streamed and no duration from metadata then seek to end to find the duration from the timestamps |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
343 if(!url_is_streamed(s->pb) && s->duration==AV_NOPTS_VALUE){ |
|
1563
bf3589ba8d7e
move duration finding code into read_packet() so it can be skiped if duration has already been set
michael
parents:
1562
diff
changeset
|
344 int size; |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
345 const int pos= url_ftell(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
346 const int fsize= url_fsize(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
347 url_fseek(s->pb, fsize-4, SEEK_SET); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
348 size= get_be32(s->pb); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
349 url_fseek(s->pb, fsize-3-size, SEEK_SET); |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
350 if(size == get_be24(s->pb) + 11){ |
|
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
351 s->duration= get_be24(s->pb) * (int64_t)AV_TIME_BASE / 1000; |
|
1563
bf3589ba8d7e
move duration finding code into read_packet() so it can be skiped if duration has already been set
michael
parents:
1562
diff
changeset
|
352 } |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
353 url_fseek(s->pb, pos, SEEK_SET); |
|
1563
bf3589ba8d7e
move duration finding code into read_packet() so it can be skiped if duration has already been set
michael
parents:
1562
diff
changeset
|
354 } |
|
bf3589ba8d7e
move duration finding code into read_packet() so it can be skiped if duration has already been set
michael
parents:
1562
diff
changeset
|
355 |
| 445 | 356 if(is_audio){ |
| 1568 | 357 if(!st->codec->sample_rate || !st->codec->bits_per_sample || (!st->codec->codec_id && !st->codec->codec_tag)) { |
|
1553
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
358 st->codec->channels = (flags & FLV_AUDIO_CHANNEL_MASK) == FLV_STEREO ? 2 : 1; |
|
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
359 if((flags & FLV_AUDIO_CODECID_MASK) == FLV_CODECID_NELLYMOSER_8HZ_MONO) |
|
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
775
diff
changeset
|
360 st->codec->sample_rate= 8000; |
| 445 | 361 else |
|
1553
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
362 st->codec->sample_rate = (44100 << ((flags & FLV_AUDIO_SAMPLERATE_MASK) >> FLV_AUDIO_SAMPLERATE_OFFSET) >> 3); |
|
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
363 st->codec->bits_per_sample = (flags & FLV_AUDIO_SAMPLESIZE_MASK) ? 16 : 8; |
| 1568 | 364 flv_set_audio_codec(s, st, flags & FLV_AUDIO_CODECID_MASK); |
| 445 | 365 } |
| 366 }else{ | |
| 1568 | 367 size -= flv_set_video_codec(s, st, flags & FLV_VIDEO_CODECID_MASK); |
| 378 | 368 } |
| 369 | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
370 ret= av_get_packet(s->pb, pkt, size - 1); |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
371 if (ret <= 0) { |
|
2274
b21c2af60bc9
Replace all occurrences of AVERROR_IO with AVERROR(EIO).
takis
parents:
2273
diff
changeset
|
372 return AVERROR(EIO); |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
373 } |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
374 /* note: we need to modify the packet size here to handle the last |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
375 packet */ |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
376 pkt->size = ret; |
| 2571 | 377 pkt->pts = pts; |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
378 pkt->stream_index = st->index; |
| 885 | 379 |
|
1553
504ceaa50e31
Defines various common FLV format values between the FLV muxer and demuxer
aurel
parents:
1415
diff
changeset
|
380 if (is_audio || ((flags & FLV_VIDEO_FRAMETYPE_MASK) == FLV_FRAME_KEY)) |
| 887 | 381 pkt->flags |= PKT_FLAG_KEY; |
| 885 | 382 |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
383 return ret; |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
384 } |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
385 |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
386 static int flv_read_close(AVFormatContext *s) |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
387 { |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
388 return 0; |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
389 } |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
390 |
| 1318 | 391 static int flv_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags) |
| 392 { | |
| 393 AVStream *st = s->streams[stream_index]; | |
| 394 int index = av_index_search_timestamp(st, timestamp, flags); | |
| 395 if (index < 0) | |
| 396 return -1; | |
|
2771
d52c718e83f9
Use dynamically allocated ByteIOContext in AVFormatContext
andoma
parents:
2756
diff
changeset
|
397 url_fseek(s->pb, st->index_entries[index].pos, SEEK_SET); |
| 1318 | 398 |
| 399 return 0; | |
| 400 } | |
| 401 | |
| 1167 | 402 AVInputFormat flv_demuxer = { |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
403 "flv", |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
404 "flv format", |
| 2571 | 405 0, |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
406 flv_probe, |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
407 flv_read_header, |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
408 flv_read_packet, |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
409 flv_read_close, |
| 1318 | 410 flv_read_seek, |
|
164
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
411 .extensions = "flv", |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
412 .value = CODEC_ID_FLV1, |
|
99fbacf0f764
flash video (flv) support patch by (Garrick Meeker <gmeeker at theoryllc dot com>)
michaelni
parents:
diff
changeset
|
413 }; |
