diff options
author | jstebbins <[email protected]> | 2014-12-23 22:08:10 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-12-23 22:08:10 +0000 |
commit | 2f8e8b63af1a896d4d15b48ee46a09ca1e061583 (patch) | |
tree | c92f6a8c10317b595cf6971ba7ecec6840cc5924 /libhb | |
parent | 80d43d93c9514df0437480d3054720a803c3b663 (diff) |
eliminate job->largeFileSize
It is no longer needed since we eliminated mp4v2 support
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6647 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb')
-rw-r--r-- | libhb/common.h | 2 | ||||
-rw-r--r-- | libhb/hb_json.c | 8 | ||||
-rw-r--r-- | libhb/work.c | 3 |
3 files changed, 3 insertions, 10 deletions
diff --git a/libhb/common.h b/libhb/common.h index a932a07a8..f4d25dcf6 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -555,8 +555,6 @@ struct hb_job_s int mux; char * file; - /* Allow MP4 files > 4 gigs */ - int largeFileSize; int mp4_optimize; int ipod_atom; diff --git a/libhb/hb_json.c b/libhb/hb_json.c index 236f3af81..70160436e 100644 --- a/libhb/hb_json.c +++ b/libhb/hb_json.c @@ -431,9 +431,8 @@ char* hb_job_to_json( const hb_job_t * job ) if (job->mux & HB_MUX_MASK_MP4) { json_t *mp4_dict; - mp4_dict = json_pack_ex(&error, 0, "{s:o, s:o, s:o}", + mp4_dict = json_pack_ex(&error, 0, "{s:o, s:o}", "Mp4Optimize", json_boolean(job->mp4_optimize), - "LargeFileSize", json_boolean(job->largeFileSize), "IpodAtom", json_boolean(job->ipod_atom)); json_object_set_new(dest_dict, "Mp4Options", mp4_dict); } @@ -707,8 +706,8 @@ hb_job_t* hb_json_to_job( hb_handle_t * h, const char * json_job ) "{" "s:i," // Destination {File, Mux, ChapterMarkers, Mp4Options { - // Mp4Optimize, LargeFileSize, IpodAtom} - "s:{s?s, s:i, s:b s?{s?b, s?b, s?b}}," + // Mp4Optimize, IpodAtom} + "s:{s?s, s:i, s:b s?{s?b, s?b}}," // Source {Angle, Range {ChapterStart, ChapterEnd, PtsToStart, PtsToStop, // FrameToStart, FrameToStop, StartAtPreview, SeekPoints} "s:{s?i, s:{s?i, s?i, s?I, s?I, s?i, s?i, s?i, s?i}}," @@ -734,7 +733,6 @@ hb_job_t* hb_json_to_job( hb_handle_t * h, const char * json_job ) "ChapterMarkers", unpack_b(&job->chapter_markers), "Mp4Options", "Mp4Optimize", unpack_b(&job->mp4_optimize), - "LargeFileSize", unpack_b(&job->largeFileSize), "IpodAtom", unpack_b(&job->ipod_atom), "Source", "Angle", unpack_i(&job->angle), diff --git a/libhb/work.c b/libhb/work.c index 7b135c85a..4825a1db4 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -213,9 +213,6 @@ void hb_display_job_info(hb_job_t *job) hb_log(" + container: %s", hb_container_get_long_name(job->mux)); switch (job->mux) { - case HB_MUX_MP4V2: - if (job->largeFileSize) - hb_log(" + 64-bit chunk offsets"); case HB_MUX_AV_MP4: if (job->mp4_optimize) hb_log(" + optimized for HTTP streaming (fast start)"); |