comparison movenc.c @ 1154:322bb8541a9e libavformat

typo fix
author bcoudurier
date Thu, 06 Jul 2006 14:57:55 +0000
parents 6cb1c11cc363
children 51d3928ab00d
comparison
equal deleted inserted replaced
1153:6cb1c11cc363 1154:322bb8541a9e
1508 int size= pkt->size; 1508 int size= pkt->size;
1509 1509
1510 if (url_is_streamed(&s->pb)) return 0; /* Can't handle that */ 1510 if (url_is_streamed(&s->pb)) return 0; /* Can't handle that */
1511 if (!size) return 0; /* Discard 0 sized packets */ 1511 if (!size) return 0; /* Discard 0 sized packets */
1512 1512
1513 if (enc->codec_type == CODEC_ID_AMR_NB) { 1513 if (enc->codec_id == CODEC_ID_AMR_NB) {
1514 /* We must find out how many AMR blocks there are in one packet */ 1514 /* We must find out how many AMR blocks there are in one packet */
1515 static uint16_t packed_size[16] = 1515 static uint16_t packed_size[16] =
1516 {13, 14, 16, 18, 20, 21, 27, 32, 6, 0, 0, 0, 0, 0, 0, 0}; 1516 {13, 14, 16, 18, 20, 21, 27, 32, 6, 0, 0, 0, 0, 0, 0, 0};
1517 int len = 0; 1517 int len = 0;
1518 1518