From 2efae0227b9c19ac2a453324da881075a0f47011 Mon Sep 17 00:00:00 2001 From: MrDave Date: Tue, 23 Mar 2021 21:25:18 -0600 Subject: [PATCH] Change spacing in movie.hpp --- src/movie.hpp | 52 +++++++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/src/movie.hpp b/src/movie.hpp index 59135318..83c89fad 100644 --- a/src/movie.hpp +++ b/src/movie.hpp @@ -46,34 +46,34 @@ enum USER_CODEC { struct ctx_movie { - AVFormatContext *oc; - AVStream *strm_video; - AVStream *strm_audio; - AVCodecContext *ctx_codec; - AVCodec *codec; - AVPacket pkt; - AVFrame *picture; /* contains default image pointers */ - AVDictionary *opts; - struct ctx_netcam *netcam_data; - int width; - int height; + AVFormatContext *oc; + AVStream *strm_video; + AVStream *strm_audio; + AVCodecContext *ctx_codec; + AVCodec *codec; + AVPacket pkt; + AVFrame *picture; /* contains default image pointers */ + AVDictionary *opts; + struct ctx_netcam *netcam_data; + int width; + int height; enum TIMELAPSE_TYPE tlapse; - int fps; - int bps; - char filename[PATH_MAX]; - int quality; - const char *codec_name; - int64_t last_pts; - int64_t base_pts; - int test_mode; - int gop_cnt; - struct timespec start_time; - int high_resolution; - int motion_images; - int passthrough; + int fps; + int bps; + char filename[PATH_MAX]; + int quality; + const char *codec_name; + int64_t last_pts; + int64_t base_pts; + int test_mode; + int gop_cnt; + struct timespec start_time; + int high_resolution; + int motion_images; + int passthrough; enum USER_CODEC preferred_codec; - char *nal_info; - int nal_info_len; + char *nal_info; + int nal_info_len; };