ac3dec.c 4.41 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * RAW AC-3 and E-AC-3 demuxer
 * Copyright (c) 2007 Justin Ruggles <justin.ruggles@gmail.com>
 *
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * FFmpeg is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with FFmpeg; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

James Almer's avatar
James Almer committed
22
#include "libavutil/avassert.h"
23 24 25
#include "libavutil/crc.h"
#include "libavcodec/ac3_parser.h"
#include "avformat.h"
26
#include "rawdec.h"
27

28
static int ac3_eac3_probe(AVProbeData *p, enum AVCodecID expected_codec_id)
29 30
{
    int max_frames, first_frames = 0, frames;
31
    const uint8_t *buf, *buf2, *end;
32
    enum AVCodecID codec_id = AV_CODEC_ID_AC3;
33 34 35 36 37 38

    max_frames = 0;
    buf = p->buf;
    end = buf + p->buf_size;

    for(; buf < end; buf++) {
39 40
        if(buf > p->buf && !(buf[0] == 0x0B && buf[1] == 0x77)
                        && !(buf[0] == 0x77 && buf[1] == 0x0B) )
41
            continue;
42 43 44
        buf2 = buf;

        for(frames = 0; buf2 < end; frames++) {
45
            uint8_t buf3[4096];
46 47
            uint8_t bitstream_id;
            uint16_t frame_size;
James Almer's avatar
James Almer committed
48
            int i, ret;
49

50 51 52
            if(!memcmp(buf2, "\x1\x10\0\0\0\0\0\0", 8)) {
                if (buf2 + 16 > end)
                    break;
53
                buf2+=16;
54
            }
55 56
            if (buf[0] == 0x77 && buf[1] == 0x0B) {
                for(i=0; i<8; i+=2) {
57 58
                    buf3[i  ] = buf2[i+1];
                    buf3[i+1] = buf2[i  ];
59
                }
James Almer's avatar
James Almer committed
60 61
                ret = av_ac3_parse_header(buf3, 8, &bitstream_id,
                                          &frame_size);
62
            }else
James Almer's avatar
James Almer committed
63 64
                ret = av_ac3_parse_header(buf2, end - buf2, &bitstream_id,
                                          &frame_size);
65
            if (ret < 0)
66
                break;
James Almer's avatar
James Almer committed
67
            if(buf2 + frame_size > end)
68 69
                break;
            if (buf[0] == 0x77 && buf[1] == 0x0B) {
James Almer's avatar
James Almer committed
70 71
                av_assert0(frame_size <= sizeof(buf3));
                for(i = 8; i < frame_size; i += 2) {
72 73
                    buf3[i  ] = buf2[i+1];
                    buf3[i+1] = buf2[i  ];
74
                }
James Almer's avatar
James Almer committed
75 76 77 78 79
                if (av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf3 + 2, frame_size - 2))
                    break;
            } else {
                if (av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf2 + 2, frame_size - 2))
                    break;
80
            }
81
            if (bitstream_id > 10)
82
                codec_id = AV_CODEC_ID_EAC3;
83
            buf2 += frame_size;
84 85 86 87 88 89 90 91
        }
        max_frames = FFMAX(max_frames, frames);
        if(buf == p->buf)
            first_frames = frames;
    }
    if(codec_id != expected_codec_id) return 0;
    // keep this in sync with mp3 probe, both need to avoid
    // issues with MPEG-files!
92
    if   (first_frames>=7) return AVPROBE_SCORE_EXTENSION + 1;
93 94
    else if(max_frames>200)return AVPROBE_SCORE_EXTENSION;
    else if(max_frames>=4) return AVPROBE_SCORE_EXTENSION/2;
95 96 97 98 99 100 101
    else if(max_frames>=1) return 1;
    else                   return 0;
}

#if CONFIG_AC3_DEMUXER
static int ac3_probe(AVProbeData *p)
{
102
    return ac3_eac3_probe(p, AV_CODEC_ID_AC3);
103 104
}

105
AVInputFormat ff_ac3_demuxer = {
106 107 108 109 110
    .name           = "ac3",
    .long_name      = NULL_IF_CONFIG_SMALL("raw AC-3"),
    .read_probe     = ac3_probe,
    .read_header    = ff_raw_audio_read_header,
    .read_packet    = ff_raw_read_partial_packet,
111 112
    .flags= AVFMT_GENERIC_INDEX,
    .extensions = "ac3",
113
    .raw_codec_id   = AV_CODEC_ID_AC3,
114 115 116 117 118 119
};
#endif

#if CONFIG_EAC3_DEMUXER
static int eac3_probe(AVProbeData *p)
{
120
    return ac3_eac3_probe(p, AV_CODEC_ID_EAC3);
121 122
}

123
AVInputFormat ff_eac3_demuxer = {
124 125 126 127 128
    .name           = "eac3",
    .long_name      = NULL_IF_CONFIG_SMALL("raw E-AC-3"),
    .read_probe     = eac3_probe,
    .read_header    = ff_raw_audio_read_header,
    .read_packet    = ff_raw_read_partial_packet,
129 130
    .flags          = AVFMT_GENERIC_INDEX,
    .extensions     = "eac3",
131
    .raw_codec_id   = AV_CODEC_ID_EAC3,
132 133
};
#endif