summaryrefslogtreecommitdiff
path: root/softhddev.c
diff options
context:
space:
mode:
Diffstat (limited to 'softhddev.c')
-rw-r--r--softhddev.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/softhddev.c b/softhddev.c
index 6b549a1..b77f371 100644
--- a/softhddev.c
+++ b/softhddev.c
@@ -424,24 +424,24 @@ int PlayAudio(const uint8_t * data, int size, uint8_t id)
// FIXME: otherwise it takes too long until sound appears
if (AudioCodecID == CODEC_ID_NONE) {
- int id;
+ int codec_id;
Debug(3, "[softhddev]%s: ??? %d\n", __FUNCTION__, id);
avpkt->data = (void *)data;
avpkt->size = size;
if (AudioChannelID == 0xBD) {
n = FindDolbySync(avpkt);
- id = CODEC_ID_AC3;
+ codec_id = CODEC_ID_AC3;
} else {
n = FindAudioSync(avpkt);
- id = CODEC_ID_MP2;
+ codec_id = CODEC_ID_MP2;
}
if (n < 0) {
return osize;
}
- CodecAudioOpen(MyAudioDecoder, NULL, id);
- AudioCodecID = id;
+ CodecAudioOpen(MyAudioDecoder, NULL, codec_id);
+ AudioCodecID = codec_id;
data += n;
size -= n;
avpkt->pts = AV_NOPTS_VALUE;