2
0

clean up the VideoDemuxer class to make it follow the Google c++ style (#7)

Este cometimento está contido em:
Aryan Salmanpour
2023-09-15 14:19:14 -04:00
cometido por GitHub
ascendente 4ea67e279d
cometimento b05e69b953
3 ficheiros modificados com 66 adições e 66 eliminações
+2 -2
Ver ficheiro
@@ -28,7 +28,7 @@ THE SOFTWARE.
#include <sys/stat.h>
#include <libgen.h>
#include <filesystem>
#include "videoDemuxer.hpp"
#include "video_demuxer.hpp"
#include "rocdecode.h"
void ShowHelpAndExit(const char *option = NULL) {
@@ -103,7 +103,7 @@ int main(int argc, char **argv) {
do {
auto startTime = std::chrono::high_resolution_clock::now();
demuxer.demux(&pVideo, &nVideoBytes, &pts);
demuxer.Demux(&pVideo, &nVideoBytes, &pts);
//nFrameReturned = viddec.decode(pVideo, nVideoBytes, pts);
auto endTime = std::chrono::high_resolution_clock::now();
auto timePerFrame = std::chrono::duration<double, std::milli>(endTime - startTime).count();