diff options
author | Rodeo <[email protected]> | 2012-06-25 21:06:58 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-06-25 21:06:58 +0000 |
commit | 53eeba979ff084c6f020b1b2b9dc53fe2475eda3 (patch) | |
tree | 78902208ed731444635a54379edcaec0d408be4e /libhb/platform/macosx/encca_aac.c | |
parent | 4807721669bb9a06cf747e1cbabe3654c63a037f (diff) |
encca_aac: chnage a variable type (should have been done in revision 3754).
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4778 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/platform/macosx/encca_aac.c')
-rw-r--r-- | libhb/platform/macosx/encca_aac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libhb/platform/macosx/encca_aac.c b/libhb/platform/macosx/encca_aac.c index 4ce423b47..a0c191a17 100644 --- a/libhb/platform/macosx/encca_aac.c +++ b/libhb/platform/macosx/encca_aac.c @@ -49,7 +49,7 @@ struct hb_work_private_s uint64_t pts, ibytes; Float64 osamplerate; - int layout; + uint64_t layout; hb_chan_map_t *ichanmap; }; @@ -199,7 +199,7 @@ int encCoreAudioInit(hb_work_object_t *w, hb_job_t *job, enum AAC_MODE mode) if (err != noErr) { - hb_log("Error creating an AudioConverter err=%"PRId64" output.mBytesPerFrame=%"PRIu64, + hb_log("Error creating an AudioConverter err=%"PRId64" output.mBytesPerFrame=%"PRIu64"", (int64_t)err, (uint64_t)output.mBytesPerFrame); *job->die = 1; return -1; |