Searched refs:totalframes (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/ffmpeg-2.3.4/libavformat/
H A Dape.c77 uint32_t totalframes; member in struct:__anon3451
125 av_log(s, AV_LOG_DEBUG, "totalframes = %"PRIu32"\n", ape_ctx->totalframes);
131 if ((ape_ctx->seektablelength / sizeof(uint32_t)) != ape_ctx->totalframes) {
135 if (i < ape_ctx->totalframes - 1) {
150 for (i = 0; i < ape_ctx->totalframes; i++)
208 ape->totalframes = avio_rl32(pb);
222 ape->totalframes = avio_rl32(pb);
235 ape->seektablelength = ape->totalframes * sizeof(int32_t);
256 if(!ape->totalframes){
[all...]
H A Dtta.c32 int totalframes, currentframe; member in struct:__anon3644
94 c->totalframes = nb_samples / c->frame_size + (c->last_frame_size < c->frame_size);
97 if(c->totalframes >= UINT_MAX/sizeof(uint32_t) || c->totalframes <= 0){
98 av_log(s, AV_LOG_ERROR, "totalframes %d invalid\n", c->totalframes);
110 framepos = avio_tell(s->pb) + 4*c->totalframes + 4;
119 for (i = 0; i < c->totalframes; i++) {
153 if (c->currentframe >= c->totalframes)
160 pkt->duration = c->currentframe == c->totalframes
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libav-0.8.8/libavformat/
H A Dape.c79 uint32_t totalframes; member in struct:__anon2112
122 av_log(s, AV_LOG_DEBUG, "totalframes = %"PRIu32"\n", ape_ctx->totalframes);
128 if ((ape_ctx->seektablelength / sizeof(uint32_t)) != ape_ctx->totalframes) {
132 if (i < ape_ctx->totalframes - 1) {
143 for (i = 0; i < ape_ctx->totalframes; i++)
201 ape->totalframes = avio_rl32(pb);
215 ape->totalframes = avio_rl32(pb);
228 ape->seektablelength = ape->totalframes * sizeof(int32_t);
249 if(!ape->totalframes){
[all...]
H A Dtta.c29 int totalframes, currentframe; member in struct:__anon2278
73 c->totalframes = datalen / framelen + ((datalen % framelen) ? 1 : 0);
76 if(c->totalframes >= UINT_MAX/sizeof(uint32_t)){
77 av_log(s, AV_LOG_ERROR, "totalframes too large\n");
89 framepos = avio_tell(s->pb) + 4*c->totalframes + 4;
91 for (i = 0; i < c->totalframes; i++) {
128 if (c->currentframe >= c->totalframes)

Completed in 103 milliseconds