Searched refs:totalframes (Results 1 – 6 of 6) sorted by relevance
/third_party/ffmpeg/libavformat/ |
D | ape.c | 76 uint32_t totalframes; member 121 av_log(s, AV_LOG_DEBUG, "totalframes = %"PRIu32"\n", ape_ctx->totalframes); in ape_dumpinfo() 127 if ((ape_ctx->seektablelength / sizeof(uint32_t)) != ape_ctx->totalframes) { in ape_dumpinfo() 132 for (i = 0; i < ape_ctx->totalframes; i++) in ape_dumpinfo() 190 ape->totalframes = avio_rl32(pb); in ape_read_header() 204 ape->totalframes = avio_rl32(pb); in ape_read_header() 217 ape->seektablelength = ape->totalframes * sizeof(int32_t); in ape_read_header() 238 if(!ape->totalframes || pb->eof_reached){ in ape_read_header() 242 if(ape->totalframes > UINT_MAX / sizeof(APEFrame)){ in ape_read_header() 244 ape->totalframes); in ape_read_header() [all …]
|
D | tta.c | 33 int totalframes, currentframe; member 91 c->totalframes = nb_samples / c->frame_size + (c->last_frame_size < c->frame_size); in tta_read_header() 94 if(c->totalframes >= UINT_MAX/sizeof(uint32_t) || c->totalframes <= 0){ in tta_read_header() 95 av_log(s, AV_LOG_ERROR, "totalframes %d invalid\n", c->totalframes); in tta_read_header() 110 framepos += 4 * c->totalframes + 4; in tta_read_header() 119 for (i = 0; i < c->totalframes; i++) { in tta_read_header() 157 if (c->currentframe >= c->totalframes) in tta_read_packet() 160 if (st->nb_index_entries < c->totalframes) { in tta_read_packet() 169 pkt->duration = c->currentframe == c->totalframes ? c->last_frame_size : in tta_read_packet()
|
/third_party/gstreamer/gstplugins_good/gst/flx/ |
D | flx_fmt.h | 83 guint16 ext_flags,keyframes,totalframes; member
|
D | gstflxdec.c | 686 if (!gst_byte_reader_get_uint16_le (reader, &flxh->totalframes)) in _read_flx_header()
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/riff/ |
D | riff-ids.h | 496 guint32 totalframes; member
|
/third_party/gstreamer/gstplugins_good/gst/avi/ |
D | gstavidemux.c | 2540 dmlh.totalframes = GST_READ_UINT32_LE (&_dmlh->totalframes); in gst_avi_demux_parse_odml() 2544 dmlh.totalframes); in gst_avi_demux_parse_odml() 2546 avi->avih->tot_frames = dmlh.totalframes; in gst_avi_demux_parse_odml()
|