~medibuntu-maintainers/mplayer/medibuntu.quantal

« back to all changes in this revision

Viewing changes to ffmpeg/libavformat/oggparseflac.c

  • Committer: Gauvain Pocentek
  • Date: 2011-08-21 07:22:23 UTC
  • mfrom: (66.1.11 oneiric)
  • Revision ID: gauvain@pocentek.net-20110821072223-ummeossdz7okpb3d
* Merge from Ubuntu:
  - put back faac support
  - recommends apport-hooks-medibuntu
  - change Maintainer, Uploaders & Vcs-* fields.
* New upstream snapshot
  - update 23mplayer-debug-printf.patch
  - fixes miscompilation with gcc 4.6, Closes: #623304
  - improved internal mkv demuxer, Closes: #595452
  - Fixed segfault due to missing sanitation on playlist files,
    Closes: #591525
  - Fixed byteorder on 16-bit displays, Closes: #594093
  - tighten build depends on libav
  - --enable-largefile switch has been dropped
  - add build dependency on yasm
* Fix build dependency on libjpeg-dev, Closes: #634277
* rewrite debian/copyright in DEP5 format
* fix clean target
* don't remove snapshot_version file
* enable XVID, MP3 and X264 encoders
* simply architecture specific dependencies, Closes: #634773
* make buildlogs verbose
* unbreak building mplayer-doc package
* don't fail debian package build if not all shlibdeps information could be retrieved
* update configure flags for static libav* libraries
* fix spelling in mplayer-dbg description, Closes: #617826
* enable blueray support, Closes: #577761
* Select oss as default audio output module on kFreeBSD, Closes: #598431
* Update documentation with regard to our modifications to the upstream tarball.
* really no longer build mplayer-gui, Closes: #612473
* simplify/remove instruction to get upstream sources
* normalize debian/{control,copyright,mplayer.install} with wrap-and-sort
* bump standards version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *    Copyright (C) 2005  Matthieu CASTET
 
3
 *
 
4
 * This file is part of Libav.
 
5
 *
 
6
 * Libav is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU Lesser General Public
 
8
 * License as published by the Free Software Foundation; either
 
9
 * version 2.1 of the License, or (at your option) any later version.
 
10
 *
 
11
 * Libav is distributed in the hope that it will be useful,
 
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
 * Lesser General Public License for more details.
 
15
 *
 
16
 * You should have received a copy of the GNU Lesser General Public
 
17
 * License along with Libav; if not, write to the Free Software
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
19
 */
 
20
 
 
21
#include <stdlib.h>
 
22
#include "libavcodec/get_bits.h"
 
23
#include "libavcodec/flac.h"
 
24
#include "avformat.h"
 
25
#include "oggdec.h"
 
26
 
 
27
#define OGG_FLAC_METADATA_TYPE_STREAMINFO 0x7F
 
28
 
 
29
static int
 
30
flac_header (AVFormatContext * s, int idx)
 
31
{
 
32
    struct ogg *ogg = s->priv_data;
 
33
    struct ogg_stream *os = ogg->streams + idx;
 
34
    AVStream *st = s->streams[idx];
 
35
    GetBitContext gb;
 
36
    FLACStreaminfo si;
 
37
    int mdt;
 
38
 
 
39
    if (os->buf[os->pstart] == 0xff)
 
40
        return 0;
 
41
 
 
42
    init_get_bits(&gb, os->buf + os->pstart, os->psize*8);
 
43
    skip_bits1(&gb); /* metadata_last */
 
44
    mdt = get_bits(&gb, 7);
 
45
 
 
46
    if (mdt == OGG_FLAC_METADATA_TYPE_STREAMINFO) {
 
47
        uint8_t *streaminfo_start = os->buf + os->pstart + 5 + 4 + 4 + 4;
 
48
        skip_bits_long(&gb, 4*8); /* "FLAC" */
 
49
        if(get_bits(&gb, 8) != 1) /* unsupported major version */
 
50
            return -1;
 
51
        skip_bits_long(&gb, 8 + 16); /* minor version + header count */
 
52
        skip_bits_long(&gb, 4*8); /* "fLaC" */
 
53
 
 
54
        /* METADATA_BLOCK_HEADER */
 
55
        if (get_bits_long(&gb, 32) != FLAC_STREAMINFO_SIZE)
 
56
            return -1;
 
57
 
 
58
        ff_flac_parse_streaminfo(st->codec, &si, streaminfo_start);
 
59
 
 
60
        st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
 
61
        st->codec->codec_id = CODEC_ID_FLAC;
 
62
 
 
63
        st->codec->extradata =
 
64
            av_malloc(FLAC_STREAMINFO_SIZE + FF_INPUT_BUFFER_PADDING_SIZE);
 
65
        memcpy(st->codec->extradata, streaminfo_start, FLAC_STREAMINFO_SIZE);
 
66
        st->codec->extradata_size = FLAC_STREAMINFO_SIZE;
 
67
 
 
68
        av_set_pts_info(st, 64, 1, st->codec->sample_rate);
 
69
    } else if (mdt == FLAC_METADATA_TYPE_VORBIS_COMMENT) {
 
70
        ff_vorbis_comment (s, &st->metadata, os->buf + os->pstart + 4, os->psize - 4);
 
71
    }
 
72
 
 
73
    return 1;
 
74
}
 
75
 
 
76
static int
 
77
old_flac_header (AVFormatContext * s, int idx)
 
78
{
 
79
    AVStream *st = s->streams[idx];
 
80
    st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
 
81
    st->codec->codec_id = CODEC_ID_FLAC;
 
82
 
 
83
    return 0;
 
84
}
 
85
 
 
86
const struct ogg_codec ff_flac_codec = {
 
87
    .magic = "\177FLAC",
 
88
    .magicsize = 5,
 
89
    .header = flac_header
 
90
};
 
91
 
 
92
const struct ogg_codec ff_old_flac_codec = {
 
93
    .magic = "fLaC",
 
94
    .magicsize = 4,
 
95
    .header = old_flac_header
 
96
};