• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/

Lines Matching defs:of

6  * of DV technical info.
14 * This file is part of Libav.
17 * modify it under the terms of the GNU Lesser General Public
19 * version 2.1 of the License, or (at your option) any later version.
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * You should have received a copy of the GNU Lesser General Public
42 int n_ast; /* number of stereo audio streams (up to 2) */
44 AVFifoBuffer *audio_data[2]; /* FIFO for storing excessive amounts of PCM */
93 ((ltc_frame / 10) << 4) | /* tens of frames */
94 (ltc_frame % 10); /* units of frames */
96 ((tc.tm_sec / 10) << 4) | /* tens of seconds */
97 (tc.tm_sec % 10); /* units of seconds */
99 ((tc.tm_min / 10) << 4) | /* tens of minutes */
100 (tc.tm_min % 10); /* units of minutes */
103 ((tc.tm_hour / 10) << 4) | /* tens of hours */
104 (tc.tm_hour % 10); /* units of hours */
112 /* # of samples */
114 (0 << 5) | /* #of audio channels per block: 0 -- 1 channel */
115 (0 << 4) | /* pair bit: 0 -- one pair of channels */
147 buf[1] = 0xff; /* ds, tm, tens of time zone, units of time zone */
150 ((tc.tm_mday / 10) << 4) | /* Tens of day */
151 (tc.tm_mday % 10); /* Units of day */
153 ((tc.tm_mon / 10) << 4) | /* Tens of month */
154 (tc.tm_mon % 10); /* Units of month */
155 buf[4] = (((tc.tm_year % 100) / 10) << 4) | /* Tens of year */
156 (tc.tm_year % 10); /* Units of year */
164 0x3f; /* tens of frame, units of frame: 0x3f - "unknown" ? */
166 ((tc.tm_sec / 10) << 4) | /* Tens of seconds */
167 (tc.tm_sec % 10); /* Units of seconds */
169 ((tc.tm_min / 10) << 4) | /* Tens of minutes */
170 (tc.tm_min % 10); /* Units of minutes */
172 ((tc.tm_hour / 10) << 4) | /* Tens of hours */
173 (tc.tm_hour % 10); /* Units of hours */
183 int i, j, d, of, size;
191 of = c->sys->audio_shuffle[i][j] + (d - 8)/2 * c->sys->audio_stride;
192 if (of*2 >= size)
195 frame_ptr[d] = *av_fifo_peek2(c->audio_data[channel], of*2+1); // FIXME: maybe we have to admit
196 frame_ptr[d+1] = *av_fifo_peek2(c->audio_data[channel], of*2); // that DV is a big-endian PCM
402 * is the best strategy of all