driver/audiodec/ffmpegdec.cpp, driver/audiometadata.cpp: fix compile

Origin commit data
------------------
Branch: ni/coolstream
Commit: 38ca5c4f38
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-12-02 (Mon, 02 Dec 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2013-12-02 13:43:30 +04:00
parent 7f0c91d25d
commit a9344c2cec
2 changed files with 5 additions and 1 deletions

View File

@@ -27,6 +27,8 @@
#include <config.h> #include <config.h>
#endif #endif
#include <sys/stat.h>
#include <sys/types.h>
#include <cstdlib> #include <cstdlib>
#include <cstring> #include <cstring>
#include <errno.h> #include <errno.h>

View File

@@ -34,6 +34,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/ */
#include <unistd.h>
#include <driver/audiometadata.h> #include <driver/audiometadata.h>
// constructor // constructor
@@ -59,7 +60,8 @@ CAudioMetaData::CAudioMetaData( const CAudioMetaData& src )
hasInfoOrXingTag( src.hasInfoOrXingTag ), artist( src.artist ), hasInfoOrXingTag( src.hasInfoOrXingTag ), artist( src.artist ),
title( src.title ), album( src.album ), sc_station( src.sc_station ), title( src.title ), album( src.album ), sc_station( src.sc_station ),
date( src.date ), genre( src.genre ), track( src.track ),cover(src.cover), date( src.date ), genre( src.genre ), track( src.track ),cover(src.cover),
changed( src.changed ), cover_temporary(false) cover_temporary( false ),
changed( src.changed )
{ {
} }