mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
14 lines
No EOL
233 B
C++
14 lines
No EOL
233 B
C++
#pragma once
|
|
#include "MP4MetadataBase.h"
|
|
#include "nx/nxuri.h"
|
|
|
|
class MP4Metadata : public MP4MetadataBase
|
|
{
|
|
public:
|
|
MP4Metadata();
|
|
~MP4Metadata();
|
|
int Initialize(nx_uri_t filename);
|
|
|
|
private:
|
|
MP4FileHandle mp4_file;
|
|
}; |