Skip to content

Commit

Permalink
add youku_demux.{h/cpp}
Browse files Browse the repository at this point in the history
Signed-off-by: Jack <[email protected]>
  • Loading branch information
Jackarain committed Mar 15, 2013
1 parent 513182d commit 5947e54
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 0 deletions.
2 changes: 2 additions & 0 deletions demux/demux.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,14 @@
<ItemGroup>
<ClCompile Include="demux.cpp" />
<ClCompile Include="generic_demux.cpp" />
<ClCompile Include="youku_demux.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="demux.h" />
<ClInclude Include="demuxer.h" />
<ClInclude Include="generic_demux.h" />
<ClInclude Include="internal.h" />
<ClInclude Include="youku_demux.h" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\libav\libav.vcxproj">
Expand Down
6 changes: 6 additions & 0 deletions demux/demux.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
<ClCompile Include="generic_demux.cpp">
<Filter>source</Filter>
</ClCompile>
<ClCompile Include="youku_demux.cpp">
<Filter>source</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="demux.h">
Expand All @@ -31,5 +34,8 @@
<ClInclude Include="generic_demux.h">
<Filter>include</Filter>
</ClInclude>
<ClInclude Include="youku_demux.h">
<Filter>include</Filter>
</ClInclude>
</ItemGroup>
</Project>
13 changes: 13 additions & 0 deletions demux/youku_demux.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#include "internal.h"
#include "globals.h"
#include "youku_demux.h"


youku_demux::youku_demux(void)
{
}


youku_demux::~youku_demux(void)
{
}
24 changes: 24 additions & 0 deletions demux/youku_demux.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
//
// youku_demux.h
// ~~~~~~~~~~~~~
//
// Copyright (c) 2013 Jack ([email protected])
//

#ifndef __YOUKU_DEMUX_H__
#define __YOUKU_DEMUX_H__

#if defined(_MSC_VER) && (_MSC_VER >= 1020)
# pragma once
#endif

#include "demuxer.h"

class youku_demux : public demuxer
{
public:
youku_demux(void);
virtual ~youku_demux(void);
};

#endif // __YOUKU_DEMUX_H__

0 comments on commit 5947e54

Please sign in to comment.