diff options
author | jstebbins <[email protected]> | 2010-11-10 16:51:35 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2010-11-10 16:51:35 +0000 |
commit | 98d004a546fd76f8e57e132a3faafa04135e5e3f (patch) | |
tree | 7ba0f5bdb576cb058461e22d2433d5cfcac8e73f /libhb/decavcodec.c | |
parent | b1e9e6da2cc081b800dd19433e2bbed54c96e0bc (diff) |
bump ffmpeg from r25374 to r25689
brings back LATM support
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3669 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/decavcodec.c')
-rw-r--r-- | libhb/decavcodec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/decavcodec.c b/libhb/decavcodec.c index c40ce49ec..2ccac589a 100644 --- a/libhb/decavcodec.c +++ b/libhb/decavcodec.c @@ -1386,7 +1386,7 @@ static void decodeAudio( hb_audio_t * audio, hb_work_private_t *pv, uint8_t *dat // anything more complicated than a one-for-one format // conversion we'd probably want to cache the converter // context in the pv. - int isamp = av_get_bits_per_sample_format( context->sample_fmt ) / 8; + int isamp = av_get_bits_per_sample_fmt( context->sample_fmt ) / 8; AVAudioConvert *ctx = av_audio_convert_alloc( SAMPLE_FMT_S16, 1, context->sample_fmt, 1, NULL, 0 ); |