mirror of https://github.com/FFmpeg/FFmpeg.git
* qatar/master: avcodec: add a cook parser to get subpacket duration FATE: allow lavf tests to alter input parameters FATE: replace the acodec-pcm_s24daud test with an enc_dec_pcm checksum test FATE: replace the acodec-g726 test with 4 new encode/decode tests FATE: replace current g722 encoding tests with an encode/decode test FATE: add a pattern rule for generating asynth wav files FATE: optionally write a WAVE header in audiogen avutil: add audio fifo buffer Conflicts: doc/APIchanges libavcodec/version.h libavutil/avutil.h tests/Makefile tests/codec-regression.sh tests/fate/voice.mak tests/lavf-regression.sh tests/ref/acodec/g722 tests/ref/acodec/g726 tests/ref/acodec/pcm_s24daud tests/ref/lavf/dv_fmt tests/ref/lavf/gxf tests/ref/lavf/mxf tests/ref/lavf/mxf_d10 tests/ref/seek/lavf_dv Merged-by: Michael Niedermayer <michaelni@gmx.at>pull/5/head
commit
3194ab78a6
32 changed files with 536 additions and 146 deletions
@ -0,0 +1,59 @@ |
||||
/*
|
||||
* Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com> |
||||
* |
||||
* This file is part of Libav. |
||||
* |
||||
* Libav is free software; you can redistribute it and/or |
||||
* modify it under the terms of the GNU Lesser General Public |
||||
* License as published by the Free Software Foundation; either |
||||
* version 2.1 of the License, or (at your option) any later version. |
||||
* |
||||
* Libav is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
* Lesser General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Lesser General Public |
||||
* License along with Libav; if not, write to the Free Software |
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||
*/ |
||||
|
||||
/**
|
||||
* @file |
||||
* Cook audio parser |
||||
* |
||||
* Determines subpacket duration from extradata. |
||||
*/ |
||||
|
||||
#include <stdint.h> |
||||
|
||||
#include "libavutil/intreadwrite.h" |
||||
#include "parser.h" |
||||
|
||||
typedef struct CookParseContext { |
||||
int duration; |
||||
} CookParseContext; |
||||
|
||||
static int cook_parse(AVCodecParserContext *s1, AVCodecContext *avctx, |
||||
const uint8_t **poutbuf, int *poutbuf_size, |
||||
const uint8_t *buf, int buf_size) |
||||
{ |
||||
CookParseContext *s = s1->priv_data; |
||||
|
||||
if (s->duration) |
||||
s1->duration = s->duration; |
||||
else if (avctx->extradata && avctx->extradata_size >= 8 && avctx->channels) |
||||
s->duration = AV_RB16(avctx->extradata + 4) / avctx->channels; |
||||
|
||||
/* always return the full packet. this parser isn't doing any splitting or
|
||||
combining, only setting packet duration */ |
||||
*poutbuf = buf; |
||||
*poutbuf_size = buf_size; |
||||
return buf_size; |
||||
} |
||||
|
||||
AVCodecParser ff_cook_parser = { |
||||
.codec_ids = { CODEC_ID_COOK }, |
||||
.priv_data_size = sizeof(CookParseContext), |
||||
.parser_parse = cook_parse, |
||||
}; |
@ -0,0 +1,193 @@ |
||||
/*
|
||||
* Audio FIFO |
||||
* Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com> |
||||
* |
||||
* This file is part of Libav. |
||||
* |
||||
* Libav is free software; you can redistribute it and/or |
||||
* modify it under the terms of the GNU Lesser General Public |
||||
* License as published by the Free Software Foundation; either |
||||
* version 2.1 of the License, or (at your option) any later version. |
||||
* |
||||
* Libav is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
* Lesser General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Lesser General Public |
||||
* License along with Libav; if not, write to the Free Software |
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||
*/ |
||||
|
||||
/**
|
||||
* @file |
||||
* Audio FIFO |
||||
*/ |
||||
|
||||
#include "avutil.h" |
||||
#include "audio_fifo.h" |
||||
#include "fifo.h" |
||||
#include "mem.h" |
||||
#include "samplefmt.h" |
||||
|
||||
struct AVAudioFifo { |
||||
AVFifoBuffer **buf; /**< single buffer for interleaved, per-channel buffers for planar */ |
||||
int nb_buffers; /**< number of buffers */ |
||||
int nb_samples; /**< number of samples currently in the FIFO */ |
||||
int allocated_samples; /**< current allocated size, in samples */ |
||||
|
||||
int channels; /**< number of channels */ |
||||
enum AVSampleFormat sample_fmt; /**< sample format */ |
||||
int sample_size; /**< size, in bytes, of one sample in a buffer */ |
||||
}; |
||||
|
||||
void av_audio_fifo_free(AVAudioFifo *af) |
||||
{ |
||||
if (af) { |
||||
if (af->buf) { |
||||
int i; |
||||
for (i = 0; i < af->nb_buffers; i++) { |
||||
if (af->buf[i]) |
||||
av_fifo_free(af->buf[i]); |
||||
} |
||||
av_free(af->buf); |
||||
} |
||||
av_free(af); |
||||
} |
||||
} |
||||
|
||||
AVAudioFifo *av_audio_fifo_alloc(enum AVSampleFormat sample_fmt, int channels, |
||||
int nb_samples) |
||||
{ |
||||
AVAudioFifo *af; |
||||
int buf_size, i; |
||||
|
||||
/* get channel buffer size (also validates parameters) */ |
||||
if (av_samples_get_buffer_size(&buf_size, channels, nb_samples, sample_fmt, 1) < 0) |
||||
return NULL; |
||||
|
||||
af = av_mallocz(sizeof(*af)); |
||||
if (!af) |
||||
return NULL; |
||||
|
||||
af->channels = channels; |
||||
af->sample_fmt = sample_fmt; |
||||
af->sample_size = buf_size / nb_samples; |
||||
af->nb_buffers = av_sample_fmt_is_planar(sample_fmt) ? channels : 1; |
||||
|
||||
af->buf = av_mallocz(af->nb_buffers * sizeof(*af->buf)); |
||||
if (!af->buf) |
||||
goto error; |
||||
|
||||
for (i = 0; i < af->nb_buffers; i++) { |
||||
af->buf[i] = av_fifo_alloc(buf_size); |
||||
if (!af->buf[i]) |
||||
goto error; |
||||
} |
||||
af->allocated_samples = nb_samples; |
||||
|
||||
return af; |
||||
|
||||
error: |
||||
av_audio_fifo_free(af); |
||||
return NULL; |
||||
} |
||||
|
||||
int av_audio_fifo_realloc(AVAudioFifo *af, int nb_samples) |
||||
{ |
||||
int i, ret, buf_size; |
||||
|
||||
if ((ret = av_samples_get_buffer_size(&buf_size, af->channels, nb_samples, |
||||
af->sample_fmt, 1)) < 0) |
||||
return ret; |
||||
|
||||
for (i = 0; i < af->nb_buffers; i++) { |
||||
if ((ret = av_fifo_realloc2(af->buf[i], buf_size)) < 0) |
||||
return ret; |
||||
} |
||||
af->allocated_samples = nb_samples; |
||||
return 0; |
||||
} |
||||
|
||||
int av_audio_fifo_write(AVAudioFifo *af, void **data, int nb_samples) |
||||
{ |
||||
int i, ret, size; |
||||
|
||||
/* automatically reallocate buffers if needed */ |
||||
if (av_audio_fifo_space(af) < nb_samples) { |
||||
int current_size = av_audio_fifo_size(af); |
||||
/* check for integer overflow in new size calculation */ |
||||
if (INT_MAX / 2 - current_size < nb_samples) |
||||
return AVERROR(EINVAL); |
||||
/* reallocate buffers */ |
||||
if ((ret = av_audio_fifo_realloc(af, 2 * (current_size + nb_samples))) < 0) |
||||
return ret; |
||||
} |
||||
|
||||
size = nb_samples * af->sample_size; |
||||
for (i = 0; i < af->nb_buffers; i++) { |
||||
ret = av_fifo_generic_write(af->buf[i], data[i], size, NULL); |
||||
if (ret != size) |
||||
return AVERROR_BUG; |
||||
} |
||||
af->nb_samples += nb_samples; |
||||
|
||||
return nb_samples; |
||||
} |
||||
|
||||
int av_audio_fifo_read(AVAudioFifo *af, void **data, int nb_samples) |
||||
{ |
||||
int i, ret, size; |
||||
|
||||
if (nb_samples < 0) |
||||
return AVERROR(EINVAL); |
||||
nb_samples = FFMIN(nb_samples, af->nb_samples); |
||||
if (!nb_samples) |
||||
return 0; |
||||
|
||||
size = nb_samples * af->sample_size; |
||||
for (i = 0; i < af->nb_buffers; i++) { |
||||
if ((ret = av_fifo_generic_read(af->buf[i], data[i], size, NULL)) < 0) |
||||
return AVERROR_BUG; |
||||
} |
||||
af->nb_samples -= nb_samples; |
||||
|
||||
return nb_samples; |
||||
} |
||||
|
||||
int av_audio_fifo_drain(AVAudioFifo *af, int nb_samples) |
||||
{ |
||||
int i, size; |
||||
|
||||
if (nb_samples < 0) |
||||
return AVERROR(EINVAL); |
||||
nb_samples = FFMIN(nb_samples, af->nb_samples); |
||||
|
||||
if (nb_samples) { |
||||
size = nb_samples * af->sample_size; |
||||
for (i = 0; i < af->nb_buffers; i++) |
||||
av_fifo_drain(af->buf[i], size); |
||||
af->nb_samples -= nb_samples; |
||||
} |
||||
return 0; |
||||
} |
||||
|
||||
void av_audio_fifo_reset(AVAudioFifo *af) |
||||
{ |
||||
int i; |
||||
|
||||
for (i = 0; i < af->nb_buffers; i++) |
||||
av_fifo_reset(af->buf[i]); |
||||
|
||||
af->nb_samples = 0; |
||||
} |
||||
|
||||
int av_audio_fifo_size(AVAudioFifo *af) |
||||
{ |
||||
return af->nb_samples; |
||||
} |
||||
|
||||
int av_audio_fifo_space(AVAudioFifo *af) |
||||
{ |
||||
return af->allocated_samples - af->nb_samples; |
||||
} |
@ -0,0 +1,146 @@ |
||||
/*
|
||||
* Audio FIFO |
||||
* Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com> |
||||
* |
||||
* This file is part of Libav. |
||||
* |
||||
* Libav is free software; you can redistribute it and/or |
||||
* modify it under the terms of the GNU Lesser General Public |
||||
* License as published by the Free Software Foundation; either |
||||
* version 2.1 of the License, or (at your option) any later version. |
||||
* |
||||
* Libav is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
* Lesser General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Lesser General Public |
||||
* License along with Libav; if not, write to the Free Software |
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||
*/ |
||||
|
||||
/**
|
||||
* @file |
||||
* Audio FIFO Buffer |
||||
*/ |
||||
|
||||
#ifndef AVUTIL_AUDIO_FIFO_H |
||||
#define AVUTIL_AUDIO_FIFO_H |
||||
|
||||
#include "avutil.h" |
||||
#include "fifo.h" |
||||
#include "samplefmt.h" |
||||
|
||||
/**
|
||||
* @addtogroup lavu_audio |
||||
* @{ |
||||
*/ |
||||
|
||||
/**
|
||||
* Context for an Audio FIFO Buffer. |
||||
* |
||||
* - Operates at the sample level rather than the byte level. |
||||
* - Supports multiple channels with either planar or packed sample format. |
||||
* - Automatic reallocation when writing to a full buffer. |
||||
*/ |
||||
typedef struct AVAudioFifo AVAudioFifo; |
||||
|
||||
/**
|
||||
* Free an AVAudioFifo. |
||||
* |
||||
* @param af AVAudioFifo to free |
||||
*/ |
||||
void av_audio_fifo_free(AVAudioFifo *af); |
||||
|
||||
/**
|
||||
* Allocate an AVAudioFifo. |
||||
* |
||||
* @param sample_fmt sample format |
||||
* @param channels number of channels |
||||
* @param nb_samples initial allocation size, in samples |
||||
* @return newly allocated AVAudioFifo, or NULL on error |
||||
*/ |
||||
AVAudioFifo *av_audio_fifo_alloc(enum AVSampleFormat sample_fmt, int channels, |
||||
int nb_samples); |
||||
|
||||
/**
|
||||
* Reallocate an AVAudioFifo. |
||||
* |
||||
* @param af AVAudioFifo to reallocate |
||||
* @param nb_samples new allocation size, in samples |
||||
* @return 0 if OK, or negative AVERROR code on failure |
||||
*/ |
||||
int av_audio_fifo_realloc(AVAudioFifo *af, int nb_samples); |
||||
|
||||
/**
|
||||
* Write data to an AVAudioFifo. |
||||
* |
||||
* The AVAudioFifo will be reallocated automatically if the available space |
||||
* is less than nb_samples. |
||||
* |
||||
* @see enum AVSampleFormat |
||||
* The documentation for AVSampleFormat describes the data layout. |
||||
* |
||||
* @param af AVAudioFifo to write to |
||||
* @param data audio data plane pointers |
||||
* @param nb_samples number of samples to write |
||||
* @return number of samples actually written, or negative AVERROR |
||||
* code on failure. |
||||
*/ |
||||
int av_audio_fifo_write(AVAudioFifo *af, void **data, int nb_samples); |
||||
|
||||
/**
|
||||
* Read data from an AVAudioFifo. |
||||
* |
||||
* @see enum AVSampleFormat |
||||
* The documentation for AVSampleFormat describes the data layout. |
||||
* |
||||
* @param af AVAudioFifo to read from |
||||
* @param data audio data plane pointers |
||||
* @param nb_samples number of samples to read |
||||
* @return number of samples actually read, or negative AVERROR code |
||||
* on failure. |
||||
*/ |
||||
int av_audio_fifo_read(AVAudioFifo *af, void **data, int nb_samples); |
||||
|
||||
/**
|
||||
* Drain data from an AVAudioFifo. |
||||
* |
||||
* Removes the data without reading it. |
||||
* |
||||
* @param af AVAudioFifo to drain |
||||
* @param nb_samples number of samples to drain |
||||
* @return 0 if OK, or negative AVERROR code on failure |
||||
*/ |
||||
int av_audio_fifo_drain(AVAudioFifo *af, int nb_samples); |
||||
|
||||
/**
|
||||
* Reset the AVAudioFifo buffer. |
||||
* |
||||
* This empties all data in the buffer. |
||||
* |
||||
* @param af AVAudioFifo to reset |
||||
*/ |
||||
void av_audio_fifo_reset(AVAudioFifo *af); |
||||
|
||||
/**
|
||||
* Get the current number of samples in the AVAudioFifo available for reading. |
||||
* |
||||
* @param af the AVAudioFifo to query |
||||
* @return number of samples available for reading |
||||
*/ |
||||
int av_audio_fifo_size(AVAudioFifo *af); |
||||
|
||||
/**
|
||||
* Get the current number of samples in the AVAudioFifo available for writing. |
||||
* |
||||
* @param af the AVAudioFifo to query |
||||
* @return number of samples available for writing |
||||
*/ |
||||
int av_audio_fifo_space(AVAudioFifo *af); |
||||
|
||||
/**
|
||||
* @} |
||||
*/ |
||||
|
||||
#endif /* AVUTIL_AUDIO_FIFO_H */ |
@ -1,4 +0,0 @@ |
||||
e4d5ae038f29659c03fcf68818f7be6c *./tests/data/acodec/g722.wav |
||||
48053 ./tests/data/acodec/g722.wav |
||||
8dafe5b74ccd5f08fed2fb2a69c5475f *./tests/data/g722.acodec.out.wav |
||||
stddev: 8939.47 PSNR: 17.30 MAXDIFF:40370 bytes: 191980/ 1058400 |
@ -1,4 +0,0 @@ |
||||
331fcf91f4483b508059d0933af97987 *./tests/data/acodec/g726.wav |
||||
24054 ./tests/data/acodec/g726.wav |
||||
fac563ba7947d8fc42b4af048707c145 *./tests/data/g726.acodec.out.wav |
||||
stddev: 8553.69 PSNR: 17.69 MAXDIFF:29353 bytes: 95984/ 1058400 |
@ -1,4 +0,0 @@ |
||||
1b75d5198ae789ab3c48f7024e08f4a9 *./tests/data/acodec/pcm_s24daud.302 |
||||
10368730 ./tests/data/acodec/pcm_s24daud.302 |
||||
70ec0ba6bc151ddc7509c09804d95d3b *./tests/data/pcm_s24daud.acodec.out.wav |
||||
stddev: 8967.92 PSNR: 17.28 MAXDIFF:42548 bytes: 6911796/ 1058400 |
@ -0,0 +1 @@ |
||||
MD5=2d7c6897c315493647db159f4bfd6edc |
@ -0,0 +1 @@ |
||||
MD5=7106189574186051c0497b287e2e5f19 |
@ -1 +0,0 @@ |
||||
94e2f200d6e05b47cec4aa3e94571cf3 |
@ -0,0 +1 @@ |
||||
MD5=215eaef5778a16e2bf4f3725a557f355 |
@ -0,0 +1 @@ |
||||
MD5=0bebd949dfd5ac0ae3f2c3ceb2e3fac1 |
@ -0,0 +1 @@ |
||||
MD5=a21cfea116ab2179eabe5d84b6bfc09a |
@ -0,0 +1 @@ |
||||
MD5=9cad98cf5205bf76d6e9d1241e56141a |
@ -1,3 +1,3 @@ |
||||
23177c8a72f34e243e9ffc4f6c70d3c7 *./tests/data/lavf/lavf.mxf_d10 |
||||
0d72247067569901a2e351586ddc0b82 *./tests/data/lavf/lavf.mxf_d10 |
||||
5330989 ./tests/data/lavf/lavf.mxf_d10 |
||||
./tests/data/lavf/lavf.mxf_d10 CRC=0x81602ff1 |
||||
./tests/data/lavf/lavf.mxf_d10 CRC=0x4474d480 |
||||
|
@ -1,53 +0,0 @@ |
||||
ret: 0 st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos: 58 size: 4096 |
||||
ret: 0 st:-1 flags:0 ts:-1.000000 |
||||
ret: 0 st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos: 58 size: 4096 |
||||
ret: 0 st:-1 flags:1 ts: 1.894167 |
||||
ret: 0 st: 0 flags:1 dts: 1.894000 pts: 1.894000 pos: 7634 size: 4096 |
||||
ret: 0 st: 0 flags:0 ts: 0.788375 |
||||
ret: 0 st: 0 flags:1 dts: 0.788500 pts: 0.788500 pos: 3212 size: 4096 |
||||
ret: 0 st: 0 flags:1 ts:-0.317500 |
||||
ret: 0 st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos: 58 size: 4096 |
||||
ret: 0 st:-1 flags:0 ts: 2.576668 |
||||
ret: 0 st: 0 flags:1 dts: 2.576750 pts: 2.576750 pos: 10365 size: 4096 |
||||
ret: 0 st:-1 flags:1 ts: 1.470835 |
||||
ret: 0 st: 0 flags:1 dts: 1.470750 pts: 1.470750 pos: 5941 size: 4096 |
||||
ret: 0 st: 0 flags:0 ts: 0.365000 |
||||
ret: 0 st: 0 flags:1 dts: 0.365000 pts: 0.365000 pos: 1518 size: 4096 |
||||
ret: 0 st: 0 flags:1 ts:-0.740875 |
||||
ret: 0 st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos: 58 size: 4096 |
||||
ret: 0 st:-1 flags:0 ts: 2.153336 |
||||
ret: 0 st: 0 flags:1 dts: 2.153500 pts: 2.153500 pos: 8672 size: 4096 |
||||
ret: 0 st:-1 flags:1 ts: 1.047503 |
||||
ret: 0 st: 0 flags:1 dts: 1.047500 pts: 1.047500 pos: 4248 size: 4096 |
||||
ret: 0 st: 0 flags:0 ts:-0.058375 |
||||
ret: 0 st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos: 58 size: 4096 |
||||
ret: 0 st: 0 flags:1 ts: 2.835875 |
||||
ret: 0 st: 0 flags:1 dts: 2.835750 pts: 2.835750 pos: 11401 size: 4096 |
||||
ret: 0 st:-1 flags:0 ts: 1.730004 |
||||
ret: 0 st: 0 flags:1 dts: 1.730000 pts: 1.730000 pos: 6978 size: 4096 |
||||
ret: 0 st:-1 flags:1 ts: 0.624171 |
||||
ret: 0 st: 0 flags:1 dts: 0.624000 pts: 0.624000 pos: 2554 size: 4096 |
||||
ret: 0 st: 0 flags:0 ts:-0.481625 |
||||
ret: 0 st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos: 58 size: 4096 |
||||
ret: 0 st: 0 flags:1 ts: 2.412500 |
||||
ret: 0 st: 0 flags:1 dts: 2.412500 pts: 2.412500 pos: 9708 size: 4096 |
||||
ret: 0 st:-1 flags:0 ts: 1.306672 |
||||
ret: 0 st: 0 flags:1 dts: 1.306750 pts: 1.306750 pos: 5285 size: 4096 |
||||
ret: 0 st:-1 flags:1 ts: 0.200839 |
||||
ret: 0 st: 0 flags:1 dts: 0.200750 pts: 0.200750 pos: 861 size: 4096 |
||||
ret: 0 st: 0 flags:0 ts:-0.905000 |
||||
ret: 0 st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos: 58 size: 4096 |
||||
ret: 0 st: 0 flags:1 ts: 1.989125 |
||||
ret: 0 st: 0 flags:1 dts: 1.989000 pts: 1.989000 pos: 8014 size: 4096 |
||||
ret: 0 st:-1 flags:0 ts: 0.883340 |
||||
ret: 0 st: 0 flags:1 dts: 0.883500 pts: 0.883500 pos: 3592 size: 4096 |
||||
ret: 0 st:-1 flags:1 ts:-0.222493 |
||||
ret: 0 st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos: 58 size: 4096 |
||||
ret: 0 st: 0 flags:0 ts: 2.671625 |
||||
ret: 0 st: 0 flags:1 dts: 2.671750 pts: 2.671750 pos: 10745 size: 4096 |
||||
ret: 0 st: 0 flags:1 ts: 1.565875 |
||||
ret: 0 st: 0 flags:1 dts: 1.565750 pts: 1.565750 pos: 6321 size: 4096 |
||||
ret: 0 st:-1 flags:0 ts: 0.460008 |
||||
ret: 0 st: 0 flags:1 dts: 0.460000 pts: 0.460000 pos: 1898 size: 4096 |
||||
ret: 0 st:-1 flags:1 ts:-0.645825 |
||||
ret: 0 st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos: 58 size: 4096 |
@ -1,27 +0,0 @@ |
||||
ret: 0 st: 0 flags:1 dts: 0.000000 pts: 0.000000 pos: 4 size: 39816 |
||||
ret:-1 st:-1 flags:0 ts:-1.000000 |
||||
ret:-1 st:-1 flags:1 ts: 1.894167 |
||||
ret:-1 st: 0 flags:0 ts: 0.788333 |
||||
ret:-1 st: 0 flags:1 ts:-0.317500 |
||||
ret:-1 st:-1 flags:0 ts: 2.576668 |
||||
ret:-1 st:-1 flags:1 ts: 1.470835 |
||||
ret:-1 st: 0 flags:0 ts: 0.365000 |
||||
ret:-1 st: 0 flags:1 ts:-0.740833 |
||||
ret:-1 st:-1 flags:0 ts: 2.153336 |
||||
ret:-1 st:-1 flags:1 ts: 1.047503 |
||||
ret:-1 st: 0 flags:0 ts:-0.058333 |
||||
ret:-1 st: 0 flags:1 ts: 2.835833 |
||||
ret:-1 st:-1 flags:0 ts: 1.730004 |
||||
ret:-1 st:-1 flags:1 ts: 0.624171 |
||||
ret:-1 st: 0 flags:0 ts:-0.481667 |
||||
ret:-1 st: 0 flags:1 ts: 2.412500 |
||||
ret:-1 st:-1 flags:0 ts: 1.306672 |
||||
ret:-1 st:-1 flags:1 ts: 0.200839 |
||||
ret:-1 st: 0 flags:0 ts:-0.904989 |
||||
ret:-1 st: 0 flags:1 ts: 1.989178 |
||||
ret:-1 st:-1 flags:0 ts: 0.883340 |
||||
ret:-1 st:-1 flags:1 ts:-0.222493 |
||||
ret:-1 st: 0 flags:0 ts: 2.671678 |
||||
ret:-1 st: 0 flags:1 ts: 1.565844 |
||||
ret:-1 st:-1 flags:0 ts: 0.460008 |
||||
ret:-1 st:-1 flags:1 ts:-0.645825 |
Loading…
Reference in new issue