summaryrefslogtreecommitdiff
path: root/libavcodec/liba52/bitstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/liba52/bitstream.h')
-rw-r--r--libavcodec/liba52/bitstream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/liba52/bitstream.h b/libavcodec/liba52/bitstream.h
index f559fbf833..ed1a4dbeda 100644
--- a/libavcodec/liba52/bitstream.h
+++ b/libavcodec/liba52/bitstream.h
@@ -53,7 +53,7 @@ int32_t a52_bitstream_get_bh_2 (a52_state_t * state, uint32_t num_bits);
static inline uint32_t bitstream_get (a52_state_t * state, uint32_t num_bits)
{
uint32_t result;
-
+
if (num_bits < state->bits_left) {
result = (state->current_word << (32 - state->bits_left)) >> (32 - num_bits);
state->bits_left -= num_bits;
@@ -66,7 +66,7 @@ static inline uint32_t bitstream_get (a52_state_t * state, uint32_t num_bits)
static inline int32_t bitstream_get_2 (a52_state_t * state, uint32_t num_bits)
{
int32_t result;
-
+
if (num_bits < state->bits_left) {
result = (((int32_t)state->current_word) << (32 - state->bits_left)) >> (32 - num_bits);
state->bits_left -= num_bits;