]> granicus.if.org Git - handbrake/commitdiff
cosmetics and improved comments
authorjstebbins <jstebbins.hb@gmail.com>
Sun, 13 Mar 2011 21:58:01 +0000 (21:58 +0000)
committerjstebbins <jstebbins.hb@gmail.com>
Sun, 13 Mar 2011 21:58:01 +0000 (21:58 +0000)
Thanks Rodeo ;)

git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3849 b64f7644-9d1e-0410-96f1-a4d463321fa5

libhb/hb.h
libhb/render.c

index 5729088cff22be6fb839952ad9f176c31d0a0053..783da11cd0db5fe039c00ebde14cd5a555b0fe44 100644 (file)
@@ -81,7 +81,7 @@ typedef struct hb_interjob_s
     int last_job;          /* job->sequence_id & 0xFFFFFF */
     int frame_count;       /* number of frames counted by sync */
     int out_frame_count;   /* number of frames counted by render */
-    uint64_t total_time;   /* real length in 90khz (i.e. / 90000 */
+    uint64_t total_time;   /* real length in 90kHz ticks (i.e. seconds / 90000) */
     int vrate;             /* actual measured output vrate from 1st pass */
     int vrate_base;        /* actual measured output vrate_base from 1st pass */
 
index 0b040fc232fce7ff37fc2b29a987d3e78bd2520e..1e7f43237c70dfffde569dc6d5992aa0c4c29311 100644 (file)
@@ -28,7 +28,7 @@ struct hb_work_private_s
     int64_t              chapter_time;
     int                  chapter_val;
     int                  count_frames;      // frames output so far
-    double               frame_rate;        // 90KHz ticks per frame (for CFR/PFR)
+    double               frame_rate;        // 90kHz ticks per frame (for CFR/PFR)
     uint64_t             out_last_stop;     // where last frame ended (for CFR/PFR)
     int                  drops;             // frames dropped (for CFR/PFR)
     int                  dups;              // frames duped (for CFR/PFR)
@@ -716,7 +716,7 @@ void renderClose( hb_work_object_t * w )
 
     hb_interjob_t * interjob = hb_interjob_get( w->private_data->job->h );
     
-    /* Preserve dropped frame count for more accurate framerates in 2nd passes. */
+    /* Preserve output frame count and time for more accurate framerates in 2nd passes. */
     interjob->out_frame_count = pv->count_frames;
     interjob->total_time = pv->out_last_stop;