From 69c61a882d29c19103a1b0d7d0cd8ba846519d9b Mon Sep 17 00:00:00 2001 From: wm4 Date: Tue, 10 Mar 2015 15:33:01 +0100 Subject: audio: fix spdif DTS packet size Broken in one of the previous commits. --- audio/format.c | 1 + 1 file changed, 1 insertion(+) diff --git a/audio/format.c b/audio/format.c index 5e83ead1b2..c2b29b62ad 100644 --- a/audio/format.c +++ b/audio/format.c @@ -234,6 +234,7 @@ int af_format_sample_alignment(int format) case AF_FORMAT_S_AAC: return 16384; case AF_FORMAT_S_AC3: return 6144; case AF_FORMAT_S_DTSHD: return 32768; + case AF_FORMAT_S_DTS: return 32768; case AF_FORMAT_S_EAC3: return 24576; case AF_FORMAT_S_MP3: return 4608; case AF_FORMAT_S_TRUEHD: return 61440; -- cgit v1.2.3