mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-11-24 14:50:13 +01:00
15 lines
284 B
C++
15 lines
284 B
C++
#pragma once
|
|
#include "MP4MetadataBase.h"
|
|
#include "nx/nxuri.h"
|
|
#include "nx/nxfile.h"
|
|
|
|
class MP4MetadataFile : public MP4MetadataBase
|
|
{
|
|
public:
|
|
MP4MetadataFile();
|
|
~MP4MetadataFile();
|
|
int Initialize(nx_uri_t filename, nx_file_t file);
|
|
|
|
private:
|
|
MP4FileHandle mp4_file;
|
|
}; |