Bug 92258 - [patch] sysutils/vobcopy - double detection of VOBs due to cd9660 driver
Summary: [patch] sysutils/vobcopy - double detection of VOBs due to cd9660 driver
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Mario Sergio Fujikawa Ferreira
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-01-24 11:30 UTC by edwin
Modified: 2006-02-02 00:31 UTC (History)
0 users

See Also:


Attachments
file.diff (1.04 KB, patch)
2006-01-24 11:30 UTC, edwin
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description edwin 2006-01-24 11:30:06 UTC
	systils/vobcopy tries to determine the size of the VOBs to
	be copied by checking for video_ts/foo.vob and VIDEO_TS/FOO.VOB.

	Due to the nature of the cd9660 driver, both files exist:

	 $ ls -al /cdrom/video_ts/vts_04_1.vob
	 -r-xr-xr-x  1 root  wheel  13312000 Jan 24  2005 /cdrom/video_ts/vts_04_1.vob
	 $ ls -al /cdrom/video_ts/VTS_04_1.VOB
	 -r-xr-xr-x  1 root  wheel  13312000 Jan 24  2005 /cdrom/video_ts/VTS_04_1.VOB

	 This will thus generate a double size of the VOB copied:

	 Copying finished! Let's see if the sizes match (roughly)
	 Combined size of title-vobs: 26624000 (25 MB)
	 Copied size (size on disk):  13312000 (13 MB)
	 [Error] Hmm, the sizes differ by more than 2000

Fix: Add this patch patch-dvd.c:
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2006-01-24 11:32:16 UTC
Responsible Changed
From-To: freebsd-ports-bugs->lioux

Over to maintainer
Comment 2 Mario Sergio Fujikawa Ferreira freebsd_committer freebsd_triage 2006-02-02 00:31:24 UTC
State Changed
From-To: open->closed

Committed. Thanks!