diff options
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/encx264.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libhb/encx264.c b/libhb/encx264.c index ef5eece2f..ad0ed655a 100644 --- a/libhb/encx264.c +++ b/libhb/encx264.c @@ -59,13 +59,6 @@ struct hb_work_private_s hb_list_t *delayed_chapters; int64_t next_chapter_pts; - // used in delayed_chapters list - struct chapter_s - { - int index; - int64_t start; - }; - struct { int64_t duration; } frame_info[FRAME_INFO_SIZE]; @@ -73,6 +66,13 @@ struct hb_work_private_s char filename[1024]; }; +// used in delayed_chapters list +struct chapter_s +{ + int index; + int64_t start; +}; + /*********************************************************************** * hb_work_encx264_init *********************************************************************** |