mirror of
https://github.com/Motion-Project/motion.git
synced 2026-01-25 15:18:42 -05:00
avformat_network_init only needs to be called once on startup and once on shutdown. The functions aren't thread safe, and we can't fix that by protecting them with the 'global_lock' as other functions in ffmpeg that we call and that access the same data are not protected by the global_lock (and can't be protected by that lock). Fixes #194 - the particular issue we're seeing there is something like: thread 1: lock mutex thread 1: deinit network thread 1: init network thread 1: unlock mutex thread 2: lock mutex thread 2: deinit network thread 1: call into an ffmpeg operation thread 1: ffmpeg complains "init network" not called
109 lines
3.0 KiB
C
109 lines
3.0 KiB
C
#ifndef _INCLUDE_FFMPEG_H_
|
|
#define _INCLUDE_FFMPEG_H_
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <sys/time.h>
|
|
|
|
#include "config.h"
|
|
|
|
#ifdef HAVE_FFMPEG
|
|
|
|
#include <errno.h>
|
|
#include <libavformat/avformat.h>
|
|
#include <libavutil/imgutils.h>
|
|
#include <libavutil/mathematics.h>
|
|
|
|
#if (LIBAVFORMAT_VERSION_MAJOR >= 56)
|
|
|
|
#define MY_PIX_FMT_YUV420P AV_PIX_FMT_YUV420P
|
|
#define MY_PIX_FMT_YUVJ420P AV_PIX_FMT_YUVJ420P
|
|
#define MyPixelFormat AVPixelFormat
|
|
|
|
#else
|
|
|
|
#define MY_PIX_FMT_YUV420P PIX_FMT_YUV420P
|
|
#define MY_PIX_FMT_YUVJ420P PIX_FMT_YUVJ420P
|
|
#define MyPixelFormat PixelFormat
|
|
|
|
#endif
|
|
|
|
#endif /* HAVE_FFMPEG */
|
|
|
|
#define TIMELAPSE_NONE 0 /* No timelapse, regular processing */
|
|
#define TIMELAPSE_APPEND 1 /* Use append version of timelapse */
|
|
#define TIMELAPSE_NEW 2 /* Use create new file version of timelapse */
|
|
|
|
struct ffmpeg {
|
|
#ifdef HAVE_FFMPEG
|
|
AVFormatContext *oc;
|
|
AVStream *video_st;
|
|
AVCodecContext *c;
|
|
|
|
AVFrame *picture; /* contains default image pointers */
|
|
uint8_t *video_outbuf;
|
|
int video_outbuf_size;
|
|
|
|
void *udata; /* U & V planes for greyscale images */
|
|
int vbr; /* variable bitrate setting */
|
|
char codec[20]; /* codec name */
|
|
int tlapse;
|
|
int64_t last_pts;
|
|
struct timeval start_time;
|
|
#else
|
|
int dummy;
|
|
#endif
|
|
};
|
|
|
|
/* Initialize FFmpeg stuff. Needs to be called before ffmpeg_open. */
|
|
void ffmpeg_init(void);
|
|
/** Finalise ffmpeg; call only after all threads have finished */
|
|
void ffmpeg_finalise(void);
|
|
|
|
struct ffmpeg *ffmpeg_open(
|
|
const char *ffmpeg_video_codec,
|
|
char *filename,
|
|
unsigned char *y, /* YUV420 Y plane */
|
|
unsigned char *u, /* YUV420 U plane */
|
|
unsigned char *v, /* YUV420 V plane */
|
|
int width,
|
|
int height,
|
|
int rate, /* framerate, fps */
|
|
int bps, /* bitrate; bits per second */
|
|
int vbr, /* variable bitrate */
|
|
int tlapse
|
|
);
|
|
|
|
/* Puts the image pointed to by the picture member of struct ffmpeg. */
|
|
int ffmpeg_put_image(struct ffmpeg *);
|
|
|
|
/* Puts the image defined by u, y and v (YUV420 format). */
|
|
int ffmpeg_put_other_image(
|
|
struct ffmpeg *ffmpeg,
|
|
unsigned char *y,
|
|
unsigned char *u,
|
|
unsigned char *v
|
|
);
|
|
|
|
/* Closes the mpeg file. */
|
|
void ffmpeg_close(struct ffmpeg *);
|
|
|
|
/* Setup an avcodec log handler. */
|
|
void ffmpeg_avcodec_log(void *, int, const char *, va_list);
|
|
|
|
#ifdef HAVE_FFMPEG
|
|
AVFrame *my_frame_alloc(void);
|
|
void my_frame_free(AVFrame *frame);
|
|
int ffmpeg_put_frame(struct ffmpeg *, AVFrame *);
|
|
void ffmpeg_cleanups(struct ffmpeg *);
|
|
AVFrame *ffmpeg_prepare_frame(struct ffmpeg *, unsigned char *,
|
|
unsigned char *, unsigned char *);
|
|
int my_image_get_buffer_size(enum MyPixelFormat pix_fmt, int width, int height);
|
|
int my_image_copy_to_buffer(AVFrame *frame,uint8_t *buffer_ptr,enum MyPixelFormat pix_fmt,int width,int height,int dest_size);
|
|
int my_image_fill_arrays(AVFrame *frame,uint8_t *buffer_ptr,enum MyPixelFormat pix_fmt,int width,int height);
|
|
void my_packet_unref(AVPacket pkt);
|
|
|
|
#endif
|
|
|
|
#endif /* _INCLUDE_FFMPEG_H_ */
|