00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #include "avformat.h"
00023 #include "raw.h"
00024 #include "id3v2.h"
00025
00026 static int flac_read_header(AVFormatContext *s,
00027 AVFormatParameters *ap)
00028 {
00029 uint8_t buf[ID3v2_HEADER_SIZE];
00030 int ret;
00031 AVStream *st = av_new_stream(s, 0);
00032 if (!st)
00033 return AVERROR(ENOMEM);
00034 st->codec->codec_type = CODEC_TYPE_AUDIO;
00035 st->codec->codec_id = CODEC_ID_FLAC;
00036 st->need_parsing = AVSTREAM_PARSE_FULL;
00037
00038
00039
00040 ret = get_buffer(s->pb, buf, ID3v2_HEADER_SIZE);
00041 if (ret == ID3v2_HEADER_SIZE && ff_id3v2_match(buf)) {
00042 int len = ff_id3v2_tag_len(buf);
00043 url_fseek(s->pb, len - ID3v2_HEADER_SIZE, SEEK_CUR);
00044 } else {
00045 url_fseek(s->pb, 0, SEEK_SET);
00046 }
00047 return 0;
00048 }
00049
00050 static int flac_probe(AVProbeData *p)
00051 {
00052 uint8_t *bufptr = p->buf;
00053 uint8_t *end = p->buf + p->buf_size;
00054
00055 if(ff_id3v2_match(bufptr))
00056 bufptr += ff_id3v2_tag_len(bufptr);
00057
00058 if(bufptr > end-4 || memcmp(bufptr, "fLaC", 4)) return 0;
00059 else return AVPROBE_SCORE_MAX/2;
00060 }
00061
00062 AVInputFormat flac_demuxer = {
00063 "flac",
00064 NULL_IF_CONFIG_SMALL("raw FLAC"),
00065 0,
00066 flac_probe,
00067 flac_read_header,
00068 ff_raw_read_partial_packet,
00069 .flags= AVFMT_GENERIC_INDEX,
00070 .extensions = "flac",
00071 .value = CODEC_ID_FLAC,
00072 };