comparison movenc.c @ 2546:015aa98f3f12 libavformat

Typo
author ramiro
date Tue, 11 Sep 2007 23:46:46 +0000
parents 886efa933499
children 577c8b1dafcc
comparison
equal deleted inserted replaced
2545:213268d7594e 2546:015aa98f3f12
1538 while (len < size && samplesInChunk < 100) { 1538 while (len < size && samplesInChunk < 100) {
1539 len += packed_size[(pkt->data[len] >> 3) & 0x0F]; 1539 len += packed_size[(pkt->data[len] >> 3) & 0x0F];
1540 samplesInChunk++; 1540 samplesInChunk++;
1541 } 1541 }
1542 if(samplesInChunk > 1){ 1542 if(samplesInChunk > 1){
1543 av_log(s, AV_LOG_ERROR, "fatal error, input is not a single packet, inplement a AVParser for it\n"); 1543 av_log(s, AV_LOG_ERROR, "fatal error, input is not a single packet, implement a AVParser for it\n");
1544 return -1; 1544 return -1;
1545 } 1545 }
1546 } else if (trk->sampleSize) 1546 } else if (trk->sampleSize)
1547 samplesInChunk = size/trk->sampleSize; 1547 samplesInChunk = size/trk->sampleSize;
1548 else 1548 else