Lines Matching refs:sector_count
99 int sector_count = AV_RL16(§or[0x1E]);
103 && current_sector < sector_count
104 && sector_count*VIDEO_DATA_CHUNK_SIZE >=frame_size)){
183 int sector_count = AV_RL16(§or[0x1E]);
187 && current_sector < sector_count
188 && sector_count*VIDEO_DATA_CHUNK_SIZE >=frame_size)){
189 av_log(s, AV_LOG_ERROR, "Invalid parameters %d %d %d\n", current_sector, sector_count, frame_size);
212 if(pkt->size != sector_count*VIDEO_DATA_CHUNK_SIZE){
214 av_log(s, AV_LOG_ERROR, "mismatching sector_count\n");
216 ret = av_new_packet(pkt, sector_count * VIDEO_DATA_CHUNK_SIZE);
219 memset(pkt->data, 0, sector_count*VIDEO_DATA_CHUNK_SIZE);
230 if (current_sector == sector_count-1) {