* Automatic whitespace cleanup.

* media_decode_info member was never used.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@32015 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2009-07-31 13:04:14 +00:00
parent c6906c2832
commit 3ae83fe3c7
2 changed files with 33 additions and 33 deletions

View File

@ -60,7 +60,6 @@ static long profileCounter = 0;
AVCodecDecoder::AVCodecDecoder()
:
fHeader(),
fInfo(),
fInputFormat(),
fOutputVideoFormat(),
fFrame(0),
@ -625,6 +624,8 @@ AVCodecDecoder::_DecodeVideo(void* outBuffer, int64* outFrameCount,
if (len < 0) {
TRACE("[v] AVCodecDecoder: error in decoding frame %lld: %d\n",
fFrame, len);
// NOTE: An error from avcodec_decode_video() seems to be ignored
// in the ffplay sample code.
// return B_ERROR;
}

View File

@ -62,7 +62,6 @@ private:
media_header fHeader;
media_decode_info fInfo;
media_format fInputFormat;
media_raw_video_format fOutputVideoFormat;