dca: Switch dca_sample_rates to avpriv_ prefix; it is used across libs

This commit is contained in:
Diego Biurrun
2012-08-01 11:12:08 +02:00
parent faa788227f
commit 19cf7163c1
5 changed files with 5 additions and 5 deletions

View File

@@ -252,7 +252,7 @@ static int spdif_header_dts(AVFormatContext *s, AVPacket *pkt)
case DCA_MARKER_RAW_BE:
blocks = (AV_RB16(pkt->data + 4) >> 2) & 0x7f;
core_size = ((AV_RB24(pkt->data + 5) >> 4) & 0x3fff) + 1;
sample_rate = ff_dca_sample_rates[(pkt->data[8] >> 2) & 0x0f];
sample_rate = avpriv_dca_sample_rates[(pkt->data[8] >> 2) & 0x0f];
break;
case DCA_MARKER_RAW_LE:
blocks = (AV_RL16(pkt->data + 4) >> 2) & 0x7f;