summaryrefslogtreecommitdiffstats
path: root/libhb/encx264.c
diff options
context:
space:
mode:
authorRodeo <[email protected]>2013-10-19 12:20:23 +0000
committerRodeo <[email protected]>2013-10-19 12:20:23 +0000
commit83d7c415ce5d3b3af108e1b9e13f65abd021189d (patch)
treeb47fbf1ebd758b92cf5389082e5191e29b6de2ab /libhb/encx264.c
parent99896070050c04ac70dc14bfa0f995d8415ad016 (diff)
encx264: remove some long dead code.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5842 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/encx264.c')
-rw-r--r--libhb/encx264.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/libhb/encx264.c b/libhb/encx264.c
index 68d7a96d0..f85adb0fd 100644
--- a/libhb/encx264.c
+++ b/libhb/encx264.c
@@ -55,7 +55,6 @@ struct hb_work_private_s
uint32_t frames_in;
uint32_t frames_out;
- uint32_t frames_split; // number of frames we had to split
int chap_mark; // saved chap mark when we're propagating it
int64_t last_stop; // Debugging - stop time of previous input frame
int64_t next_chap;
@@ -375,11 +374,6 @@ void encx264Close( hb_work_object_t * w )
{
hb_work_private_t * pv = w->private_data;
- if ( pv->frames_split )
- {
- hb_log( "encx264: %u frames had to be split (%u in, %u out)",
- pv->frames_split, pv->frames_in, pv->frames_out );
- }
free( pv->grey_data );
x264_encoder_close( pv->x264 );
free( pv );