diff options
author | jstebbins <[email protected]> | 2015-05-25 16:16:35 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-05-25 16:16:35 +0000 |
commit | 36aeaf4b29260cc97c9a2c6cbab11ee2555ca993 (patch) | |
tree | ad6790b07a50b40e4411bd2fe3cc6fd1243ef830 | |
parent | 9abe991b41bbc9c03d2e1846c28cf90ec909d57b (diff) |
libhb: fix vorbis encoding
Was broken when we switched to using EOF flag instead of 0 length buffer.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7223 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | libhb/encvorbis.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/encvorbis.c b/libhb/encvorbis.c index aee7b9d80..c4ff206e1 100644 --- a/libhb/encvorbis.c +++ b/libhb/encvorbis.c @@ -267,7 +267,7 @@ int encvorbisWork( hb_work_object_t * w, hb_buffer_t ** buf_in, return HB_WORK_DONE; } - hb_list_add( pv->list, *buf_in ); + hb_list_add( pv->list, in ); *buf_out = buf = Encode( w ); while( buf ) |