annotate nut.c @ 2420:4ca7ed628eff libavformat

Set the "B" flag in the payload header
author lucabe
date Mon, 03 Sep 2007 07:28:58 +0000
parents a67b89ba136d
children 153d6efc05b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
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
5b5e1edd462e move syncpoint timestamp resetting code to a common file
michael
parents:
diff changeset
22 #include "nut.h"
2376
a67b89ba136d Ensure av_tree_insert() is defined before using it.
aurel
parents: 2349
diff changeset
23 #include "tree.h"
2335
5b5e1edd462e move syncpoint timestamp resetting code to a common file
michael
parents:
diff changeset
24
2336
59fa1bf41c5d move crc wrapper to slightly better spot
michael
parents: 2335
diff changeset
25 unsigned long av_crc04C11DB7_update(unsigned long checksum, const uint8_t *buf, unsigned int len){
59fa1bf41c5d move crc wrapper to slightly better spot
michael
parents: 2335
diff changeset
26 return av_crc(av_crc04C11DB7, checksum, buf, len);
59fa1bf41c5d move crc wrapper to slightly better spot
michael
parents: 2335
diff changeset
27 }
59fa1bf41c5d move crc wrapper to slightly better spot
michael
parents: 2335
diff changeset
28
2335
5b5e1edd462e move syncpoint timestamp resetting code to a common file
michael
parents:
diff changeset
29 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
30 int i;
5b5e1edd462e move syncpoint timestamp resetting code to a common file
michael
parents:
diff changeset
31 for(i=0; i<nut->avf->nb_streams; i++){
5b5e1edd462e move syncpoint timestamp resetting code to a common file
michael
parents:
diff changeset
32 nut->stream[i].last_pts= av_rescale_rnd(
5b5e1edd462e move syncpoint timestamp resetting code to a common file
michael
parents:
diff changeset
33 val / nut->time_base_count,
5b5e1edd462e move syncpoint timestamp resetting code to a common file
michael
parents:
diff changeset
34 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
35 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
36 AV_ROUND_DOWN);
5b5e1edd462e move syncpoint timestamp resetting code to a common file
michael
parents:
diff changeset
37 }
5b5e1edd462e move syncpoint timestamp resetting code to a common file
michael
parents:
diff changeset
38 }
2338
4a06a51ceb70 move lsb2full to common file
michael
parents: 2336
diff changeset
39
4a06a51ceb70 move lsb2full to common file
michael
parents: 2336
diff changeset
40 int64_t ff_lsb2full(StreamContext *stream, int64_t lsb){
4a06a51ceb70 move lsb2full to common file
michael
parents: 2336
diff changeset
41 int64_t mask = (1<<stream->msb_pts_shift)-1;
4a06a51ceb70 move lsb2full to common file
michael
parents: 2336
diff changeset
42 int64_t delta= stream->last_pts - mask/2;
4a06a51ceb70 move lsb2full to common file
michael
parents: 2336
diff changeset
43 return ((lsb - delta)&mask) + delta;
4a06a51ceb70 move lsb2full to common file
michael
parents: 2336
diff changeset
44 }
4a06a51ceb70 move lsb2full to common file
michael
parents: 2336
diff changeset
45
2349
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
46 int ff_nut_sp_pos_cmp(syncpoint_t *a, syncpoint_t *b){
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
47 return (a->pos - b->pos>>32) - (b->pos - a->pos>>32);
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
48 }
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
49
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
50 int ff_nut_sp_pts_cmp(syncpoint_t *a, syncpoint_t *b){
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
51 return (a->ts - b->ts>>32) - (b->ts - a->ts>>32);
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
52 }
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
53
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
54 void ff_nut_add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts){
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
55 syncpoint_t *sp2, *sp= av_mallocz(sizeof(syncpoint_t));
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
56
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
57 sp->pos= pos;
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
58 sp->back_ptr= back_ptr;
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
59 sp->ts= ts;
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
60 sp2= av_tree_insert(&nut->syncpoints, sp, ff_nut_sp_pos_cmp);
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
61 if(sp2 && sp2 != sp)
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
62 av_free(sp);
a9dc7596498a move syncpoint cache related stuff to common file
michael
parents: 2338
diff changeset
63 }