summaryrefslogtreecommitdiffstats
path: root/libhb/declpcm.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/declpcm.c')
-rw-r--r--libhb/declpcm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/declpcm.c b/libhb/declpcm.c
index 95705225e..bec7aaca5 100644
--- a/libhb/declpcm.c
+++ b/libhb/declpcm.c
@@ -374,8 +374,8 @@ static int declpcmBSInfo( hb_work_object_t *w, const hb_buffer_t *b,
memset( info, 0, sizeof(*info) );
info->name = "LPCM";
- info->rate = rate;
- info->rate_base = 1;
+ info->rate.num = rate;
+ info->rate.den = 1;
info->bitrate = bitrate;
info->flags = ( b->data[3] << 16 ) | ( b->data[4] << 8 ) | b->data[5];
info->matrix_encoding = AV_MATRIX_ENCODING_NONE;