~ubuntu-branches/ubuntu/trusty/libav/trusty

« back to all changes in this revision

Viewing changes to libavformat/dxa.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2011-04-19 15:04:55 UTC
  • mfrom: (1.2.1 upstream)
  • mto: (1.3.4 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20110419150455-c1nac6gjm3t2aa4n
Tags: 4:0.7~b1-1
* New upstream version
* bump SONAME and SHLIBS
* configure flags --disable-stripping was removed upstream
* the MAINTAINERS file was removed upstream
* remove patch disable-configuration-warning.patch
* drop avfilter confflags, it is enable by default in 0.7
* libfaad wrapper has been removed upstream
* also update the *contents* of the lintian overrides

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * DXA demuxer
3
3
 * Copyright (c) 2007 Konstantin Shishkov
4
4
 *
5
 
 * This file is part of FFmpeg.
 
5
 * This file is part of Libav.
6
6
 *
7
 
 * FFmpeg is free software; you can redistribute it and/or
 
7
 * Libav is free software; you can redistribute it and/or
8
8
 * modify it under the terms of the GNU Lesser General Public
9
9
 * License as published by the Free Software Foundation; either
10
10
 * version 2.1 of the License, or (at your option) any later version.
11
11
 *
12
 
 * FFmpeg is distributed in the hope that it will be useful,
 
12
 * Libav is distributed in the hope that it will be useful,
13
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15
15
 * Lesser General Public License for more details.
16
16
 *
17
17
 * You should have received a copy of the GNU Lesser General Public
18
 
 * License along with FFmpeg; if not, write to the Free Software
 
18
 * License along with Libav; if not, write to the Free Software
19
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
20
 */
21
21
 
52
52
 
53
53
static int dxa_read_header(AVFormatContext *s, AVFormatParameters *ap)
54
54
{
55
 
    ByteIOContext *pb = s->pb;
 
55
    AVIOContext *pb = s->pb;
56
56
    DXAContext *c = s->priv_data;
57
57
    AVStream *st, *ast;
58
58
    uint32_t tag;
60
60
    int w, h;
61
61
    int num, den;
62
62
    int flags;
 
63
    int ret;
63
64
 
64
 
    tag = get_le32(pb);
 
65
    tag = avio_rl32(pb);
65
66
    if (tag != MKTAG('D', 'E', 'X', 'A'))
66
67
        return -1;
67
 
    flags = get_byte(pb);
68
 
    c->frames = get_be16(pb);
 
68
    flags = avio_r8(pb);
 
69
    c->frames = avio_rb16(pb);
69
70
    if(!c->frames){
70
71
        av_log(s, AV_LOG_ERROR, "File contains no frames ???\n");
71
72
        return -1;
72
73
    }
73
74
 
74
 
    fps = get_be32(pb);
 
75
    fps = avio_rb32(pb);
75
76
    if(fps > 0){
76
77
        den = 1000;
77
78
        num = fps;
82
83
        den = 10;
83
84
        num = 1;
84
85
    }
85
 
    w = get_be16(pb);
86
 
    h = get_be16(pb);
 
86
    w = avio_rb16(pb);
 
87
    h = avio_rb16(pb);
87
88
    c->has_sound = 0;
88
89
 
89
90
    st = av_new_stream(s, 0);
91
92
        return -1;
92
93
 
93
94
    // Parse WAV data header
94
 
    if(get_le32(pb) == MKTAG('W', 'A', 'V', 'E')){
 
95
    if(avio_rl32(pb) == MKTAG('W', 'A', 'V', 'E')){
95
96
        uint32_t size, fsize;
96
97
        c->has_sound = 1;
97
 
        size = get_be32(pb);
98
 
        c->vidpos = url_ftell(pb) + size;
99
 
        url_fskip(pb, 16);
100
 
        fsize = get_le32(pb);
 
98
        size = avio_rb32(pb);
 
99
        c->vidpos = avio_tell(pb) + size;
 
100
        avio_skip(pb, 16);
 
101
        fsize = avio_rl32(pb);
101
102
 
102
103
        ast = av_new_stream(s, 0);
103
104
        if (!ast)
104
105
            return -1;
105
 
        ff_get_wav_header(pb, ast->codec, fsize);
 
106
        ret = ff_get_wav_header(pb, ast->codec, fsize);
 
107
        if (ret < 0)
 
108
            return ret;
106
109
        // find 'data' chunk
107
 
        while(url_ftell(pb) < c->vidpos && !url_feof(pb)){
108
 
            tag = get_le32(pb);
109
 
            fsize = get_le32(pb);
 
110
        while(avio_tell(pb) < c->vidpos && !pb->eof_reached){
 
111
            tag = avio_rl32(pb);
 
112
            fsize = avio_rl32(pb);
110
113
            if(tag == MKTAG('d', 'a', 't', 'a')) break;
111
 
            url_fskip(pb, fsize);
 
114
            avio_skip(pb, fsize);
112
115
        }
113
116
        c->bpc = (fsize + c->frames - 1) / c->frames;
114
117
        if(ast->codec->block_align)
115
118
            c->bpc = ((c->bpc + ast->codec->block_align - 1) / ast->codec->block_align) * ast->codec->block_align;
116
119
        c->bytes_left = fsize;
117
 
        c->wavpos = url_ftell(pb);
118
 
        url_fseek(pb, c->vidpos, SEEK_SET);
 
120
        c->wavpos = avio_tell(pb);
 
121
        avio_seek(pb, c->vidpos, SEEK_SET);
119
122
    }
120
123
 
121
124
    /* now we are ready: build format streams */
133
136
        st->codec->height >>= 1;
134
137
    }
135
138
    c->readvid = !c->has_sound;
136
 
    c->vidpos  = url_ftell(pb);
 
139
    c->vidpos  = avio_tell(pb);
137
140
    s->start_time = 0;
138
141
    s->duration = (int64_t)c->frames * AV_TIME_BASE * num / den;
139
142
    av_log(s, AV_LOG_DEBUG, "%d frame(s)\n",c->frames);
151
154
 
152
155
    if(!c->readvid && c->has_sound && c->bytes_left){
153
156
        c->readvid = 1;
154
 
        url_fseek(s->pb, c->wavpos, SEEK_SET);
 
157
        avio_seek(s->pb, c->wavpos, SEEK_SET);
155
158
        size = FFMIN(c->bytes_left, c->bpc);
156
159
        ret = av_get_packet(s->pb, pkt, size);
157
160
        pkt->stream_index = 1;
158
161
        if(ret != size)
159
162
            return AVERROR(EIO);
160
163
        c->bytes_left -= size;
161
 
        c->wavpos = url_ftell(s->pb);
 
164
        c->wavpos = avio_tell(s->pb);
162
165
        return 0;
163
166
    }
164
 
    url_fseek(s->pb, c->vidpos, SEEK_SET);
165
 
    while(!url_feof(s->pb) && c->frames){
166
 
        get_buffer(s->pb, buf, 4);
 
167
    avio_seek(s->pb, c->vidpos, SEEK_SET);
 
168
    while(!s->pb->eof_reached && c->frames){
 
169
        avio_read(s->pb, buf, 4);
167
170
        switch(AV_RL32(buf)){
168
171
        case MKTAG('N', 'U', 'L', 'L'):
169
172
            if(av_new_packet(pkt, 4 + pal_size) < 0)
172
175
            if(pal_size) memcpy(pkt->data, pal, pal_size);
173
176
            memcpy(pkt->data + pal_size, buf, 4);
174
177
            c->frames--;
175
 
            c->vidpos = url_ftell(s->pb);
 
178
            c->vidpos = avio_tell(s->pb);
176
179
            c->readvid = 0;
177
180
            return 0;
178
181
        case MKTAG('C', 'M', 'A', 'P'):
179
182
            pal_size = 768+4;
180
183
            memcpy(pal, buf, 4);
181
 
            get_buffer(s->pb, pal + 4, 768);
 
184
            avio_read(s->pb, pal + 4, 768);
182
185
            break;
183
186
        case MKTAG('F', 'R', 'A', 'M'):
184
 
            get_buffer(s->pb, buf + 4, DXA_EXTRA_SIZE - 4);
 
187
            avio_read(s->pb, buf + 4, DXA_EXTRA_SIZE - 4);
185
188
            size = AV_RB32(buf + 5);
186
189
            if(size > 0xFFFFFF){
187
190
                av_log(s, AV_LOG_ERROR, "Frame size is too big: %d\n", size);
190
193
            if(av_new_packet(pkt, size + DXA_EXTRA_SIZE + pal_size) < 0)
191
194
                return AVERROR(ENOMEM);
192
195
            memcpy(pkt->data + pal_size, buf, DXA_EXTRA_SIZE);
193
 
            ret = get_buffer(s->pb, pkt->data + DXA_EXTRA_SIZE + pal_size, size);
 
196
            ret = avio_read(s->pb, pkt->data + DXA_EXTRA_SIZE + pal_size, size);
194
197
            if(ret != size){
195
198
                av_free_packet(pkt);
196
199
                return AVERROR(EIO);
198
201
            if(pal_size) memcpy(pkt->data, pal, pal_size);
199
202
            pkt->stream_index = 0;
200
203
            c->frames--;
201
 
            c->vidpos = url_ftell(s->pb);
 
204
            c->vidpos = avio_tell(s->pb);
202
205
            c->readvid = 0;
203
206
            return 0;
204
207
        default:
209
212
    return AVERROR(EIO);
210
213
}
211
214
 
212
 
AVInputFormat dxa_demuxer = {
 
215
AVInputFormat ff_dxa_demuxer = {
213
216
    "dxa",
214
217
    NULL_IF_CONFIG_SMALL("DXA"),
215
218
    sizeof(DXAContext),