summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
Diffstat (limited to 'libhb')
-rw-r--r--libhb/common.h1
-rw-r--r--libhb/muxmp4.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/libhb/common.h b/libhb/common.h
index 1f16366e8..988ea3d55 100644
--- a/libhb/common.h
+++ b/libhb/common.h
@@ -260,6 +260,7 @@ struct hb_job_s
/* Allow MP4 files > 4 gigs */
int largeFileSize;
int mp4_optimize;
+ int ipod_atom;
int indepth_scan;
hb_subtitle_t ** select_subtitle;
diff --git a/libhb/muxmp4.c b/libhb/muxmp4.c
index 0760aac64..13e2247a1 100644
--- a/libhb/muxmp4.c
+++ b/libhb/muxmp4.c
@@ -200,7 +200,7 @@ static int MP4Init( hb_mux_object_t * m )
MP4AddH264PictureParameterSet( m->file, mux_data->track,
job->config.h264.pps, job->config.h264.pps_length );
- if( job->h264_level == 30)
+ if( job->h264_level == 30 || job->ipod_atom)
{
hb_log("About to add iPod atom");
AddIPodUUID(m->file, mux_data->track);