Mercurial > libavformat.hg
annotate nut.c @ 6033:c7b98381ec2d libavformat
Move AVCodecTag from riff.h into internal.h.
Patch by Francesco Lavra, francescolavra interfree it
| author | cehoyos |
|---|---|
| date | Sat, 22 May 2010 16:01:32 +0000 |
| parents | dbbcecb1a0dd |
| children | d0ea87d82842 |
| rev | line source |
|---|---|
|
2335
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
1 /* |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
2 * nut |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
3 * Copyright (c) 2004-2007 Michael Niedermayer |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
4 * |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
5 * This file is part of FFmpeg. |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
6 * |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
7 * FFmpeg is free software; you can redistribute it and/or |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
9 * License as published by the Free Software Foundation; either |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
10 * version 2.1 of the License, or (at your option) any later version. |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
11 * |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
12 * FFmpeg is distributed in the hope that it will be useful, |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
15 * Lesser General Public License for more details. |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
16 * |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
18 * License along with FFmpeg; if not, write to the Free Software |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
20 */ |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
21 |
| 3286 | 22 #include "libavutil/tree.h" |
|
2335
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
23 #include "nut.h" |
| 6033 | 24 #include "internal.h" |
|
2335
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
25 |
| 3112 | 26 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 | |
|
2335
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
34 void ff_nut_reset_ts(NUTContext *nut, AVRational time_base, int64_t val){ |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
35 int i; |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
36 for(i=0; i<nut->avf->nb_streams; i++){ |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
37 nut->stream[i].last_pts= av_rescale_rnd( |
|
3011
0439b354e005
ff_nut_reset_ts() expected to get 'ts*time_base_count', but muxer only
ods15
parents:
2890
diff
changeset
|
38 val, |
|
2335
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
39 time_base.num * (int64_t)nut->stream[i].time_base->den, |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
40 time_base.den * (int64_t)nut->stream[i].time_base->num, |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
41 AV_ROUND_DOWN); |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
42 } |
|
5b5e1edd462e
move syncpoint timestamp resetting code to a common file
michael
parents:
diff
changeset
|
43 } |
| 2338 | 44 |
| 45 int64_t ff_lsb2full(StreamContext *stream, int64_t lsb){ | |
| 46 int64_t mask = (1<<stream->msb_pts_shift)-1; | |
| 47 int64_t delta= stream->last_pts - mask/2; | |
| 48 return ((lsb - delta)&mask) + delta; | |
| 49 } | |
| 50 | |
| 5902 | 51 int ff_nut_sp_pos_cmp(const Syncpoint *a, const Syncpoint *b){ |
|
2704
5ab595d4eb2f
Add some parentheses to clarify operator precedence, fixes the warnings:
diego
parents:
2683
diff
changeset
|
52 return ((a->pos - b->pos) >> 32) - ((b->pos - a->pos) >> 32); |
| 2349 | 53 } |
| 54 | |
| 5902 | 55 int ff_nut_sp_pts_cmp(const Syncpoint *a, const Syncpoint *b){ |
|
2704
5ab595d4eb2f
Add some parentheses to clarify operator precedence, fixes the warnings:
diego
parents:
2683
diff
changeset
|
56 return ((a->ts - b->ts) >> 32) - ((b->ts - a->ts) >> 32); |
| 2349 | 57 } |
| 58 | |
| 59 void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts){ | |
| 4076 | 60 Syncpoint *sp= av_mallocz(sizeof(Syncpoint)); |
|
2890
31199df992f8
Move *malloc() out of tree.c, that way the code can be used with
michael
parents:
2704
diff
changeset
|
61 struct AVTreeNode *node= av_mallocz(av_tree_node_size); |
| 2349 | 62 |
| 63 sp->pos= pos; | |
| 64 sp->back_ptr= back_ptr; | |
| 65 sp->ts= ts; | |
| 5902 | 66 av_tree_insert(&nut->syncpoints, sp, (void *) ff_nut_sp_pos_cmp, &node); |
|
2890
31199df992f8
Move *malloc() out of tree.c, that way the code can be used with
michael
parents:
2704
diff
changeset
|
67 if(node){ |
| 2349 | 68 av_free(sp); |
|
2890
31199df992f8
Move *malloc() out of tree.c, that way the code can be used with
michael
parents:
2704
diff
changeset
|
69 av_free(node); |
|
31199df992f8
Move *malloc() out of tree.c, that way the code can be used with
michael
parents:
2704
diff
changeset
|
70 } |
| 2349 | 71 } |
|
3120
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
72 |
| 5878 | 73 static int enu_free(void *opaque, void *elem) |
| 5738 | 74 { |
| 75 av_free(elem); | |
| 5878 | 76 return 0; |
| 5738 | 77 } |
| 78 | |
| 79 void ff_nut_free_sp(NUTContext *nut) | |
| 80 { | |
| 81 av_tree_enumerate(nut->syncpoints, NULL, NULL, enu_free); | |
| 82 av_tree_destroy(nut->syncpoints); | |
| 83 } | |
| 84 | |
|
3120
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
85 const Dispositions ff_nut_dispositions[] = { |
|
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
86 {"default" , AV_DISPOSITION_DEFAULT}, |
|
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
87 {"dub" , AV_DISPOSITION_DUB}, |
|
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
88 {"original" , AV_DISPOSITION_ORIGINAL}, |
|
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
89 {"comment" , AV_DISPOSITION_COMMENT}, |
|
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
90 {"lyrics" , AV_DISPOSITION_LYRICS}, |
|
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
91 {"karaoke" , AV_DISPOSITION_KARAOKE}, |
|
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
92 {"" , 0} |
|
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
93 }; |
|
ea5623a8efde
Add 'disposition' bitfield to AVStream and use it for both muxing and demuxing
eugeni
parents:
3112
diff
changeset
|
94 |
|
5704
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
95 const AVMetadataConv ff_nut_metadata_conv[] = { |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
96 { "Author", "artist" }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
97 { "X-CreationTime", "date" }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
98 { "CreationTime", "date" }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
99 { "SourceFilename", "filename" }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
100 { "X-Language", "language" }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
101 { "X-Disposition", "disposition" }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
102 { "X-Replaces", "replaces" }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
103 { "X-Depends", "depends" }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
104 { "X-Uses", "uses" }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
105 { "X-UsesFont", "usesfont" }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
106 { 0 }, |
|
6b9c2a6d8fa4
Introduce metadata conversion table for NUT muxer and demuxer.
kostya
parents:
4076
diff
changeset
|
107 }; |
