diff options
author | jstebbins <[email protected]> | 2014-01-26 03:26:33 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-01-26 03:26:33 +0000 |
commit | ee621317fb45852db29b94308b87690827a9a0df (patch) | |
tree | 52f5be05f73ce54e624020888624aad4736c5462 /libhb | |
parent | 8ffcb230a62b2fb5fd716cf66f7c99f9ca5e273b (diff) |
libhb: fix compiler warning
move struct chapter_s declaration to correct location.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5999 b64f7644-9d1e-0410-96f1-a4d463321fa5
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 *********************************************************************** |