ffmpeg / libavformat / nut.c @ 6cc7f139
History | View | Annotate | Download (5.87 KB)
1 | 874abace | Michael Niedermayer | /*
|
---|---|---|---|
2 | * nut
|
||
3 | * Copyright (c) 2004-2007 Michael Niedermayer
|
||
4 | *
|
||
5 | 2912e87a | Mans Rullgard | * This file is part of Libav.
|
6 | 874abace | Michael Niedermayer | *
|
7 | 2912e87a | Mans Rullgard | * Libav is free software; you can redistribute it and/or
|
8 | 874abace | Michael Niedermayer | * modify it under the terms of the GNU Lesser General Public
|
9 | * License as published by the Free Software Foundation; either
|
||
10 | * version 2.1 of the License, or (at your option) any later version.
|
||
11 | *
|
||
12 | 2912e87a | Mans Rullgard | * Libav is distributed in the hope that it will be useful,
|
13 | 874abace | Michael Niedermayer | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
15 | * Lesser General Public License for more details.
|
||
16 | *
|
||
17 | * You should have received a copy of the GNU Lesser General Public
|
||
18 | 2912e87a | Mans Rullgard | * License along with Libav; if not, write to the Free Software
|
19 | 874abace | Michael Niedermayer | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
20 | */
|
||
21 | |||
22 | 245976da | Diego Biurrun | #include "libavutil/tree.h" |
23 | 874abace | Michael Niedermayer | #include "nut.h" |
24 | 80b39e1c | Francesco Lavra | #include "internal.h" |
25 | 874abace | Michael Niedermayer | |
26 | 1326621c | Michael Niedermayer | const AVCodecTag ff_nut_subtitle_tags[] = {
|
27 | { CODEC_ID_TEXT , MKTAG('U', 'T', 'F', '8') }, |
||
28 | { CODEC_ID_SSA , MKTAG('S', 'S', 'A', 0 ) }, |
||
29 | { CODEC_ID_DVD_SUBTITLE, MKTAG('D', 'V', 'D', 'S') }, |
||
30 | { CODEC_ID_DVB_SUBTITLE, MKTAG('D', 'V', 'B', 'S') }, |
||
31 | { CODEC_ID_NONE , 0 }
|
||
32 | }; |
||
33 | |||
34 | 2e01def0 | Stefano Sabatini | 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 | 63455b8c | Michael Niedermayer | { 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 | 2e01def0 | Stefano Sabatini | { 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 | d588e3f5 | Stefano Sabatini | { CODEC_ID_RAWVIDEO, MKTAG('B', '4', 'B', 'Y') }, |
67 | { CODEC_ID_RAWVIDEO, MKTAG('R', '4', 'B', 'Y') }, |
||
68 | 2e01def0 | Stefano Sabatini | { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', 48 ) }, |
69 | { CODEC_ID_RAWVIDEO, MKTAG(48 , 'R', 'G', 'B') }, |
||
70 | ab8f6009 | Stefano Sabatini | { 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 | 2e01def0 | Stefano Sabatini | { CODEC_ID_NONE , 0 }
|
81 | }; |
||
82 | |||
83 | 874abace | Michael Niedermayer | void ff_nut_reset_ts(NUTContext *nut, AVRational time_base, int64_t val){
|
84 | int i;
|
||
85 | for(i=0; i<nut->avf->nb_streams; i++){ |
||
86 | nut->stream[i].last_pts= av_rescale_rnd( |
||
87 | 103d74ea | Oded Shimon | val, |
88 | 874abace | Michael Niedermayer | time_base.num * (int64_t)nut->stream[i].time_base->den, |
89 | time_base.den * (int64_t)nut->stream[i].time_base->num, |
||
90 | AV_ROUND_DOWN); |
||
91 | } |
||
92 | } |
||
93 | f13ea4e0 | Michael Niedermayer | |
94 | int64_t ff_lsb2full(StreamContext *stream, int64_t lsb){ |
||
95 | int64_t mask = (1<<stream->msb_pts_shift)-1; |
||
96 | int64_t delta= stream->last_pts - mask/2;
|
||
97 | return ((lsb - delta)&mask) + delta;
|
||
98 | } |
||
99 | |||
100 | f990f6e3 | Vitor Sessak | int ff_nut_sp_pos_cmp(const Syncpoint *a, const Syncpoint *b){ |
101 | 47a1ae1b | Diego Biurrun | return ((a->pos - b->pos) >> 32) - ((b->pos - a->pos) >> 32); |
102 | 4a3b5fe1 | Michael Niedermayer | } |
103 | |||
104 | f990f6e3 | Vitor Sessak | int ff_nut_sp_pts_cmp(const Syncpoint *a, const Syncpoint *b){ |
105 | 47a1ae1b | Diego Biurrun | return ((a->ts - b->ts) >> 32) - ((b->ts - a->ts) >> 32); |
106 | 4a3b5fe1 | Michael Niedermayer | } |
107 | |||
108 | void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts){
|
||
109 | 52afa376 | Michael Niedermayer | Syncpoint *sp= av_mallocz(sizeof(Syncpoint));
|
110 | 6e8b982b | Michael Niedermayer | struct AVTreeNode *node= av_mallocz(av_tree_node_size);
|
111 | 4a3b5fe1 | Michael Niedermayer | |
112 | sp->pos= pos; |
||
113 | sp->back_ptr= back_ptr; |
||
114 | sp->ts= ts; |
||
115 | f990f6e3 | Vitor Sessak | av_tree_insert(&nut->syncpoints, sp, (void *) ff_nut_sp_pos_cmp, &node);
|
116 | 6e8b982b | Michael Niedermayer | if(node){
|
117 | 4a3b5fe1 | Michael Niedermayer | av_free(sp); |
118 | 6e8b982b | Michael Niedermayer | av_free(node); |
119 | } |
||
120 | 4a3b5fe1 | Michael Niedermayer | } |
121 | 90c2295b | Evgeniy Stepanov | |
122 | 59856b98 | Vitor Sessak | static int enu_free(void *opaque, void *elem) |
123 | 4b83fc0f | Vitor Sessak | { |
124 | av_free(elem); |
||
125 | 59856b98 | Vitor Sessak | return 0; |
126 | 4b83fc0f | Vitor Sessak | } |
127 | |||
128 | void ff_nut_free_sp(NUTContext *nut)
|
||
129 | { |
||
130 | av_tree_enumerate(nut->syncpoints, NULL, NULL, enu_free); |
||
131 | av_tree_destroy(nut->syncpoints); |
||
132 | } |
||
133 | |||
134 | 90c2295b | Evgeniy Stepanov | const Dispositions ff_nut_dispositions[] = {
|
135 | {"default" , AV_DISPOSITION_DEFAULT},
|
||
136 | {"dub" , AV_DISPOSITION_DUB},
|
||
137 | {"original" , AV_DISPOSITION_ORIGINAL},
|
||
138 | {"comment" , AV_DISPOSITION_COMMENT},
|
||
139 | {"lyrics" , AV_DISPOSITION_LYRICS},
|
||
140 | {"karaoke" , AV_DISPOSITION_KARAOKE},
|
||
141 | {"" , 0} |
||
142 | }; |
||
143 | |||
144 | 43382b5f | Anton Khirnov | const AVMetadataConv ff_nut_metadata_conv[] = {
|
145 | { "Author", "artist" }, |
||
146 | { "X-CreationTime", "date" }, |
||
147 | { "CreationTime", "date" }, |
||
148 | { "SourceFilename", "filename" }, |
||
149 | { "X-Language", "language" }, |
||
150 | { "X-Disposition", "disposition" }, |
||
151 | { "X-Replaces", "replaces" }, |
||
152 | { "X-Depends", "depends" }, |
||
153 | { "X-Uses", "uses" }, |
||
154 | { "X-UsesFont", "usesfont" }, |
||
155 | { 0 },
|
||
156 | }; |