Fix the comment in welsEncoderExt.h about the EncodeFrame return value

This was changed in 36d56b6638 in the public api, but the
internal implementation header was missed and left inconsistent.
This commit is contained in:
Martin Storsjö
2014-03-18 10:03:08 +02:00
parent fb1958ad13
commit 4c829a12e2

View File

@@ -74,7 +74,7 @@ class CWelsH264SVCEncoder : public ISVCEncoder {
virtual int EXTAPI Uninitialize();
/*
* return: EVideoFrameType [IDR: videoFrameTypeIDR; P: videoFrameTypeP; ERROR: videoFrameTypeInvalid]
* return: 0 - success; otherwise - failed;
*/
virtual int EXTAPI EncodeFrame (const SSourcePicture* kpSrcPic, SFrameBSInfo* pBsInfo);
virtual int EncodeFrameInternal (const SSourcePicture* kpSrcPic, SFrameBSInfo* pBsInfo);