diff options
author | jstebbins <[email protected]> | 2011-03-01 00:06:41 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2011-03-01 00:06:41 +0000 |
commit | dc6420553bfeacdcd4ae826a42a3090b55f5c4e8 (patch) | |
tree | c6bcc3c0b185ba4dc29e52a8b1ecd7d71d0ddcdd /libhb/common.c | |
parent | bb53f4b54e2f91769a9f11040f0c7c18ebbd7eb8 (diff) |
initialize title->angle_count to 1
sources that don't support multiple angles should default to 1
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3821 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.c')
-rw-r--r-- | libhb/common.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/common.c b/libhb/common.c index 6b1d830a3..06fb00645 100644 --- a/libhb/common.c +++ b/libhb/common.c @@ -1032,6 +1032,7 @@ hb_title_t * hb_title_init( char * path, int index ) // default to decoding mpeg2 t->video_id = 0xE0; t->video_codec = WORK_DECMPEG2; + t->angle_count = 1; return t; } |