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

« back to all changes in this revision

Viewing changes to libavformat/iv8.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:
1
1
/*
2
2
 * Copyright (c) 2009 Michael Niedermayer
3
3
 *
4
 
 * This file is part of FFmpeg.
 
4
 * This file is part of Libav.
5
5
 *
6
 
 * FFmpeg is free software; you can redistribute it and/or
 
6
 * Libav is free software; you can redistribute it and/or
7
7
 * modify it under the terms of the GNU Lesser General Public
8
8
 * License as published by the Free Software Foundation; either
9
9
 * version 2.1 of the License, or (at your option) any later version.
10
10
 *
11
 
 * FFmpeg is distributed in the hope that it will be useful,
 
11
 * Libav is distributed in the hope that it will be useful,
12
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
14
 * Lesser General Public License for more details.
15
15
 *
16
16
 * You should have received a copy of the GNU Lesser General Public
17
 
 * License along with FFmpeg; if not, write to the Free Software
 
17
 * License along with Libav; if not, write to the Free Software
18
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
19
 */
20
20
 
57
57
{
58
58
    int ret, size, pts, type;
59
59
retry:
60
 
    type= get_be16(s->pb); // 257 or 258
61
 
    size= get_be16(s->pb);
 
60
    type= avio_rb16(s->pb); // 257 or 258
 
61
    size= avio_rb16(s->pb);
62
62
 
63
 
    get_be16(s->pb); //some flags, 0x80 indicates end of frame
64
 
    get_be16(s->pb); //packet number
65
 
    pts=get_be32(s->pb);
66
 
    get_be32(s->pb); //6A 13 E3 88
 
63
    avio_rb16(s->pb); //some flags, 0x80 indicates end of frame
 
64
    avio_rb16(s->pb); //packet number
 
65
    pts=avio_rb32(s->pb);
 
66
    avio_rb32(s->pb); //6A 13 E3 88
67
67
 
68
68
    size -= 12;
69
69
    if(size<1)
70
70
        return -1;
71
71
 
72
72
    if(type==258){
73
 
        url_fskip(s->pb, size);
 
73
        avio_skip(s->pb, size);
74
74
        goto retry;
75
75
    }
76
76
 
84
84
    return ret;
85
85
}
86
86
 
87
 
AVInputFormat iv8_demuxer = {
 
87
AVInputFormat ff_iv8_demuxer = {
88
88
    "iv8",
89
89
    NULL_IF_CONFIG_SMALL("A format generated by IndigoVision 8000 video server"),
90
90
    0,