Lines Matching defs:rate

358         /* sample rate code (see ff_ac3_sample_rate_tab) 2 bits */
402 "No valid AC3 bit rate code for data rate of %d!\n",
683 uint32_t max_bit_rate; ///< Maximum rate in bits/second over any window of one second.
684 uint32_t avg_bit_rate; ///< Average rate in bits/second over the entire presentation.
698 // if the average bit rate cannot be calculated at this point, such as
702 // 1. average bit rate property
703 // 2. bit rate (usually average over the whole clip)
704 // 3. maximum bit rate property
715 // (FIXME should be max rate in any 1 sec window)
1533 int rate = 0;
1535 rate = av_q2d(rational_framerate);
1536 return rate;
1544 int rate = defined_frame_rate(s, st);
1552 if (rate == 24) tag = MKTAG('x','d','v','4');
1553 else if (rate == 25) tag = MKTAG('x','d','v','5');
1554 else if (rate == 30) tag = MKTAG('x','d','v','1');
1555 else if (rate == 50) tag = MKTAG('x','d','v','a');
1556 else if (rate == 60) tag = MKTAG('x','d','v','9');
1560 if (rate == 24) tag = MKTAG('x','d','v','6');
1561 else if (rate == 25) tag = MKTAG('x','d','v','7');
1562 else if (rate == 30) tag = MKTAG('x','d','v','8');
1564 if (rate == 25) tag = MKTAG('x','d','v','3');
1565 else if (rate == 30) tag = MKTAG('x','d','v','2');
1569 if (rate == 24) tag = MKTAG('x','d','v','d');
1570 else if (rate == 25) tag = MKTAG('x','d','v','e');
1571 else if (rate == 30) tag = MKTAG('x','d','v','f');
1573 if (rate == 25) tag = MKTAG('x','d','v','c');
1574 else if (rate == 30) tag = MKTAG('x','d','v','b');
1580 if (rate == 24) tag = MKTAG('x','d','5','4');
1581 else if (rate == 25) tag = MKTAG('x','d','5','5');
1582 else if (rate == 30) tag = MKTAG('x','d','5','1');
1583 else if (rate == 50) tag = MKTAG('x','d','5','a');
1584 else if (rate == 60) tag = MKTAG('x','d','5','9');
1588 if (rate == 24) tag = MKTAG('x','d','5','d');
1589 else if (rate == 25) tag = MKTAG('x','d','5','e');
1590 else if (rate == 30) tag = MKTAG('x','d','5','f');
1592 if (rate == 25) tag = MKTAG('x','d','5','c');
1593 else if (rate == 30) tag = MKTAG('x','d','5','b');
1606 int rate = defined_frame_rate(s, st);
1614 if (rate == 24) tag = MKTAG('a','i','5','p');
1615 else if (rate == 25) tag = MKTAG('a','i','5','q');
1616 else if (rate == 30) tag = MKTAG('a','i','5','p');
1617 else if (rate == 50) tag = MKTAG('a','i','5','q');
1618 else if (rate == 60) tag = MKTAG('a','i','5','p');
1622 if (rate == 24) tag = MKTAG('a','i','5','3');
1623 else if (rate == 25) tag = MKTAG('a','i','5','2');
1624 else if (rate == 30) tag = MKTAG('a','i','5','3');
1626 if (rate == 50) tag = MKTAG('a','i','5','5');
1627 else if (rate == 60) tag = MKTAG('a','i','5','6');
1633 if (rate == 24) tag = MKTAG('a','i','1','p');
1634 else if (rate == 25) tag = MKTAG('a','i','1','q');
1635 else if (rate == 30) tag = MKTAG('a','i','1','p');
1636 else if (rate == 50) tag = MKTAG('a','i','1','q');
1637 else if (rate == 60) tag = MKTAG('a','i','1','p');
1641 if (rate == 24) tag = MKTAG('a','i','1','3');
1642 else if (rate == 25) tag = MKTAG('a','i','1','2');
1643 else if (rate == 30) tag = MKTAG('a','i','1','3');
1645 if (rate == 25) tag = MKTAG('a','i','1','5');
1646 else if (rate == 50) tag = MKTAG('a','i','1','5');
1647 else if (rate == 60) tag = MKTAG('a','i','1','6');
2180 int rate = defined_frame_rate(NULL, st);
2191 av_strlcatf(compressor_name, len, "%d", rate * (interlaced + 1));
3408 avio_wb32(pb, track->timescale); /* time scale (sample rate for audio) */
3992 avio_wb32(pb, 0x00010000); /* reserved (preferred rate) 1.0 = normal */
5881 av_log(s, AV_LOG_ERROR, "Frame rate %f outside supported range\n", frame_rate / (double)0x10000);
7103 AVRational rate = src_st->avg_frame_rate;
7123 track->st->avg_frame_rate = rate;
7129 pkt->pts = pkt->dts = av_rescale_q(tc.start, av_inv_q(rate), (AVRational){1,mov->movie_timescale});
7143 AVRational rate = src_st->avg_frame_rate;
7175 track->st->avg_frame_rate = av_inv_q(rate);