~ubuntu-branches/ubuntu/oneiric/libav/oneiric

« back to all changes in this revision

Viewing changes to libavformat/nut.c

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2011-04-30 14:27:42 UTC
  • mfrom: (1.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110430142742-quvblxk1tj6adlh5
Tags: 4:0.7~b1-1ubuntu1
* Merge from debian. Remaining changes:
  - don't build against libfaad, libdirac, librtmp and libopenjpeg
    (all in universe)
  - explicitly --enable-pic on powerpc, cf. LP #654666
  - different arm configure bits that should probably better be
    merged into debian
* Cherry-picked from git: 
  - install doc/APIChanges and refer to them in NEWS.Debian (Closes: #623682)
  - don't try to install non-existing documentation, fixes FTBFS on powerpc

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * nut
3
3
 * Copyright (c) 2004-2007 Michael Niedermayer
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
 
22
22
#include "libavutil/tree.h"
23
23
#include "nut.h"
 
24
#include "internal.h"
24
25
 
25
26
const AVCodecTag ff_nut_subtitle_tags[] = {
26
27
    { CODEC_ID_TEXT        , MKTAG('U', 'T', 'F', '8') },
30
31
    { CODEC_ID_NONE        , 0                         }
31
32
};
32
33
 
 
34
const AVCodecTag ff_nut_video_tags[] = {
 
35
    { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 15 ) },
 
36
    { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 15 ) },
 
37
    { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 16 ) },
 
38
    { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 16 ) },
 
39
    { CODEC_ID_RAWVIDEO, MKTAG(15 , 'B', 'G', 'R') },
 
40
    { CODEC_ID_RAWVIDEO, MKTAG(15 , 'R', 'G', 'B') },
 
41
    { CODEC_ID_RAWVIDEO, MKTAG(16 , 'B', 'G', 'R') },
 
42
    { CODEC_ID_RAWVIDEO, MKTAG(16 , 'R', 'G', 'B') },
 
43
    { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 12 ) },
 
44
    { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 12 ) },
 
45
    { CODEC_ID_RAWVIDEO, MKTAG(12 , 'B', 'G', 'R') },
 
46
    { CODEC_ID_RAWVIDEO, MKTAG(12 , 'R', 'G', 'B') },
 
47
    { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 'A') },
 
48
    { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 'A') },
 
49
    { CODEC_ID_RAWVIDEO, MKTAG('A', 'B', 'G', 'R') },
 
50
    { CODEC_ID_RAWVIDEO, MKTAG('A', 'R', 'G', 'B') },
 
51
    { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 24 ) },
 
52
    { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R', 24 ) },
 
53
    { CODEC_ID_RAWVIDEO, MKTAG('4', '1', '1', 'P') },
 
54
    { CODEC_ID_RAWVIDEO, MKTAG('4', '2', '2', 'P') },
 
55
    { CODEC_ID_RAWVIDEO, MKTAG('4', '2', '2', 'P') },
 
56
    { CODEC_ID_RAWVIDEO, MKTAG('4', '4', '0', 'P') },
 
57
    { CODEC_ID_RAWVIDEO, MKTAG('4', '4', '0', 'P') },
 
58
    { CODEC_ID_RAWVIDEO, MKTAG('4', '4', '4', 'P') },
 
59
    { CODEC_ID_RAWVIDEO, MKTAG('4', '4', '4', 'P') },
 
60
    { CODEC_ID_RAWVIDEO, MKTAG('B', '1', 'W', '0') },
 
61
    { CODEC_ID_RAWVIDEO, MKTAG('B', '0', 'W', '1') },
 
62
    { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R',  8 ) },
 
63
    { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B',  8 ) },
 
64
    { CODEC_ID_RAWVIDEO, MKTAG('B', 'G', 'R',  4 ) },
 
65
    { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B',  4 ) },
 
66
    { CODEC_ID_RAWVIDEO, MKTAG('B', '4', 'B', 'Y') },
 
67
    { CODEC_ID_RAWVIDEO, MKTAG('R', '4', 'B', 'Y') },
 
68
    { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 48 ) },
 
69
    { CODEC_ID_RAWVIDEO, MKTAG(48 , 'R', 'G', 'B') },
 
70
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '1',  0 , 16 ) },
 
71
    { CODEC_ID_RAWVIDEO, MKTAG(16 ,  0 , '1', 'Y') },
 
72
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '3', 11 , 16 ) },
 
73
    { CODEC_ID_RAWVIDEO, MKTAG(16 , 11 , '3', 'Y') },
 
74
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '3', 10 , 16 ) },
 
75
    { CODEC_ID_RAWVIDEO, MKTAG(16 , 10 , '3', 'Y') },
 
76
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '3',  0 , 16 ) },
 
77
    { CODEC_ID_RAWVIDEO, MKTAG(16 ,  0 , '3', 'Y') },
 
78
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '4', 11 ,  8 ) },
 
79
    { CODEC_ID_RAWVIDEO, MKTAG('Y', '2',  0 ,  8 ) },
 
80
    { CODEC_ID_NONE    , 0                         }
 
81
};
 
82
 
33
83
void ff_nut_reset_ts(NUTContext *nut, AVRational time_base, int64_t val){
34
84
    int i;
35
85
    for(i=0; i<nut->avf->nb_streams; i++){