#include "NvUtils.h"
#include <fstream>
#include <iostream>
#include <linux/videodev2.h>
#include <malloc.h>
#include <sstream>
#include <string.h>
#include "video_encode.h"
Go to the source code of this file.
Defines | |
#define | TEST_ERROR(cond, str, label) |
#define | TEST_PARSE_ERROR(cond, label) |
#define | IS_DIGIT(c) (c >= '0' && c <= '9') |
Functions | |
int | main (int argc, char *argv[]) |
#define IS_DIGIT | ( | c | ) | (c >= '0' && c <= '9') |
Definition at line 48 of file video_encode_main.cpp.
#define TEST_ERROR | ( | cond, | |||
str, | |||||
label | ) |
Value:
if(cond) { \ cerr << str << endl; \ error = 1; \ goto label; }
Definition at line 39 of file video_encode_main.cpp.
#define TEST_PARSE_ERROR | ( | cond, | |||
label | ) |
Value:
if(cond) { \ cerr << "Error parsing runtime parameter changes string" << endl; \ goto label; }
Definition at line 44 of file video_encode_main.cpp.
int main | ( | int | argc, | |
char * | argv[] | |||
) |
Definition at line 295 of file video_encode_main.cpp.