mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-02 03:06:28 +02:00
7a72695c05
* commit '36ef5369ee9b336febc2c270f8718cec4476cb85': Replace all CODEC_ID_* with AV_CODEC_ID_* lavc: add AV prefix to codec ids. Conflicts: doc/APIchanges doc/examples/decoding_encoding.c doc/examples/muxing.c ffmpeg.c ffprobe.c ffserver.c libavcodec/8svx.c libavcodec/avcodec.h libavcodec/dnxhd_parser.c libavcodec/dvdsubdec.c libavcodec/error_resilience.c libavcodec/h263dec.c libavcodec/libvorbisenc.c libavcodec/mjpeg_parser.c libavcodec/mjpegenc.c libavcodec/mpeg12.c libavcodec/mpeg4videodec.c libavcodec/mpegvideo.c libavcodec/mpegvideo_enc.c libavcodec/pcm.c libavcodec/r210dec.c libavcodec/utils.c libavcodec/v210dec.c libavcodec/version.h libavdevice/alsa-audio-dec.c libavdevice/bktr.c libavdevice/v4l2.c libavformat/asfdec.c libavformat/asfenc.c libavformat/avformat.h libavformat/avidec.c libavformat/caf.c libavformat/electronicarts.c libavformat/flacdec.c libavformat/flvdec.c libavformat/flvenc.c libavformat/framecrcenc.c libavformat/img2.c libavformat/img2dec.c libavformat/img2enc.c libavformat/ipmovie.c libavformat/isom.c libavformat/matroska.c libavformat/matroskadec.c libavformat/matroskaenc.c libavformat/mov.c libavformat/movenc.c libavformat/mp3dec.c libavformat/mpeg.c libavformat/mpegts.c libavformat/mxf.c libavformat/mxfdec.c libavformat/mxfenc.c libavformat/nsvdec.c libavformat/nut.c libavformat/oggenc.c libavformat/pmpdec.c libavformat/rawdec.c libavformat/rawenc.c libavformat/riff.c libavformat/sdp.c libavformat/utils.c libavformat/vocenc.c libavformat/wtv.c libavformat/xmv.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
106 lines
3.3 KiB
C
106 lines
3.3 KiB
C
/*
|
|
* 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
|
|
*/
|
|
|
|
#include "libavutil/crc.h"
|
|
#include "libavcodec/ac3_parser.h"
|
|
#include "avformat.h"
|
|
#include "rawdec.h"
|
|
|
|
static int ac3_eac3_probe(AVProbeData *p, enum AVCodecID expected_codec_id)
|
|
{
|
|
int max_frames, first_frames = 0, frames;
|
|
uint8_t *buf, *buf2, *end;
|
|
AC3HeaderInfo hdr;
|
|
GetBitContext gbc;
|
|
enum AVCodecID codec_id = AV_CODEC_ID_AC3;
|
|
|
|
max_frames = 0;
|
|
buf = p->buf;
|
|
end = buf + p->buf_size;
|
|
|
|
for(; buf < end; buf++) {
|
|
if(buf > p->buf && (buf[0] != 0x0B || buf[1] != 0x77) )
|
|
continue;
|
|
buf2 = buf;
|
|
|
|
for(frames = 0; buf2 < end; frames++) {
|
|
if(!memcmp(buf2, "\x1\x10\0\0\0\0\0\0", 8))
|
|
buf2+=16;
|
|
init_get_bits(&gbc, buf2, 54);
|
|
if(avpriv_ac3_parse_header(&gbc, &hdr) < 0)
|
|
break;
|
|
if(buf2 + hdr.frame_size > end ||
|
|
av_crc(av_crc_get_table(AV_CRC_16_ANSI), 0, buf2 + 2, hdr.frame_size - 2))
|
|
break;
|
|
if (hdr.bitstream_id > 10)
|
|
codec_id = AV_CODEC_ID_EAC3;
|
|
buf2 += hdr.frame_size;
|
|
}
|
|
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!
|
|
if (first_frames>=4) return AVPROBE_SCORE_MAX/2+1;
|
|
else if(max_frames>200)return AVPROBE_SCORE_MAX/2;
|
|
else if(max_frames>=4) return AVPROBE_SCORE_MAX/4;
|
|
else if(max_frames>=1) return 1;
|
|
else return 0;
|
|
}
|
|
|
|
#if CONFIG_AC3_DEMUXER
|
|
static int ac3_probe(AVProbeData *p)
|
|
{
|
|
return ac3_eac3_probe(p, AV_CODEC_ID_AC3);
|
|
}
|
|
|
|
AVInputFormat ff_ac3_demuxer = {
|
|
.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,
|
|
.flags= AVFMT_GENERIC_INDEX,
|
|
.extensions = "ac3",
|
|
.raw_codec_id = AV_CODEC_ID_AC3,
|
|
};
|
|
#endif
|
|
|
|
#if CONFIG_EAC3_DEMUXER
|
|
static int eac3_probe(AVProbeData *p)
|
|
{
|
|
return ac3_eac3_probe(p, AV_CODEC_ID_EAC3);
|
|
}
|
|
|
|
AVInputFormat ff_eac3_demuxer = {
|
|
.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,
|
|
.flags = AVFMT_GENERIC_INDEX,
|
|
.extensions = "eac3",
|
|
.raw_codec_id = AV_CODEC_ID_EAC3,
|
|
};
|
|
#endif
|