diff options
author | Rodeo <[email protected]> | 2012-06-18 19:31:50 +0000 |
---|---|---|
committer | Rodeo <[email protected]> | 2012-06-18 19:31:50 +0000 |
commit | dc1e7163771135f0099aa7fa312d4c0713458d62 (patch) | |
tree | ae7cf67010007b7465d59f67d9296383b28fa815 | |
parent | 8a54e42212a0989823fdad941c0f7311f878ed7d (diff) |
Fix HE-AAC in MKV.
HandBrake's output should now play correctly on Sigma-based hardware players (among others).
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4750 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | contrib/libmkv/A02-audio-out-sampling-freq.patch | 56 | ||||
-rw-r--r-- | libhb/muxmkv.c | 17 |
2 files changed, 72 insertions, 1 deletions
diff --git a/contrib/libmkv/A02-audio-out-sampling-freq.patch b/contrib/libmkv/A02-audio-out-sampling-freq.patch new file mode 100644 index 000000000..12c05dda7 --- /dev/null +++ b/contrib/libmkv/A02-audio-out-sampling-freq.patch @@ -0,0 +1,56 @@ +diff --git a/include/libmkv.h b/include/libmkv.h +index 146a91f..f03d608 100644 +--- a/include/libmkv.h ++++ b/include/libmkv.h +@@ -203,6 +204,7 @@ struct mk_TrackConfig_s { + } video; + struct { + float samplingFreq; /* Sampling Frequency in Hz */ ++ float outputSamplingFreq; /* Playback Sampling Frequency in Hz (e.g. for AAC w/SBR) */ + unsigned channels; /* Number of channels for this track */ + unsigned bitDepth; /* Bits per sample (PCM) */ + } audio; +diff --git a/src/tracks.c b/src/tracks.c +index f9c7e48..a2a60ca 100644 +--- a/src/tracks.c ++++ b/src/tracks.c +@@ -174,6 +174,11 @@ mk_Track *mk_createTrack(mk_Writer *w, mk_TrackConfig *tc) + /* SamplingFrequency */ + if (mk_writeFloat(v, MATROSKA_ID_AUDIOSAMPLINGFREQ, tc->extra.audio.samplingFreq) < 0) + return NULL; ++ if (tc->extra.audio.outputSamplingFreq) { ++ /* Output SamplingFrequency */ ++ if (mk_writeFloat(v, MATROSKA_ID_AUDIOOUTSAMPLINGFREQ, tc->extra.audio.outputSamplingFreq) < 0) ++ return NULL; ++ } + /* Channels */ + if (mk_writeUInt(v, MATROSKA_ID_AUDIOCHANNELS, tc->extra.audio.channels) < 0) + return NULL; +diff --git a/include/libmkv.h b/include/libmkv.h +index 146a91f..f03d608 100644 +--- a/include/libmkv.h ++++ b/include/libmkv.h +@@ -203,6 +204,7 @@ struct mk_TrackConfig_s { + } video; + struct { + float samplingFreq; /* Sampling Frequency in Hz */ ++ float outputSamplingFreq; /* Playback Sampling Frequency in Hz (e.g. for AAC w/SBR) */ + unsigned channels; /* Number of channels for this track */ + unsigned bitDepth; /* Bits per sample (PCM) */ + } audio; +diff --git a/src/tracks.c b/src/tracks.c +index f9c7e48..a2a60ca 100644 +--- a/src/tracks.c ++++ b/src/tracks.c +@@ -174,6 +174,11 @@ mk_Track *mk_createTrack(mk_Writer *w, mk_TrackConfig *tc) + /* SamplingFrequency */ + if (mk_writeFloat(v, MATROSKA_ID_AUDIOSAMPLINGFREQ, tc->extra.audio.samplingFreq) < 0) + return NULL; ++ if (tc->extra.audio.outputSamplingFreq) { ++ /* Output SamplingFrequency */ ++ if (mk_writeFloat(v, MATROSKA_ID_AUDIOOUTSAMPLINGFREQ, tc->extra.audio.outputSamplingFreq) < 0) ++ return NULL; ++ } + /* Channels */ + if (mk_writeUInt(v, MATROSKA_ID_AUDIOCHANNELS, tc->extra.audio.channels) < 0) + return NULL; diff --git a/libhb/muxmkv.c b/libhb/muxmkv.c index 25b111b90..1c4ae83ea 100644 --- a/libhb/muxmkv.c +++ b/libhb/muxmkv.c @@ -286,7 +286,22 @@ static int MKVInit( hb_mux_object_t * m ) // MKV lang codes should be ISO-639-2/B lang = lang_for_code2( audio->config.lang.iso639_2 ); track->language = lang->iso639_2b ? lang->iso639_2b : lang->iso639_2; - track->extra.audio.samplingFreq = (float)audio->config.out.samplerate; + // sample rate + if ((audio->config.out.codec == HB_ACODEC_CA_HAAC) || + (audio->config.out.codec == HB_ACODEC_AAC_PASS && + audio->priv.config.extradata.length == 5)) + { + // For HE-AAC, write outputSamplingFreq too + // samplingFreq is half of outputSamplingFreq + track->extra.audio.outputSamplingFreq = (float)audio->config.out.samplerate; + track->extra.audio.samplingFreq = track->extra.audio.outputSamplingFreq / 2.; + hb_log("HE-AAC Passthru!!! !!! !!!"); + } + else + { + track->extra.audio.samplingFreq = (float)audio->config.out.samplerate; + hb_log("AAC Passthru :("); + } if( audio->config.out.codec & HB_ACODEC_PASS_FLAG ) { track->extra.audio.channels = HB_INPUT_CH_LAYOUT_GET_DISCRETE_COUNT( audio->config.in.channel_layout ); |