JP2007213198A - Table generation method for data retrieval - Google Patents

Table generation method for data retrieval Download PDF

Info

Publication number
JP2007213198A
JP2007213198A JP2006030801A JP2006030801A JP2007213198A JP 2007213198 A JP2007213198 A JP 2007213198A JP 2006030801 A JP2006030801 A JP 2006030801A JP 2006030801 A JP2006030801 A JP 2006030801A JP 2007213198 A JP2007213198 A JP 2007213198A
Authority
JP
Japan
Prior art keywords
file
files
stored
generation method
gop
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
JP2006030801A
Other languages
Japanese (ja)
Inventor
Tomoyuki Abe
智幸 阿部
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Panasonic Holdings Corp
Original Assignee
Matsushita Electric Industrial Co Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Matsushita Electric Industrial Co Ltd filed Critical Matsushita Electric Industrial Co Ltd
Priority to JP2006030801A priority Critical patent/JP2007213198A/en
Publication of JP2007213198A publication Critical patent/JP2007213198A/en
Pending legal-status Critical Current

Links

Images

Landscapes

  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
  • Management Or Editing Of Information On Record Carriers (AREA)

Abstract

<P>PROBLEM TO BE SOLVED: To provide a method for generating a table in which the ID and positions of files are stored with an interval close to the optimal storage interval without preliminarily checking the total number of files recorded in a storage medium. <P>SOLUTION: In a process for recursively retrieving a directory in a storage medium, and for listing files, IDs are successively applied to the listed files, and the set of the IDs and the files is stored in a table. When the table has reached predetermined length, the existing elements of the table whose IDs do not include the multiple of 2 are overwritten by the listed files whose IDs include the multiple of 2, so that it is possible to prevent the table from being made longer any more. When all the elements of the table have IDs including the multiple of 2, those having IDs not including the multiple of 4 are overwritten. Afterwards, the similar operation is repeated until the listing of the files is completed. <P>COPYRIGHT: (C)2007,JPO&INPIT

Description

本発明は、システムに順次供給されるデータにIDを付与し、そのIDを用いてデータを取り扱うシステムに関するものである。より詳細には、IDおよび当該IDが示すデータの記録位置を関連付けて複数格納するテーブルを生成し高速化する技術に関する。   The present invention relates to a system that assigns an ID to data sequentially supplied to the system and handles the data using the ID. More specifically, the present invention relates to a technique for generating and speeding up a table that stores a plurality of IDs associated with recording positions of data indicated by the IDs.

現在、デジタルカメラで撮影した画像を記録媒体に記録する際のDCF規格(Design rule for Camera File system)や、印刷装置(例えばプリンタ)と画像記録装置(例えばデジタルカメラ)を接続し、印刷装置から、画像記録装置に記録されている画像を指定し印刷を行うための、PictBridge規格がある。いずれの規格も、一般的にFATファイルシステムでフォーマットされた記録媒体に画像ファイルを格納しているが、FATファイルシステムではファイル数が多くなると、後にエントリーされているファイルのアクセスに時間がかかるという問題があり、その問題を解決するために、いくつかの技術が考案されている。   Currently, a DCF standard (Design rule for Camera File system) for recording an image taken with a digital camera on a recording medium, or a printing device (for example, a printer) and an image recording device (for example, a digital camera) are connected to There is a PictBridge standard for specifying and printing an image recorded in an image recording apparatus. In either standard, image files are generally stored on a recording medium formatted with the FAT file system. However, when the number of files increases in the FAT file system, it takes time to access the file that is entered later. There is a problem, and several techniques have been devised to solve the problem.

まず、ディレクトリ名及びファイル名に画像記録装置内(記録媒体内)で重複しないメディアユニークなIDを付け、メディアユニークIDと記録位置を対応付けしてテーブルを作成し所定の位置に保存することで、目的のファイル検索の高速化を行っている(特許文献1)。   First, a unique medium ID that is not duplicated in the image recording apparatus (in the recording medium) is assigned to the directory name and the file name, a table is created by associating the media unique ID with the recording position, and stored in a predetermined position. The target file search is speeded up (Patent Document 1).

また、PictBridge規格では、印刷装置と画像記録装置間でファイルを識別するためのIDが32bit幅であることと、記録媒体上の該画像ファイルのファイルエントリ値が同じ32bit幅であることを利用し、ファイルエントリ値をそのままIDとして指定することで、高速なファイルアクセスを実現している。   The PictBridge standard uses the fact that the ID for identifying a file between the printing apparatus and the image recording apparatus is a 32-bit width and that the file entry value of the image file on the recording medium is the same 32-bit width. By specifying the file entry value as an ID as it is, high-speed file access is realized.

3番目はディレクトリを再帰的に検索する場合におけるファイルのならびにしたがってIDを付与する方法である。(特許文献2と特許文献3)
特開2004−302853号公報 特開2004−295182号公報 特開平9−139915号公報
The third is a method for assigning IDs of files and therefore IDs when searching directories recursively. (Patent Document 2 and Patent Document 3)
JP 2004-302853 A JP 2004-295182 A JP-A-9-139915

上記3つのID生成方法にはそれぞれ以下の課題がある。1番目の方法の課題は記憶媒体が大容量になるとファイルエントリのアドレスを32bitで表現することができなくなってしまうこと。2番目の方法の課題は、DCF規格などの予め決められたファイル以外は通信できないこと。3番目の方法の課題は、ディレクトリを再帰的に検索する場合におけるファイルのならびにおいて、後方に位置するファイルまでたどり着くのに時間がかかることである。   Each of the above three ID generation methods has the following problems. The problem with the first method is that the address of a file entry cannot be expressed in 32 bits when the storage medium has a large capacity. The problem with the second method is that only files that are predetermined such as the DCF standard can be communicated. The problem with the third method is that it takes a long time to reach a file located behind the file in the case of recursively searching the directory.

ここで3番目の方法の課題を解決する方法のひとつとして、ディレクトリ領域のアドレスのキャッシュを用いてファイル検索速度を向上させる方法がある(特許文献2)。この方法により確かにファイル検索速度は向上するが、後方に位置するファイルほど、たどり着くのに時間がかかる点は解決されない。   Here, as one of the methods for solving the problem of the third method, there is a method of improving the file search speed using a cache of the address of the directory area (Patent Document 2). This method certainly improves the file search speed, but it does not solve the problem that it takes more time to get to the back file.

3番目の方法の課題を解決するもうひとつの方法として、ファイルの位置とIDの組を複数格納するテーブルを用いる方法がある。テーブルを用いる技術は、圧縮された動画ストリームの任意位置のフレームを検索するための技術として公開されており(特許文献3)、これを本課題にも応用することができる。   As another method for solving the problem of the third method, there is a method using a table storing a plurality of sets of file positions and IDs. A technique using a table is disclosed as a technique for searching for a frame at an arbitrary position in a compressed video stream (Patent Document 3), and this technique can be applied to this problem.

しかしファイルの位置とIDの組を複数格納するテーブルを生成するにあたって、記憶媒体内に多数のファイルが記録されている場合、すべてのファイルの位置をテーブルに格納することは難しいため、テーブルに格納するファイルと格納しないファイルとを選別しなければならない。   However, when generating a table that stores a plurality of pairs of file positions and IDs, if a large number of files are recorded in the storage medium, it is difficult to store the positions of all the files in the table. It is necessary to select files to be stored and files not to be stored.

ここで後方に位置するファイル、すなわちID番号が大きな数値のファイルにもすばやくたどり着けるようにするためには、テーブルに位置を格納するファイルのIDに偏りが出ないように、等間隔で格納する必要がある。たとえば800ファイルを記録している記憶媒体に対してファイルの位置を8つ格納するテーブルを生成する場合には、ID=0,100,200,300,400,500,600,700の8ファイルの位置を格納することが理想である。   Here, in order to be able to quickly reach a file located behind, that is, a file with a large ID number, it is necessary to store the ID of the file storing the position in the table at equal intervals so as not to be biased. There is. For example, when generating a table storing eight file positions for a storage medium in which 800 files are recorded, eight files with ID = 0, 100, 200, 300, 400, 500, 600, 700 are stored. Ideally the location is stored.

ここで前述の方法でファイルを選別するには、記憶媒体に記録されているファイルの総数を得る必要があるが、記憶媒体にディレクトリ、ファイルが多数存在した場合、多大な時間を要してしまう課題がある。   Here, in order to select files by the above-described method, it is necessary to obtain the total number of files recorded on the storage medium. However, if there are a large number of directories and files on the storage medium, it takes a lot of time. There are challenges.

なお、圧縮動画ストリームの記録と並行して、動画ストリーム中の各フレームの位置とフレーム番号を一定数格納するテーブルを生成する場合においても、同様の課題がある。すなわち動画を記録しているユーザーがいつ記録を終了するかわからないため、最終的にいくつのフレームで圧縮動画ストリームが形成されるかが不明である。よって、どのフレ
ームの位置をテーブルに格納するかを決定できない。
A similar problem occurs when generating a table that stores a certain number of positions and frame numbers of each frame in the moving image stream in parallel with the recording of the compressed moving image stream. That is, since the user who is recording the moving image does not know when the recording ends, it is unknown how many frames the compressed moving image stream is finally formed. Therefore, it is not possible to determine which frame position is stored in the table.

前記従来の課題を解決するために、本発明の請求項1にかかるデータ検索のためのテーブル生成方法は、記録媒体上のデータ位置に対しIDの付与を行うID割り当て手段と、順次供給されるデータ順に、前記データ位置と、前記IDとを、テーブルとしてバッファメモリに格納するテーブル格納位置決定手段を有し、前記テーブル格納位置決定手段はテ
ーブルへの格納が一巡した以降、サンプリング間隔Nと、新規に格納する前記IDの値により、前記テーブルに格納する位置を決定することを特徴とするものである。
In order to solve the conventional problem, a table generation method for data search according to claim 1 of the present invention is sequentially supplied with ID assigning means for assigning IDs to data positions on a recording medium. Table storage position determining means for storing the data position and the ID as a table in a buffer memory in the order of data, the table storage position determining means after the storage in the table has been completed, sampling interval N, The position to be stored in the table is determined based on the value of the ID to be newly stored.

さらに、本発明の請求項2にかかるデータ検索のためのテーブル生成方法は、前記サンプリング間隔Nは1から始まり、前記テーブルへの格納が一巡する毎に、サンプリング間隔Nを2倍にすることを特徴とするものである。   Furthermore, in the table generation method for data retrieval according to claim 2 of the present invention, the sampling interval N starts from 1, and every time storage in the table is completed, the sampling interval N is doubled. It is a feature.

さらに、本発明の請求項3にかかるデータ検索のためのテーブル生成方法は、前記テーブル格納位置決定手段は、新規に割り当てられた前記IDが、前記サンプリング間隔Nの倍数の場合には、すでに前記テーブルに格納されている前記サンプリング間隔Nの倍数ではないID値のテーブルに上書きし、新規に割り当てられた前記IDが、前記サンプリング間隔Nの倍数でない場合には、前記テーブルに格納しないことを特徴とするものである。   Furthermore, in the table generation method for data retrieval according to claim 3 of the present invention, the table storage position determining means is configured so that the newly assigned ID is already a multiple of the sampling interval N. An ID value table that is not a multiple of the sampling interval N stored in the table is overwritten, and if the newly assigned ID is not a multiple of the sampling interval N, it is not stored in the table. It is what.

さらに、本発明の請求項4にかかるデータ検索のためのテーブル生成方法は、前記データとはシステムに装着された記憶媒体内のファイルであり、
前記IDとは、ディレクトリを再帰的に検索して前記ファイルにたどり着くまでに存在するほかのファイルの数であることを特徴としたものである。
Furthermore, in the table generation method for data retrieval according to claim 4 of the present invention, the data is a file in a storage medium attached to the system,
The ID is the number of other files that exist until a directory is recursively searched to reach the file.

さらに、本発明の請求項5にかかるデータ検索のためのテーブル生成方法は、前記データとはシステムに供給される動画または音声ストリームの1サンプルであり、前記IDとはストリームの先頭から当該サンプルまでの経過時間であることを特徴としたものである。   Furthermore, in the table generation method for data retrieval according to claim 5 of the present invention, the data is one sample of a moving picture or audio stream supplied to the system, and the ID is from the head of the stream to the sample. It is characterized by the elapsed time.

さらに、本発明の請求項6にかかるデータ検索のためのテーブル生成方法は、記憶媒体内のファイルの位置をファイルパスで表現して前記テーブルに格納することを特徴としたものである。   Furthermore, a table generation method for data search according to claim 6 of the present invention is characterized in that the position of a file in a storage medium is expressed by a file path and stored in the table.

さらに、本発明の請求項7にかかるデータ検索のためのテーブル生成方法は、記憶媒体内のファイルの位置をファイルエントリのアドレスと当該ファイルを格納するディレクトリ領域の先頭アドレスで表現してテーブルに格納することを特徴としたものである。   Further, according to a seventh aspect of the present invention, there is provided a table generation method for data retrieval, wherein a file position in a storage medium is expressed by a file entry address and a head address of a directory area for storing the file and stored in the table. It is characterized by doing.

さらに、本発明の請求項8にかかるデータ検索のためのテーブル生成方法は、前記データとは動画像符号化方式の国際標準であるMPEGにより圧縮されたMPEGビデオストリームのGOPであり、前記IDとはストリームの先頭から当該GOPまでの区間に存在するGOPの数であることを特徴としたものである。   Furthermore, in the table generation method for data retrieval according to claim 8 of the present invention, the data is a GOP of an MPEG video stream compressed by MPEG which is an international standard of a moving picture coding system, and the ID and Is the number of GOPs existing in the section from the beginning of the stream to the GOP.

さらに、本発明の請求項9にかかるデータ検索のためのテーブル生成方法は、記憶媒体内のファイルはJIS−X−0605規格にもとづくFAT型ファイルシステムにより管理されていることを特徴としたものである。   Furthermore, the table generation method for data retrieval according to claim 9 of the present invention is characterized in that the files in the storage medium are managed by a FAT file system based on the JIS-X-0605 standard. is there.

本発明のデータ検索のためのテーブル格納位置決定手段によれば、記憶媒体に記録されているファイルの総数を事前に調べることなく、最適な格納間隔に近い間隔で、ファイルのIDおよび位置を格納するテーブルを生成することができる。   According to the table storage position determination means for data retrieval of the present invention, the file ID and position are stored at an interval close to the optimal storage interval without checking the total number of files recorded in the storage medium in advance. To create a table.

また本発明のデータ検索のためのテーブル格納位置決定手段によれば、最適な格納間隔に近い間隔で、圧縮動画ストリームの記録と並行して、動画ストリーム中の各フレームの位置とフレーム番号を一定数格納するテーブルを生成することができる。   Further, according to the table storage position determining means for data retrieval of the present invention, the position and frame number of each frame in the moving picture stream are fixed in parallel with the recording of the compressed moving picture stream at intervals close to the optimum storage interval. A table for storing numbers can be generated.

以下に、本発明のデータ検索のためのテーブル格納位置決定手段の実施の形態を図面とともに詳細に説明する。   Hereinafter, an embodiment of a table storage position determining means for data search according to the present invention will be described in detail with reference to the drawings.

図1は、本発明の第1の実施例におけるデータ検索のためのテーブル格納位置決定手段のシステム構成を示す。   FIG. 1 shows a system configuration of a table storage position determination means for data search in the first embodiment of the present invention.

図1において、記憶媒体101にはディレクトリ、ファイルが記録されている。ファイル列挙手段102は記憶媒体101に記録されているファイルを、ディレクトリを再帰的に検索することにより列挙する。ファイルID割り当て手段103はファイル列挙手段102が発見したファイルにユニークなIDを割り当てる。その割り当て方法はファイル列挙手段が発見した順番でIDを割り当てる、すなわちはじめに発見したファイルにはID=0を割り当て、その次に発見したファイルにはID=1を割り当てる、というものである。テーブル格納位置決定手段104は順次供給されるファイルパスとIDの組を、バッファメモリ105に用意されたテーブルのどの要素に格納するかを決定する。ここでバッファメモリ105には、ファイルパスとファイルIDの組を1要素とするテーブルを長さ8まで記憶できるとする。   In FIG. 1, directories and files are recorded on the storage medium 101. The file enumeration means 102 enumerates files recorded in the storage medium 101 by recursively searching directories. The file ID assigning unit 103 assigns a unique ID to the file found by the file listing unit 102. The assigning method assigns IDs in the order in which the file enumeration means finds them, that is, assigns ID = 0 to the first found file and assigns ID = 1 to the next found file. The table storage position determination means 104 determines which element of the table prepared in the buffer memory 105 is to store the sequentially supplied file path and ID pair. Here, it is assumed that the buffer memory 105 can store a table having a combination of a file path and a file ID as one element up to a length of 8.

図2は本実施例における記憶媒体101に記録されているディレクトリ、ファイルを示し、また各ファイルに付与されるIDも示す。ここで、ディレクトリを再帰的に検索したときのファイルのならびにしたがって、すなわちファイル列挙手段102が各ファイルを発見する順番で、各ファイルにIDを付与している。   FIG. 2 shows directories and files recorded in the storage medium 101 in this embodiment, and also shows IDs assigned to the respective files. Here, an ID is assigned to each file in the order of the files when the directory is recursively searched, that is, in the order in which the file enumeration means 102 finds each file.

図3はID=0〜7のファイルまで列挙したときのテーブルの内容を示す。本実施例でのバッファメモリ105には長さ8までのテーブルを記憶できるため、ID=0〜7のフ
ァイルすべてをテーブルに格納する。
FIG. 3 shows the contents of the table when enumerating files with ID = 0-7. Since the buffer memory 105 in this embodiment can store a table up to a length of 8, all files with ID = 0 to 7 are stored in the table.

図4は図3の状態に加えてID=8〜15のファイルまで列挙したときのテーブルの内容を示す。図3の状態から、さらにID=8〜15の8ファイルを格納する記憶領域はないので、テーブル生成動作を以下の通り変更する。すなわちテーブルの既存要素(ID=0〜7)のうちIDが2の倍数でないものを、新たに供給されるファイル(ID=8〜15)のうちIDが2の倍数であるもので、上書きする。これにより図4のテーブルが生成される。   FIG. 4 shows the contents of the table when the files of ID = 8 to 15 are listed in addition to the state of FIG. Since there is no storage area for further storing 8 files with ID = 8 to 15 from the state of FIG. 3, the table generation operation is changed as follows. That is, the existing element (ID = 0 to 7) of the table is overwritten with the one whose ID is not a multiple of 2 with the newly supplied file (ID = 8 to 15) whose ID is a multiple of 2. . Thereby, the table of FIG. 4 is generated.

図5は図4の状態に加えてID=16〜31のファイルまで列挙したときのテーブルの内容を示す。図4の状態ではテーブルの要素のうちIDが2の倍数でないものは存在しないため、新たに供給されるファイルをテーブルに格納できない。そこでテーブルの既存要素のうちIDが4の倍数でないものを、新たに供給されるファイルのうちIDが4の倍数であるもので上書きする、ようにテーブル生成動作を変更する。これにより図5のテーブルが生成される。   FIG. 5 shows the contents of the table when the files of ID = 16 to 31 are listed in addition to the state of FIG. In the state of FIG. 4, since there is no table element whose ID is not a multiple of 2, a newly supplied file cannot be stored in the table. Therefore, the table generation operation is changed so that existing elements of the table whose ID is not a multiple of 4 are overwritten with newly supplied files whose ID is a multiple of 4. Thereby, the table of FIG. 5 is generated.

図6は、図5の状態から同様の操作、すなわちテーブルの既存要素のうちIDがNの倍数でないものを、新たに供給されるファイルのうちIDがNの倍数であるもので上書きし、このときテーブルの既存要素のうちIDがNの倍数でないものが存在しなければNを2倍すること、を繰り返してすべてのファイルを列挙したときのテーブルの内容を示す。   6 overwrites the same operation from the state of FIG. 5, that is, the existing element of the table whose ID is not a multiple of N with the newly supplied file whose ID is a multiple of N. When there are no existing elements in the table whose ID is not a multiple of N, the contents of the table are shown when N is doubled and all files are listed.

以上のように、本実施例1においては、テーブルの既存要素のうちIDがNの倍数でないものを、新たに供給されるファイルのうちIDがNの倍数であるもので上書きし、このときテーブルの既存要素のうちIDがNの倍数でないものが存在しなければNを2倍する、ことでテーブル生成を行うことにより、事前に記憶媒体内の全ファイル数を調べることなく、最適な格納間隔に近い間隔でファイルを格納するテーブルを得ることができる。   As described above, in the first embodiment, the existing elements of the table are overwritten with those whose ID is not a multiple of N with the newly supplied file whose ID is a multiple of N, and at this time, the table If there is no existing element of which ID is not a multiple of N, N is doubled so that the optimal storage interval can be obtained without checking the total number of files in the storage medium in advance. A table for storing files at intervals close to can be obtained.

最後に図6のテーブルを用いてID=250のファイルを検索する手順を説明する。はじめにIDが250より小さいものうち、最も250に近い要素をテーブルから検索する。これに該当するのはID=224の要素であるので、ID=224が示すファイルすなわち"/ZZZ/74.JPG"を検索開始位置としてID=250のファイルを検索する。   Finally, a procedure for searching for a file with ID = 250 will be described using the table of FIG. First, the element closest to 250 out of IDs smaller than 250 is searched from the table. Since this corresponds to the element with ID = 224, the file with ID = 250 is searched using the file indicated by ID = 224, that is, “/ZZZ/74.JPG” as the search start position.

検索中、ファイルが見つかるごとにIDを加算し、ID=250となった時点で見つかるファイルが目的のファイルであるが、ID=249のファイルで現在のディレクトリの終端に達する。よって親ディレクトリへ移動する。ここで親ディレクトリ領域がどこにあるかは、テーブルに格納されているファイルパスより直ちに判明する。すなわち、現在のディレクトリが"/ZZZ/"なので、その親ディレクトリは"/"である。これにより親ディレクトリ領域の先頭201に移動することができる。   During the search, an ID is added each time a file is found, and the file found when ID = 250 is the target file, but the end of the current directory is reached with the file with ID = 249. Therefore, move to the parent directory. Here, the location of the parent directory area is immediately determined from the file path stored in the table. That is, since the current directory is “/ ZZZ /”, its parent directory is “/”. Thereby, it is possible to move to the head 201 of the parent directory area.

ただし、検索を続行するためには親ディレクトリ領域の先頭201に移動するのではなく、親ディレクトリ領域のうち現在のディレクトリのエントリが記録されている位置202に移動する必要がある。ここで現在のディレクトリのエントリが記録されている位置202も、ファイルパスより判明する。すなわち現在のディレクトリの名前が"ZZZ"であるため、親ディレクトリ領域に記録されているエントリのうち、名前が"ZZZ"のものを探せばよい。   However, in order to continue the search, it is necessary to move to the position 202 where the entry of the current directory is recorded in the parent directory area instead of moving to the top 201 of the parent directory area. Here, the position 202 where the entry of the current directory is recorded is also found from the file path. That is, since the name of the current directory is “ZZZ”, it is only necessary to search for entries whose name is “ZZZ” among the entries recorded in the parent directory area.

移動が完了すれば、検索を再開する。ここで現在のIDは249であるため、検索再開後、はじめに見つかるファイルがID=250のファイルである。これに該当するのは"/50.JPG"である。   When the move is complete, the search is resumed. Here, since the current ID is 249, the first file found after the search is resumed is the file with ID = 250. This is "/50.JPG".

このようにテーブルにファイルパスを格納することにより、テーブルに格納されているファイルを検索開始位置としてディレクトリを再帰的に検索できる。   By storing the file path in the table in this way, the directory can be recursively searched using the file stored in the table as the search start position.

図7は、本発明の第2の実施例におけるデータ検索のためのテーブル格納位置決定手段のシステム構成を示す。   FIG. 7 shows the system configuration of the table storage position determining means for data search in the second embodiment of the present invention.

図7において、記憶媒体701には、JIS−X−0605規格にもとづくFAT型ファイルシステムにしたがって、ディレクトリとファイルが記録されている。ファイル列挙手段702は記憶媒体701に記録されているファイルを、ディレクトリを再帰的に検索することにより列挙する。ファイルID割り当て手段703はファイル列挙手段702が発見したファイルにユニークなIDを割り当てる。その割り当て方法はファイル列挙手段が発見した順番でIDを割り当てる、すなわちはじめに発見したファイルにはID=0を割り当て、その次に発見したファイルにはID=1を割り当てる、というものである。テーブル格納位置決定手段704は、順次供給されるファイルエントリアドレス、当該ファイルエントリを格納するディレクトリ領域の先頭アドレス、およびIDの組を、バッファメモリ705に用意されたテーブルのどの要素に格納するかを決定する。ここでバッファメモリ705には、テーブルを長さ8まで記憶できるとする。   In FIG. 7, a storage medium 701 records directories and files in accordance with a FAT file system based on the JIS-X-0605 standard. The file listing unit 702 lists the files recorded on the storage medium 701 by recursively searching the directory. The file ID assigning unit 703 assigns a unique ID to the file found by the file listing unit 702. The assigning method assigns IDs in the order in which the file enumeration means finds them, that is, assigns ID = 0 to the first found file and assigns ID = 1 to the next found file. The table storage position determination unit 704 determines which element of the table prepared in the buffer memory 705 stores the set of the file entry address that is sequentially supplied, the head address of the directory area that stores the file entry, and the ID. decide. Here, it is assumed that the buffer memory 705 can store a table up to a length of 8.

図8は本実施例における記憶媒体701に記録されているディレクトリ、ファイルを示し、また各ファイルに付与されるIDも示す。ここで、ディレクトリを再帰的に検索したときのファイルのならびにしたがって、すなわちファイル列挙手段702が各ファイルを発見する順番で、各ファイルにIDを付与している。また、ルートディレクトリ領域801はアドレス0から始まっているとし、"/ZZZ/"ディレクトリ領域802はアドレ00001000(16進数)より始まっているとする。   FIG. 8 shows directories and files recorded on the storage medium 701 in this embodiment, and also shows IDs assigned to the respective files. Here, an ID is assigned to each file in the order of the files when the directory is recursively searched, that is, in the order in which the file enumeration means 702 finds each file. Further, it is assumed that the root directory area 801 starts from address 0, and the “/ ZZZ /” directory area 802 starts from address 00001000 (hexadecimal number).

図9は、図8に示すファイルすべてを列挙したときに、バッファメモリ705に生成されるテーブルを示す。テーブルの生成手順は本発明の第1の実施例にて説明したものと同じものを採用する。第1の実施例との相違点は、第1の実施例ではファイルパスをテーブルに格納していたが、第2の実施例ではファイルエントリアドレスとそのファイルエントリを格納するディレクトリ領域の先頭アドレスをテーブルに格納している点である。なお、JIS−X−0605規格では1エントリあたり32バイト使用することより、図9のファイルエントリアドレスを決定した。   FIG. 9 shows a table generated in the buffer memory 705 when all the files shown in FIG. 8 are listed. The table generation procedure is the same as that described in the first embodiment of the present invention. The difference from the first embodiment is that the file path is stored in the table in the first embodiment, but in the second embodiment, the file entry address and the head address of the directory area storing the file entry are changed. It is a point stored in a table. In the JIS-X-0605 standard, the file entry address in FIG. 9 is determined by using 32 bytes per entry.

ここで図9に示すテーブルを用いてID=250のファイルを検索する手順を説明する。第1の実施例と同様に、まずIDが250より小さいもののうち、最も250に近い要素をテーブルから検索する。これに該当するのはID=224の要素であるので、ID=224が示すファイルのエントリアドレス、すなわち000019A0(16進数)を検索開始位置としてID=250のファイルを検索する。   Here, a procedure for searching for a file with ID = 250 using the table shown in FIG. 9 will be described. As in the first embodiment, first, among the elements whose ID is smaller than 250, the closest element to 250 is searched from the table. Since this corresponds to the element with ID = 224, the file with ID = 250 is searched using the entry address of the file indicated by ID = 224, that is, 000019A0 (hexadecimal number) as the search start position.

検索中、ファイルが見つかるごとにIDを1加算し、ID=250となった時点で見つかるファイルが目的のファイルであるが、ID=249のファイルで現在のディレクトリの終端に達する。よって親ディレクトリへ移動する。ここで親ディレクトリ領域がどこにあるかを調査する必要があるが、JIS−X−0605規格にもとづくFAT型ファイルシステムではディレクトリ領域の先頭付近にそのディレクトリの親ディレクトリ領域のアドレスを格納するエントリ804が存在する。また、テーブルには現在のディレクトリ領域802の先頭アドレスが格納されている。これらにより親ディレクトリ領域801の先頭に移動することができる。   During the search, ID is incremented by 1 every time a file is found, and the file found when ID = 250 is the target file, but the end of the current directory is reached with the file with ID = 249. So move to the parent directory. Here, it is necessary to investigate where the parent directory area is. However, in the FAT file system based on the JIS-X-0605 standard, an entry 804 for storing the address of the parent directory area of the directory is provided near the head of the directory area. Exists. In addition, the head address of the current directory area 802 is stored in the table. By these, it is possible to move to the head of the parent directory area 801.

ただし、検索を続行するためには親ディレクトリ領域801の先頭に移動するのではなく、親ディレクトリ領域のうち現在のディレクトリのエントリが記録されている位置803に移動する必要がある。ここで現在のディレクトリのエントリが記録されている位置803も、ディレクトリ領域802の先頭アドレスより判明する。すなわち、親ディレクトリ領域に記録されているディレクトリエントリのうち、ディレクトリ領域802を使用しているものを探せばよい。   However, in order to continue the search, it is necessary not to move to the top of the parent directory area 801 but to move to the position 803 where the entry of the current directory is recorded in the parent directory area. Here, the position 803 where the current directory entry is recorded is also determined from the head address of the directory area 802. That is, the directory entry recorded in the parent directory area may be searched for using the directory area 802.

移動が完了すれば、検索を再開する。ここで現在のIDは249であるため、検索再開後、はじめに見つかるファイルがID=250のファイルである。これに該当するのは"/50.JPG"である。   When the move is complete, the search is resumed. Here, since the current ID is 249, the first file found after the search is resumed is the file with ID = 250. This is "/50.JPG".

このようにテーブルにファイルエントリアドレスおよびそのファイルエントリを格納するディレクトリ領域の先頭アドレスを格納することにより、テーブルに格納されているファイルを検索開始位置としてディレクトリを再帰的に検索でき、またファイルパスを格納する方法に比べて、テーブルサイズを節約することができる。   By storing the file entry address and the head address of the directory area that stores the file entry in the table in this way, the directory can be recursively searched using the file stored in the table as the search start position, and the file path can be changed. Compared with the storing method, the table size can be saved.

図10は、本発明の第3の実施例におけるデータ検索のためのテーブル格納位置決定手段のシステム構成を示す。   FIG. 10 shows the system configuration of the table storage position determining means for data search in the third embodiment of the present invention.

図10において、撮像手段1001はエンコード手段1002に順次、撮影映像が供給し、エンコード手段1002は順次供給される撮影映像をMPEG形式のストリームデータにエンコードする。ここでエンコードデータのうちストリームデータ本体は記憶媒体書き込み手段1003により記憶媒体1004に記録され、各GOPのアドレスはGOP番号割り当て手段1005に供給される。GOP番号割り当て手段1005は順次供給されるGOPアドレスに対して、0番から順に番号を割り当てていき、GOPアドレスとGOP番号の組をテーブル格納位置決定手段1006に対して、順次供給する。テーブル格納位置決定手段1006は、順次供給されるGOPアドレスとGOP番号の組をバッファメモリ1007に記憶させる。ここでバッファメモリ1007は、GOPアドレスとGOP番号の組を8個まで格納できるテーブルを記憶できるとする。   In FIG. 10, the imaging unit 1001 sequentially supplies captured video to the encoding unit 1002, and the encoding unit 1002 encodes the sequentially supplied captured video into MPEG format stream data. Here, the stream data body of the encoded data is recorded on the storage medium 1004 by the storage medium writing means 1003, and the address of each GOP is supplied to the GOP number assigning means 1005. The GOP number assigning unit 1005 sequentially assigns numbers to the GOP addresses that are sequentially supplied from the 0th order, and sequentially supplies pairs of GOP addresses and GOP numbers to the table storage position determining unit 1006. The table storage position determination unit 1006 stores a set of sequentially supplied GOP addresses and GOP numbers in the buffer memory 1007. Here, it is assumed that the buffer memory 1007 can store a table that can store up to eight sets of GOP addresses and GOP numbers.

図11は、テーブル格納位置決定手段にGOP番号0〜7のGOPアドレスが供給されたときのテーブルを示す。ここでGOPアドレスをストリームの先頭から当該GOPまでのオフセットバイト数で表現する。また、バッファメモリ1007はGOP番号とGOPアドレスの組を8個まで格納できるため、供給されたGOP番号およびGOPアドレスはすべてテーブルに格納されている。   FIG. 11 shows a table when the GOP addresses with GOP numbers 0 to 7 are supplied to the table storage position determining means. Here, the GOP address is expressed by the number of offset bytes from the beginning of the stream to the GOP. Further, since the buffer memory 1007 can store up to eight sets of GOP numbers and GOP addresses, all the supplied GOP numbers and GOP addresses are stored in a table.

図12は図11の状態に加えてGOP番号=8〜15のGOPアドレスが供給されたときのテーブルの内容を示す。図11のテーブルはバッファメモリ1007を使い切っているため、新たに供給されるGOPアドレスをそのまま格納できないので、テーブル生成動作を以下の通り変更する。すなわちテーブルの既存要素(GOP番号=0〜7)のうちGOP番号が2の倍数でないものを、新たに供給されるGOPアドレス(GOP番号=8〜15)のうちGOP番号が2の倍数であるもので、上書きする。これにより図12のテーブルが生成される。   FIG. 12 shows the contents of the table when GOP addresses with GOP numbers = 8 to 15 are supplied in addition to the state of FIG. Since the table in FIG. 11 uses up the buffer memory 1007, the newly supplied GOP address cannot be stored as it is, so the table generation operation is changed as follows. That is, the existing elements (GOP number = 0 to 7) of the table whose GOP number is not a multiple of 2 and the GOP number of the newly supplied GOP address (GOP number = 8 to 15) is a multiple of 2. Overwrite with things. Thereby, the table of FIG. 12 is generated.

図13は図12の状態に加えてGOP番号=16〜31のGOPアドレスが供給されたときのテーブルの内容を示す。図12のテーブルの要素のうちGOP番号が2の倍数でないものは存在しないため、新たに供給されるGOPアドレスをテーブルに格納できない。そこでテーブルの既存要素のうちGOP番号が4の倍数でないものを、新たに供給されるGOPアドレスのうちGOP番号が4の倍数であるもので上書きする、ようにテーブル生成動作を変更する。これにより図13のテーブルが生成される。   FIG. 13 shows the contents of the table when GOP addresses with GOP numbers = 16 to 31 are supplied in addition to the state of FIG. Since there is no element in the table of FIG. 12 whose GOP number is not a multiple of 2, a newly supplied GOP address cannot be stored in the table. Therefore, the table generation operation is changed such that existing elements of the table whose GOP number is not a multiple of 4 are overwritten with newly supplied GOP addresses whose GOP number is a multiple of 4. Thereby, the table of FIG. 13 is generated.

図14は、図13の状態から同様の操作、すなわちテーブルの既存要素のうちGOP番号がNの倍数でないものを、新たに供給されるGOPアドレスのうちGOP番号がNの倍数であるもので上書きし、このときテーブルの既存要素のうちGOP番号がNの倍数でないものが存在しなければNを2倍すること、を繰り返してGOP番号999までのGOPアドレスが供給されたときのテーブルの内容を示す。   FIG. 14 overwrites the same operation from the state of FIG. 13, that is, the existing element of the table whose GOP number is not a multiple of N with the newly supplied GOP address whose GOP number is a multiple of N. At this time, if there are no existing elements in the table whose GOP number is not a multiple of N, N is doubled, and the contents of the table when the GOP addresses up to GOP number 999 are supplied are shown. Show.

以上のように、本実施例3においては、テーブルの既存要素のうちGOP番号がNの倍数でないものを、新たに供給されるGOPアドレスのうちGOP番号がNの倍数であるもので上書きし、このときテーブルの既存要素のうちGOP番号がNの倍数でないものが存在しなければNを2倍する、ことでテーブル生成を行うことにより、GOPアドレスがいくつ供給されるかを事前に知ることなく、最適な格納間隔に近い間隔でGOPアドレスを格納するテーブルを得ることができる。   As described above, in the third embodiment, the existing elements of the table are overwritten with the GOP number that is not a multiple of N among the newly supplied GOP addresses, and the GOP number is a multiple of N. At this time, if there is no GOP number that is not a multiple of N among the existing elements of the table, N is doubled so that the number of GOP addresses supplied is not known in advance by performing table generation. A table for storing GOP addresses at intervals close to the optimal storage interval can be obtained.

なお、本実施例3で示したテーブルを用いて、MPEG形式の動画ストリームの任意地点のフレームを検索する手順については、特許文献3により公知であり、また本発明の主眼ではないため、説明を省略する。   Note that the procedure for searching for a frame at an arbitrary point in an MPEG video stream using the table shown in the third embodiment is known from Patent Document 3 and is not the main point of the present invention. Omitted.

本発明にかかるデータ検索のためのテーブル格納位置決定手段は、検索対象データ郡の全長を事前に調べることなく最適格納間隔に近い間隔で、データ位置を格納するテーブルを生成する効果を有し、記憶媒体内の各ファイルをIDで識別するシステム、圧縮動画の任意地点のフレームを検索するシステム等に有用である。   The table storage position determination means for data search according to the present invention has the effect of generating a table for storing data positions at intervals close to the optimal storage interval without examining the total length of the search target data group in advance, This is useful for a system for identifying each file in a storage medium by ID, a system for searching a frame at an arbitrary point of a compressed moving image, and the like.

本発明の実施例1におけるテーブル格納位置決定手段のシステム構成図The system block diagram of the table storage position determination means in Example 1 of this invention 本発明の実施例1におけるテーブル格納位置決定手段の記憶媒体のファイルツリー図The file tree figure of the storage medium of the table storage position determination means in Example 1 of this invention 本発明の実施例1におけるテーブル格納位置決定手段のID=7までのファイルを格納するテーブル図The table figure which stores the file to ID = 7 of the table storage position determination means in Example 1 of this invention. 本発明の実施例1におけるテーブル格納位置決定手段のID=15までのファイルを格納するテーブル図The table figure which stores the file to ID = 15 of the table storage position determination means in Example 1 of this invention. 本発明の実施例1におけるテーブル格納位置決定手段のID=31までのファイルを格納するテーブル図The table figure which stores the file to ID = 31 of the table storage position determination means in Example 1 of this invention. 本発明の実施例1におけるテーブル格納位置決定手段のファイルすべてを格納するテーブル図The table figure which stores all the files of the table storage position determination means in Example 1 of this invention 本発明の実施例2におけるテーブル格納位置決定手段のシステム構成図The system block diagram of the table storage position determination means in Example 2 of this invention 本発明の実施例2におけるテーブル格納位置決定手段の記憶媒体のファイルツリー図FIG. 7 is a file tree diagram of a storage medium of a table storage position determination unit in Embodiment 2 of the present invention. 本発明の実施例2におけるテーブル格納位置決定手段のファイルすべてを格納するテーブル図The table figure which stores all the files of the table storage position determination means in Example 2 of this invention 本発明の実施例3におけるテーブル格納位置決定手段のシステム構成図The system block diagram of the table storage position determination means in Example 3 of this invention 本発明の実施例3におけるテーブル格納位置決定手段のGOP番号7までのGOPアドレスを格納するテーブル図The table figure which stores the GOP address to GOP number 7 of the table storage position determination means in Example 3 of this invention. 本発明の実施例3におけるテーブル格納位置決定手段のGOP番号15までのGOPアドレスを格納するテーブル図The table figure which stores the GOP address to GOP number 15 of the table storage position determination means in Example 3 of this invention. 本発明の実施例3におけるテーブル格納位置決定手段のGOP番号31までのGOPアドレスを格納するテーブル図The table figure which stores the GOP address to GOP number 31 of the table storage position determination means in Example 3 of this invention. 本発明の実施例3におけるテーブル格納位置決定手段のGOP番号999までのGOPアドレスを格納するテーブル図The table figure which stores the GOP address to GOP number 999 of the table storage position determination means in Example 3 of this invention.

符号の説明Explanation of symbols

101 実施例1における記憶媒体
102 実施例1におけるファイル列挙手段
103 実施例1におけるファイルID割り当て手段
104 実施例1におけるテーブル格納位置決定手段
105 実施例1におけるバッファメモリ
201 実施例1におけるルートディレクトリ領域
202 実施例2におけるID=224のファイルを格納するディレクトリのエントリ
701 実施例2における記憶媒体
702 実施例2におけるファイル列挙手段
703 実施例2におけるファイルID割り当て手段
704 実施例2におけるテーブル格納位置決定手段
705 実施例2におけるバッファメモリ
801 実施例2におけるルートディレクトリ領域
802 実施例2におけるID=224のファイルを格納するディレクトリ領域
803 実施例2におけるID=224のファイルを格納するディレクトリのエントリ
804 実施例2におけるID=224のファイルを格納するディレクトリの親ディレクトリ領域のアドレスを格納するエントリ
1001 実施例3における撮像手段
1002 実施例3におけるエンコード手段
1003 実施例3における記憶媒体書き込み手段
1004 実施例3における記憶媒体
1005 実施例3におけるGOP番号割り当て手段
1006 実施例3におけるテーブル格納位置決定手段
1007 実施例3におけるバッファメモリ
DESCRIPTION OF SYMBOLS 101 Storage medium in Example 1 102 File enumeration means in Example 1 103 File ID allocation means in Example 1 104 Table storage position determination means in Example 1 105 Buffer memory in Example 1 201 Root directory area in Example 1 202 Directory entry for storing the file of ID = 224 in the second embodiment 701 Storage medium in the second embodiment 702 File listing means in the second embodiment 703 File ID assigning means in the second embodiment 704 Table storage location determining means in the second embodiment 705 Buffer memory in the second embodiment 801 Root directory area in the second embodiment 802 Directory area for storing the file of ID = 224 in the second embodiment 803 In the second embodiment Entry of directory storing file with ID = 224 804 Entry for storing address of parent directory area of directory storing file with ID = 224 in embodiment 2 1001 Imaging means in embodiment 3 1002 Encoding means in embodiment 3 1003 Storage medium writing means in embodiment 3 1004 Storage medium in embodiment 3 1005 GOP number assigning means in embodiment 3 1006 Table storage position determining means in embodiment 3 1007 Buffer memory in embodiment 3

Claims (9)

記録媒体上のデータ位置に対しIDの付与を行うID割り当て手段と、
順次供給されるデータ順に、前記データ位置と、前記IDとを、テーブルとしてバッファメモリに格納するテーブル格納位置決定手段を有し、
前記テーブル格納位置決定手段はテーブルへの格納が一巡した以降、サンプリング間隔Nと、新規に格納する前記IDの値により、前記テーブルに格納する位置を決定することを特徴とするテーブル生成方法。
ID assigning means for assigning ID to the data position on the recording medium;
Table storage position determining means for storing the data position and the ID as a table in a buffer memory in the order of sequentially supplied data;
The table storage position determining means determines a position to be stored in the table based on a sampling interval N and a value of the ID to be newly stored after the storage in the table is completed.
前記サンプリング間隔Nは1から始まり、前記テーブルへの格納が一巡する毎に、サンプリング間隔Nを2倍にすることを特徴とする請求項1記載のテーブル生成方法。 2. The table generation method according to claim 1, wherein the sampling interval N starts from 1 and the sampling interval N is doubled every time storage in the table is completed. 前記テーブル格納位置決定手段は、新規に割り当てられた前記IDが、前記サンプリング間隔Nの倍数の場合には、すでに前記テーブルに格納されている前記サンプリング間隔Nの倍数ではないID値のテーブルに上書きし、新規に割り当てられた前記IDが、前記サンプリング間隔Nの倍数でない場合には、前記テーブルに格納しないことを特徴とする、請求項1記載のテーブル生成方法。 When the newly assigned ID is a multiple of the sampling interval N, the table storage position determination means overwrites a table of ID values that are not already a multiple of the sampling interval N and are already stored in the table. 2. The table generation method according to claim 1, wherein if the newly assigned ID is not a multiple of the sampling interval N, the ID is not stored in the table. 前記データとはシステムに装着された記憶媒体内のファイルであり、
前記IDとは、ディレクトリを再帰的に検索して前記ファイルにたどり着くまでに存在するほかのファイルの数であることを特徴とする請求項1記載のテーブル生成方法。
The data is a file in a storage medium attached to the system,
2. The table generation method according to claim 1, wherein the ID is the number of other files existing until a directory is recursively searched to reach the file.
前記データとはシステムに供給される動画または音声ストリームの1サンプルであり、
前記IDとはストリームの先頭から当該サンプルまでの経過時間であることを特徴とする請求項1記載のテーブル生成方法。
The data is a sample of a video or audio stream supplied to the system,
The table generation method according to claim 1, wherein the ID is an elapsed time from the head of the stream to the sample.
記憶媒体内のファイルの位置をファイルパスで表現して前記テーブルに格納することを特徴とする請求項4に記載のテーブル生成方法。 5. The table generation method according to claim 4, wherein the position of the file in the storage medium is expressed in a file path and stored in the table. 記憶媒体内のファイルの位置をファイルエントリのアドレスと当該ファイルを格納するディレクトリ領域の先頭アドレスで表現してテーブルに格納することを特徴とする請求項4に記載のテーブル生成方法。 5. The table generation method according to claim 4, wherein the position of the file in the storage medium is stored in the table by representing the address of the file entry and the head address of the directory area in which the file is stored. 前記データとは動画像符号化方式の国際標準であるMPEGにより圧縮されたMPEGビデオストリームのGOPであり、
前記IDとはストリームの先頭から当該GOPまでの区間に存在するGOPの数であることを特徴とする請求項5に記載のテーブル生成方法。
The data is a GOP of an MPEG video stream compressed by MPEG, which is an international standard for moving picture coding.
6. The table generation method according to claim 5, wherein the ID is the number of GOPs existing in a section from the head of the stream to the GOP.
記憶媒体内のファイルはJIS−X−0605規格にもとづくFAT型ファイルシステムにより管理されていることを特徴とする請求項7に記載のテーブル生成方法。 8. The table generation method according to claim 7, wherein files in the storage medium are managed by a FAT type file system based on the JIS-X-0605 standard.
JP2006030801A 2006-02-08 2006-02-08 Table generation method for data retrieval Pending JP2007213198A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP2006030801A JP2007213198A (en) 2006-02-08 2006-02-08 Table generation method for data retrieval

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP2006030801A JP2007213198A (en) 2006-02-08 2006-02-08 Table generation method for data retrieval

Publications (1)

Publication Number Publication Date
JP2007213198A true JP2007213198A (en) 2007-08-23

Family

ID=38491593

Family Applications (1)

Application Number Title Priority Date Filing Date
JP2006030801A Pending JP2007213198A (en) 2006-02-08 2006-02-08 Table generation method for data retrieval

Country Status (1)

Country Link
JP (1) JP2007213198A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2009288924A (en) * 2008-05-28 2009-12-10 Nec Electronics Corp File access system
JP2011040007A (en) * 2009-08-18 2011-02-24 Canon Inc File management device and control method thereof

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2009288924A (en) * 2008-05-28 2009-12-10 Nec Electronics Corp File access system
JP2011040007A (en) * 2009-08-18 2011-02-24 Canon Inc File management device and control method thereof

Similar Documents

Publication Publication Date Title
US8265394B2 (en) Multi-image file editing apparatus and multi-image file editing method
KR100643050B1 (en) Image recording/reproducing device and method, disk, and image reproducing device
BRPI0517842B1 (en) VIDEO DATA STORAGE METHOD AND APPARATUS FOR AN INSPECTION SYSTEM
JP5135733B2 (en) Information recording apparatus, information recording method, and computer program
WO2004086760A1 (en) Data processing apparatus
KR102135347B1 (en) Digital video recorder and operation method thereof
JP2007213198A (en) Table generation method for data retrieval
JP6736726B2 (en) Method and apparatus for constructing and displaying an integrated image file in which image streams of different image quality are continuously recorded
JP2008047163A (en) Information processor, information processing method, and computer program
TWI463873B (en) Image storage device and image recording apparatus
JP2010049788A (en) Apparatus and record carrier for, and method for recording sequence of video data signal
JP4124593B2 (en) Information recording apparatus and method
JP3876892B2 (en) Video recording device and video editing device
JP2006268219A (en) Digital recording method, and digital recording device
JP2004363825A (en) Recording and reproducing device, recording and reproducing method, and recording medium and program therefor
US9456191B2 (en) Reproduction apparatus and reproduction method
JP2007265010A (en) File reproduction apparatus, file reproduction method, and program
JP2006325082A5 (en)
JP2005286366A (en) Method and apparatus for dividing / merging files
JP4693735B2 (en) Still image file recording and editing device
JP2005352898A (en) Information recording apparatus and control method thereof
JP2006279147A5 (en)
JP2008148073A (en) Data transfer device and data transfer system
JP2010093452A (en) Video server, signal conversion circuit and signal converting method
JP2006101229A (en) Video reproducing apparatus