author | Wuzzy <Wuzzy2@mail.ru> |
Tue, 28 Aug 2018 06:04:02 +0200 | |
changeset 13716 | d5f12b1d180d |
parent 13542 | ecdf6ce2301e |
child 14950 | 00cf807b7faa |
permissions | -rw-r--r-- |
7542
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
1 |
/* |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
2 |
* Hedgewars, a free turn based strategy game |
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
7542
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
4 |
* |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
5 |
* This program is free software; you can redistribute it and/or modify |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
6 |
* it under the terms of the GNU General Public License as published by |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
7 |
* the Free Software Foundation; version 2 of the License |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
8 |
* |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
9 |
* This program is distributed in the hope that it will be useful, |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
12 |
* GNU General Public License for more details. |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
13 |
* |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
14 |
* You should have received a copy of the GNU General Public License |
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
15 |
* along with this program; if not, write to the Free Software |
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
7542
37ef1891efe2
Insert license in avwrapper.c
Stepan777 <stepik-777@mail.ru>
parents:
7376
diff
changeset
|
17 |
*/ |
7180 | 18 |
|
19 |
#include <stdlib.h> |
|
20 |
#include <stdio.h> |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
21 |
#include <stdint.h> |
7180 | 22 |
#include <string.h> |
23 |
#include <stdarg.h> |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
24 |
|
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
25 |
#include "libavcodec/avcodec.h" |
7180 | 26 |
#include "libavformat/avformat.h" |
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
27 |
#include "libavutil/avutil.h" |
8065 | 28 |
#include "libavutil/mathematics.h" |
7180 | 29 |
|
9203
bcc25cb9b122
and now also avwrapper can be shared/static, add visibility to its exported functions, drop (needed only when static)
koda
parents:
9080
diff
changeset
|
30 |
#if (defined _MSC_VER) |
bcc25cb9b122
and now also avwrapper can be shared/static, add visibility to its exported functions, drop (needed only when static)
koda
parents:
9080
diff
changeset
|
31 |
#define AVWRAP_DECL __declspec(dllexport) |
bcc25cb9b122
and now also avwrapper can be shared/static, add visibility to its exported functions, drop (needed only when static)
koda
parents:
9080
diff
changeset
|
32 |
#elif ((__GNUC__ >= 3) && (!__EMX__) && (!sun)) |
bcc25cb9b122
and now also avwrapper can be shared/static, add visibility to its exported functions, drop (needed only when static)
koda
parents:
9080
diff
changeset
|
33 |
#define AVWRAP_DECL __attribute__((visibility("default"))) |
bcc25cb9b122
and now also avwrapper can be shared/static, add visibility to its exported functions, drop (needed only when static)
koda
parents:
9080
diff
changeset
|
34 |
#else |
bcc25cb9b122
and now also avwrapper can be shared/static, add visibility to its exported functions, drop (needed only when static)
koda
parents:
9080
diff
changeset
|
35 |
#define AVWRAP_DECL |
bcc25cb9b122
and now also avwrapper can be shared/static, add visibility to its exported functions, drop (needed only when static)
koda
parents:
9080
diff
changeset
|
36 |
#endif |
bcc25cb9b122
and now also avwrapper can be shared/static, add visibility to its exported functions, drop (needed only when static)
koda
parents:
9080
diff
changeset
|
37 |
|
13542
ecdf6ce2301e
Fix warnings about unused params in C code
Wuzzy <Wuzzy2@mail.ru>
parents:
11812
diff
changeset
|
38 |
#define UNUSED(x) (void)(x) |
ecdf6ce2301e
Fix warnings about unused params in C code
Wuzzy <Wuzzy2@mail.ru>
parents:
11812
diff
changeset
|
39 |
|
7180 | 40 |
static AVFormatContext* g_pContainer; |
41 |
static AVOutputFormat* g_pFormat; |
|
42 |
static AVStream* g_pAStream; |
|
43 |
static AVStream* g_pVStream; |
|
44 |
static AVFrame* g_pAFrame; |
|
45 |
static AVFrame* g_pVFrame; |
|
46 |
static AVCodec* g_pACodec; |
|
47 |
static AVCodec* g_pVCodec; |
|
48 |
static AVCodecContext* g_pAudio; |
|
49 |
static AVCodecContext* g_pVideo; |
|
50 |
||
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
51 |
static int g_Width, g_Height; |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
52 |
static uint32_t g_Frequency, g_Channels; |
7376
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
53 |
static int g_VQuality; |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
54 |
static AVRational g_Framerate; |
7180 | 55 |
|
56 |
static FILE* g_pSoundFile; |
|
57 |
static int16_t* g_pSamples; |
|
58 |
static int g_NumSamples; |
|
59 |
||
60 |
||
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
61 |
// compatibility section |
7180 | 62 |
#if LIBAVCODEC_VERSION_MAJOR < 54 |
63 |
#define OUTBUFFER_SIZE 200000 |
|
64 |
static uint8_t g_OutBuffer[OUTBUFFER_SIZE]; |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
65 |
#define avcodec_open2(x, y, z) avcodec_open(x, y) |
7180 | 66 |
#endif |
67 |
||
11619 | 68 |
#if LIBAVCODEC_VERSION_MAJOR < 55 |
69 |
#define avcodec_default_get_buffer2(x, y ,z) avcodec_default_get_buffer(x, y) |
|
70 |
#endif |
|
71 |
||
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
72 |
#if LIBAVCODEC_VERSION_MAJOR < 56 |
11626 | 73 |
#if LIBAVCODEC_VERSION_MAJOR < 55 |
11634 | 74 |
#define av_frame_free av_freep |
11626 | 75 |
#else |
76 |
#define av_frame_free avcodec_free_frame |
|
77 |
#endif |
|
78 |
||
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
79 |
#define av_frame_alloc avcodec_alloc_frame |
11623 | 80 |
#define av_frame_unref avcodec_get_frame_defaults |
11368
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
81 |
#define av_packet_rescale_ts rescale_ts |
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
82 |
|
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
83 |
static void rescale_ts(AVPacket *pkt, AVRational ctb, AVRational stb) |
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
84 |
{ |
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
85 |
if (pkt->pts != AV_NOPTS_VALUE) |
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
86 |
pkt->pts = av_rescale_q(pkt->pts, ctb, stb); |
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
87 |
if (pkt->dts != AV_NOPTS_VALUE) |
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
88 |
pkt->dts = av_rescale_q(pkt->dts, ctb, stb); |
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
89 |
if (pkt->duration > 0) |
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
90 |
pkt->duration = av_rescale_q(pkt->duration, ctb, stb); |
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
91 |
} |
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
92 |
#endif |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
93 |
|
11406 | 94 |
#ifndef AV_CODEC_CAP_DELAY |
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
95 |
#define AV_CODEC_CAP_DELAY CODEC_CAP_DELAY |
11406 | 96 |
#endif |
97 |
#ifndef AV_CODEC_CAP_VARIABLE_FRAME_SIZE |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
98 |
#define AV_CODEC_CAP_VARIABLE_FRAME_SIZE CODEC_CAP_VARIABLE_FRAME_SIZE |
11406 | 99 |
#endif |
100 |
#ifndef AV_CODEC_FLAG_GLOBAL_HEADER |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
101 |
#define AV_CODEC_FLAG_GLOBAL_HEADER CODEC_FLAG_GLOBAL_HEADER |
11406 | 102 |
#endif |
103 |
#ifndef AV_CODEC_FLAG_QSCALE |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
104 |
#define AV_CODEC_FLAG_QSCALE CODEC_FLAG_QSCALE |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
105 |
#endif |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
106 |
|
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
107 |
#if LIBAVFORMAT_VERSION_MAJOR < 53 |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
108 |
#define AVIO_FLAG_WRITE AVIO_WRONLY |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
109 |
#endif |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
110 |
|
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
111 |
#if LIBAVFORMAT_VERSION_MAJOR < 54 |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
112 |
#define avformat_new_stream(x, y) av_new_stream(x, y->type == AVMEDIA_TYPE_AUDIO) |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
113 |
#endif |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
114 |
|
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
115 |
#if LIBAVUTIL_VERSION_MAJOR < 54 |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
116 |
#define AV_PIX_FMT_YUV420P PIX_FMT_YUV420P |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
117 |
#endif |
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
118 |
|
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
119 |
|
7180 | 120 |
// pointer to function from hwengine (uUtils.pas) |
121 |
static void (*AddFileLogRaw)(const char* pString); |
|
122 |
||
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
123 |
static int FatalError(const char* pFmt, ...) |
7180 | 124 |
{ |
8065 | 125 |
char Buffer[1024]; |
7180 | 126 |
va_list VaArgs; |
127 |
||
128 |
va_start(VaArgs, pFmt); |
|
129 |
vsnprintf(Buffer, 1024, pFmt, VaArgs); |
|
130 |
va_end(VaArgs); |
|
131 |
||
132 |
AddFileLogRaw("Error in av-wrapper: "); |
|
133 |
AddFileLogRaw(Buffer); |
|
134 |
AddFileLogRaw("\n"); |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
135 |
return(-1); |
7180 | 136 |
} |
137 |
||
138 |
// Function to be called from libav for logging. |
|
139 |
// Note: libav can call LogCallback from different threads |
|
140 |
// (there is mutex in AddFileLogRaw). |
|
141 |
static void LogCallback(void* p, int Level, const char* pFmt, va_list VaArgs) |
|
142 |
{ |
|
13542
ecdf6ce2301e
Fix warnings about unused params in C code
Wuzzy <Wuzzy2@mail.ru>
parents:
11812
diff
changeset
|
143 |
UNUSED(p); |
ecdf6ce2301e
Fix warnings about unused params in C code
Wuzzy <Wuzzy2@mail.ru>
parents:
11812
diff
changeset
|
144 |
UNUSED(Level); |
ecdf6ce2301e
Fix warnings about unused params in C code
Wuzzy <Wuzzy2@mail.ru>
parents:
11812
diff
changeset
|
145 |
|
8065 | 146 |
char Buffer[1024]; |
7180 | 147 |
|
148 |
vsnprintf(Buffer, 1024, pFmt, VaArgs); |
|
149 |
AddFileLogRaw(Buffer); |
|
150 |
} |
|
151 |
||
152 |
static void Log(const char* pFmt, ...) |
|
153 |
{ |
|
8065 | 154 |
char Buffer[1024]; |
7180 | 155 |
va_list VaArgs; |
156 |
||
157 |
va_start(VaArgs, pFmt); |
|
158 |
vsnprintf(Buffer, 1024, pFmt, VaArgs); |
|
159 |
va_end(VaArgs); |
|
160 |
||
161 |
AddFileLogRaw(Buffer); |
|
162 |
} |
|
163 |
||
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
164 |
static void AddAudioStream() |
7180 | 165 |
{ |
166 |
g_pAStream = avformat_new_stream(g_pContainer, g_pACodec); |
|
167 |
if(!g_pAStream) |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
168 |
{ |
7306
3cff5c769509
Here they come - thumbnails.
Stepan777 <stepik-777@mail.ru>
parents:
7282
diff
changeset
|
169 |
Log("Could not allocate audio stream\n"); |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
170 |
return; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
171 |
} |
7180 | 172 |
g_pAStream->id = 1; |
173 |
||
174 |
g_pAudio = g_pAStream->codec; |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
175 |
|
7180 | 176 |
avcodec_get_context_defaults3(g_pAudio, g_pACodec); |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
177 |
g_pAudio->codec_id = g_pACodec->id; |
7180 | 178 |
|
179 |
// put parameters |
|
180 |
g_pAudio->sample_fmt = AV_SAMPLE_FMT_S16; |
|
181 |
g_pAudio->sample_rate = g_Frequency; |
|
182 |
g_pAudio->channels = g_Channels; |
|
183 |
||
11367
846aa36f7cdc
videorec: Always initialize audio and video time bases
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11366
diff
changeset
|
184 |
// set time base as invers of sample rate |
846aa36f7cdc
videorec: Always initialize audio and video time bases
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11366
diff
changeset
|
185 |
g_pAudio->time_base.den = g_pAStream->time_base.den = g_Frequency; |
846aa36f7cdc
videorec: Always initialize audio and video time bases
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11366
diff
changeset
|
186 |
g_pAudio->time_base.num = g_pAStream->time_base.num = 1; |
846aa36f7cdc
videorec: Always initialize audio and video time bases
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11366
diff
changeset
|
187 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
188 |
// set quality |
7376
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
189 |
g_pAudio->bit_rate = 160000; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
190 |
|
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
191 |
// for codecs that support variable bitrate use it, it should be better |
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
192 |
g_pAudio->flags |= AV_CODEC_FLAG_QSCALE; |
7376
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
193 |
g_pAudio->global_quality = 1*FF_QP2LAMBDA; |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
194 |
|
7180 | 195 |
// some formats want stream headers to be separate |
196 |
if (g_pFormat->flags & AVFMT_GLOBALHEADER) |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
197 |
g_pAudio->flags |= AV_CODEC_FLAG_GLOBAL_HEADER; |
7180 | 198 |
|
199 |
// open it |
|
200 |
if (avcodec_open2(g_pAudio, g_pACodec, NULL) < 0) |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
201 |
{ |
7306
3cff5c769509
Here they come - thumbnails.
Stepan777 <stepik-777@mail.ru>
parents:
7282
diff
changeset
|
202 |
Log("Could not open audio codec %s\n", g_pACodec->long_name); |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
203 |
return; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
204 |
} |
7180 | 205 |
|
206 |
#if LIBAVCODEC_VERSION_MAJOR >= 54 |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
207 |
if (g_pACodec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE) |
7180 | 208 |
#else |
209 |
if (g_pAudio->frame_size == 0) |
|
210 |
#endif |
|
211 |
g_NumSamples = 4096; |
|
212 |
else |
|
213 |
g_NumSamples = g_pAudio->frame_size; |
|
214 |
g_pSamples = (int16_t*)av_malloc(g_NumSamples*g_Channels*sizeof(int16_t)); |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
215 |
g_pAFrame = av_frame_alloc(); |
7180 | 216 |
if (!g_pAFrame) |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
217 |
{ |
7306
3cff5c769509
Here they come - thumbnails.
Stepan777 <stepik-777@mail.ru>
parents:
7282
diff
changeset
|
218 |
Log("Could not allocate frame\n"); |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
219 |
return; |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
220 |
} |
7180 | 221 |
} |
222 |
||
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
223 |
// returns non-zero if there is more sound, -1 in case of error |
7180 | 224 |
static int WriteAudioFrame() |
225 |
{ |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
226 |
if (!g_pAStream) |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
227 |
return 0; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
228 |
|
11300
f9fa0d6dc69f
Let initialization happen in the appropriate function
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11298
diff
changeset
|
229 |
AVPacket Packet; |
7180 | 230 |
av_init_packet(&Packet); |
11364
f830c080aa9d
videorec: Make sure the audio packet is considered empty
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11316
diff
changeset
|
231 |
Packet.data = NULL; |
f830c080aa9d
videorec: Make sure the audio packet is considered empty
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11316
diff
changeset
|
232 |
Packet.size = 0; |
7180 | 233 |
|
234 |
int NumSamples = fread(g_pSamples, 2*g_Channels, g_NumSamples, g_pSoundFile); |
|
235 |
||
8065 | 236 |
#if LIBAVCODEC_VERSION_MAJOR >= 53 |
7180 | 237 |
AVFrame* pFrame = NULL; |
238 |
if (NumSamples > 0) |
|
239 |
{ |
|
240 |
g_pAFrame->nb_samples = NumSamples; |
|
241 |
avcodec_fill_audio_frame(g_pAFrame, g_Channels, AV_SAMPLE_FMT_S16, |
|
242 |
(uint8_t*)g_pSamples, NumSamples*2*g_Channels, 1); |
|
243 |
pFrame = g_pAFrame; |
|
244 |
} |
|
245 |
// when NumSamples == 0 we still need to call encode_audio2 to flush |
|
246 |
int got_packet; |
|
247 |
if (avcodec_encode_audio2(g_pAudio, &Packet, pFrame, &got_packet) != 0) |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
248 |
return FatalError("avcodec_encode_audio2 failed"); |
7180 | 249 |
if (!got_packet) |
250 |
return 0; |
|
11368
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
251 |
|
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
252 |
av_packet_rescale_ts(&Packet, g_pAudio->time_base, g_pAStream->time_base); |
7180 | 253 |
#else |
254 |
if (NumSamples == 0) |
|
255 |
return 0; |
|
256 |
int BufferSize = OUTBUFFER_SIZE; |
|
257 |
if (g_pAudio->frame_size == 0) |
|
258 |
BufferSize = NumSamples*g_Channels*2; |
|
259 |
Packet.size = avcodec_encode_audio(g_pAudio, g_OutBuffer, BufferSize, g_pSamples); |
|
260 |
if (Packet.size == 0) |
|
261 |
return 1; |
|
262 |
if (g_pAudio->coded_frame && g_pAudio->coded_frame->pts != AV_NOPTS_VALUE) |
|
263 |
Packet.pts = av_rescale_q(g_pAudio->coded_frame->pts, g_pAudio->time_base, g_pAStream->time_base); |
|
264 |
Packet.flags |= AV_PKT_FLAG_KEY; |
|
265 |
Packet.data = g_OutBuffer; |
|
266 |
#endif |
|
267 |
||
268 |
// Write the compressed frame to the media file. |
|
269 |
Packet.stream_index = g_pAStream->index; |
|
8811 | 270 |
if (av_interleaved_write_frame(g_pContainer, &Packet) != 0) |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
271 |
return FatalError("Error while writing audio frame"); |
7180 | 272 |
return 1; |
273 |
} |
|
274 |
||
275 |
// add a video output stream |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
276 |
static int AddVideoStream() |
7180 | 277 |
{ |
278 |
g_pVStream = avformat_new_stream(g_pContainer, g_pVCodec); |
|
279 |
if (!g_pVStream) |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
280 |
return FatalError("Could not allocate video stream"); |
7180 | 281 |
|
282 |
g_pVideo = g_pVStream->codec; |
|
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
283 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
284 |
avcodec_get_context_defaults3(g_pVideo, g_pVCodec); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
285 |
g_pVideo->codec_id = g_pVCodec->id; |
7180 | 286 |
|
287 |
// put parameters |
|
288 |
// resolution must be a multiple of two |
|
7282
c65992e2d794
correctly fix odd dimensions (it was incorrectly fixed in previous commit)
Stepan777 <stepik-777@mail.ru>
parents:
7280
diff
changeset
|
289 |
g_pVideo->width = g_Width & ~1; // make even (dimensions should be even) |
c65992e2d794
correctly fix odd dimensions (it was incorrectly fixed in previous commit)
Stepan777 <stepik-777@mail.ru>
parents:
7280
diff
changeset
|
290 |
g_pVideo->height = g_Height & ~1; // make even |
7180 | 291 |
/* time base: this is the fundamental unit of time (in seconds) in terms |
292 |
of which frame timestamps are represented. for fixed-fps content, |
|
293 |
timebase should be 1/framerate and timestamp increments should be |
|
294 |
identically 1. */ |
|
11367
846aa36f7cdc
videorec: Always initialize audio and video time bases
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11366
diff
changeset
|
295 |
g_pVideo->time_base.den = g_pVStream->time_base.den = g_Framerate.num; |
846aa36f7cdc
videorec: Always initialize audio and video time bases
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11366
diff
changeset
|
296 |
g_pVideo->time_base.num = g_pVStream->time_base.num = g_Framerate.den; |
11370
7ab863821864
videorec: Drop a commented out option
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11369
diff
changeset
|
297 |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
298 |
g_pVideo->pix_fmt = AV_PIX_FMT_YUV420P; |
7180 | 299 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
300 |
// set quality |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
301 |
if (g_VQuality > 100) |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
302 |
g_pVideo->bit_rate = g_VQuality; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
303 |
else |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
304 |
{ |
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
305 |
g_pVideo->flags |= AV_CODEC_FLAG_QSCALE; |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
306 |
g_pVideo->global_quality = g_VQuality*FF_QP2LAMBDA; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
307 |
} |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
308 |
|
7180 | 309 |
// some formats want stream headers to be separate |
310 |
if (g_pFormat->flags & AVFMT_GLOBALHEADER) |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
311 |
g_pVideo->flags |= AV_CODEC_FLAG_GLOBAL_HEADER; |
7180 | 312 |
|
8065 | 313 |
#if LIBAVCODEC_VERSION_MAJOR < 53 |
7376
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
314 |
// for some versions of ffmpeg x264 options must be set explicitly |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
315 |
if (strcmp(g_pVCodec->name, "libx264") == 0) |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
316 |
{ |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
317 |
g_pVideo->coder_type = FF_CODER_TYPE_AC; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
318 |
g_pVideo->flags |= CODEC_FLAG_LOOP_FILTER; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
319 |
g_pVideo->crf = 23; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
320 |
g_pVideo->thread_count = 3; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
321 |
g_pVideo->me_cmp = FF_CMP_CHROMA; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
322 |
g_pVideo->partitions = X264_PART_I8X8 | X264_PART_I4X4 | X264_PART_P8X8 | X264_PART_B8X8; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
323 |
g_pVideo->me_method = ME_HEX; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
324 |
g_pVideo->me_subpel_quality = 7; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
325 |
g_pVideo->me_range = 16; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
326 |
g_pVideo->gop_size = 250; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
327 |
g_pVideo->keyint_min = 25; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
328 |
g_pVideo->scenechange_threshold = 40; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
329 |
g_pVideo->i_quant_factor = 0.71; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
330 |
g_pVideo->b_frame_strategy = 1; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
331 |
g_pVideo->qcompress = 0.6; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
332 |
g_pVideo->qmin = 10; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
333 |
g_pVideo->qmax = 51; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
334 |
g_pVideo->max_qdiff = 4; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
335 |
g_pVideo->max_b_frames = 3; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
336 |
g_pVideo->refs = 3; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
337 |
g_pVideo->directpred = 1; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
338 |
g_pVideo->trellis = 1; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
339 |
g_pVideo->flags2 = CODEC_FLAG2_BPYRAMID | CODEC_FLAG2_MIXED_REFS | CODEC_FLAG2_WPRED | CODEC_FLAG2_8X8DCT | CODEC_FLAG2_FASTPSKIP; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
340 |
g_pVideo->weighted_p_pred = 2; |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
341 |
} |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
342 |
#endif |
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
343 |
|
7180 | 344 |
// open the codec |
11316 | 345 |
if (avcodec_open2(g_pVideo, g_pVCodec, NULL) < 0) |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
346 |
return FatalError("Could not open video codec %s", g_pVCodec->long_name); |
7180 | 347 |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
348 |
g_pVFrame = av_frame_alloc(); |
7180 | 349 |
if (!g_pVFrame) |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
350 |
return FatalError("Could not allocate frame"); |
11617
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
351 |
av_frame_unref(g_pVFrame); |
7180 | 352 |
|
11366
dc17a495ee7f
videorec: Fully set frame properties
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11365
diff
changeset
|
353 |
g_pVFrame->width = g_Width; |
dc17a495ee7f
videorec: Fully set frame properties
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11365
diff
changeset
|
354 |
g_pVFrame->height = g_Height; |
dc17a495ee7f
videorec: Fully set frame properties
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11365
diff
changeset
|
355 |
g_pVFrame->format = AV_PIX_FMT_YUV420P; |
11617
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
356 |
|
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
357 |
return avcodec_default_get_buffer2(g_pVideo, g_pVFrame, 0); |
7180 | 358 |
} |
359 |
||
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
360 |
static int WriteFrame(AVFrame* pFrame) |
7180 | 361 |
{ |
362 |
double AudioTime, VideoTime; |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
363 |
int ret; |
7180 | 364 |
// write interleaved audio frame |
365 |
if (g_pAStream) |
|
366 |
{ |
|
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
367 |
VideoTime = (double)g_pVFrame->pts * g_pVStream->time_base.num/g_pVStream->time_base.den; |
7180 | 368 |
do |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
369 |
{ |
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
370 |
AudioTime = (double)g_pAFrame->pts * g_pAStream->time_base.num/g_pAStream->time_base.den; |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
371 |
ret = WriteAudioFrame(); |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
372 |
} |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
373 |
while (AudioTime < VideoTime && ret); |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
374 |
if (ret < 0) |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
375 |
return ret; |
7180 | 376 |
} |
8811 | 377 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
378 |
if (!g_pVStream) |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
379 |
return 0; |
7180 | 380 |
|
381 |
AVPacket Packet; |
|
382 |
av_init_packet(&Packet); |
|
383 |
Packet.data = NULL; |
|
384 |
Packet.size = 0; |
|
385 |
||
386 |
g_pVFrame->pts++; |
|
11369
ce154ffb9a8b
videorec: Use future API for raw video encoding
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11368
diff
changeset
|
387 |
#if LIBAVCODEC_VERSION_MAJOR < 58 |
7180 | 388 |
if (g_pFormat->flags & AVFMT_RAWPICTURE) |
389 |
{ |
|
390 |
/* raw video case. The API will change slightly in the near |
|
391 |
future for that. */ |
|
392 |
Packet.flags |= AV_PKT_FLAG_KEY; |
|
393 |
Packet.stream_index = g_pVStream->index; |
|
394 |
Packet.data = (uint8_t*)pFrame; |
|
395 |
Packet.size = sizeof(AVPicture); |
|
396 |
||
397 |
if (av_interleaved_write_frame(g_pContainer, &Packet) != 0) |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
398 |
return FatalError("Error while writing video frame"); |
7180 | 399 |
return 0; |
400 |
} |
|
401 |
else |
|
11369
ce154ffb9a8b
videorec: Use future API for raw video encoding
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11368
diff
changeset
|
402 |
#endif |
7180 | 403 |
{ |
404 |
#if LIBAVCODEC_VERSION_MAJOR >= 54 |
|
405 |
int got_packet; |
|
406 |
if (avcodec_encode_video2(g_pVideo, &Packet, pFrame, &got_packet) < 0) |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
407 |
return FatalError("avcodec_encode_video2 failed"); |
7180 | 408 |
if (!got_packet) |
409 |
return 0; |
|
410 |
||
11368
82784d932577
videorec: Appropriately rescale timestamps and duration
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11367
diff
changeset
|
411 |
av_packet_rescale_ts(&Packet, g_pVideo->time_base, g_pVStream->time_base); |
8811 | 412 |
#else |
7180 | 413 |
Packet.size = avcodec_encode_video(g_pVideo, g_OutBuffer, OUTBUFFER_SIZE, pFrame); |
414 |
if (Packet.size < 0) |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
415 |
return FatalError("avcodec_encode_video failed"); |
7180 | 416 |
if (Packet.size == 0) |
417 |
return 0; |
|
418 |
||
419 |
if( g_pVideo->coded_frame->pts != AV_NOPTS_VALUE) |
|
420 |
Packet.pts = av_rescale_q(g_pVideo->coded_frame->pts, g_pVideo->time_base, g_pVStream->time_base); |
|
421 |
if( g_pVideo->coded_frame->key_frame ) |
|
422 |
Packet.flags |= AV_PKT_FLAG_KEY; |
|
423 |
Packet.data = g_OutBuffer; |
|
424 |
#endif |
|
425 |
// write the compressed frame in the media file |
|
426 |
Packet.stream_index = g_pVStream->index; |
|
427 |
if (av_interleaved_write_frame(g_pContainer, &Packet) != 0) |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
428 |
return FatalError("Error while writing video frame"); |
8811 | 429 |
|
7180 | 430 |
return 1; |
431 |
} |
|
432 |
} |
|
433 |
||
11617
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
434 |
AVWRAP_DECL int AVWrapper_WriteFrame(uint8_t *buf) |
7180 | 435 |
{ |
11617
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
436 |
int x, y, stride = g_Width * 4; |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
437 |
uint8_t *data[3]; |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
438 |
|
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
439 |
// copy pointers, prepare source |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
440 |
memcpy(data, g_pVFrame->data, sizeof(data)); |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
441 |
buf += (g_Height - 1) * stride; |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
442 |
|
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
443 |
// convert to YUV 4:2:0 |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
444 |
for (y = 0; y < g_Height; y++) { |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
445 |
for (x = 0; x < g_Width; x++) { |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
446 |
int r = buf[x * 4 + 0]; |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
447 |
int g = buf[x * 4 + 1]; |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
448 |
int b = buf[x * 4 + 2]; |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
449 |
|
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
450 |
int luma = (int)(0.299f * r + 0.587f * g + 0.114f * b); |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
451 |
data[0][x] = av_clip_uint8(luma); |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
452 |
|
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
453 |
if (!(x & 1) && !(y & 1)) { |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
454 |
int r = (buf[x * 4 + 0] + buf[(x + 1) * 4 + 0] + |
11812
93621207563b
avrec crash/math fix (sheepy here, committing koda's fix because I'm tired of having it lying around in my repo :P
koda
parents:
11634
diff
changeset
|
455 |
buf[x * 4 + 0 - stride] + buf[(x + 1) * 4 + 0 - stride]) / 4; |
11617
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
456 |
int g = (buf[x * 4 + 1] + buf[(x + 1) * 4 + 1] + |
11812
93621207563b
avrec crash/math fix (sheepy here, committing koda's fix because I'm tired of having it lying around in my repo :P
koda
parents:
11634
diff
changeset
|
457 |
buf[x * 4 + 1 - stride] + buf[(x + 1) * 4 + 1 - stride]) / 4; |
11617
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
458 |
int b = (buf[x * 4 + 2] + buf[(x + 1) * 4 + 2] + |
11812
93621207563b
avrec crash/math fix (sheepy here, committing koda's fix because I'm tired of having it lying around in my repo :P
koda
parents:
11634
diff
changeset
|
459 |
buf[x * 4 + 2 - stride] + buf[(x + 1) * 4 + 2 - stride]) / 4; |
11617
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
460 |
|
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
461 |
int cr = (int)(-0.14713f * r - 0.28886f * g + 0.436f * b); |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
462 |
int cb = (int)( 0.615f * r - 0.51499f * g - 0.10001f * b); |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
463 |
data[1][x / 2] = av_clip_uint8(128 + cr); |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
464 |
data[2][x / 2] = av_clip_uint8(128 + cb); |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
465 |
} |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
466 |
} |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
467 |
buf += -stride; |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
468 |
data[0] += g_pVFrame->linesize[0]; |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
469 |
if (y & 1) { |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
470 |
data[1] += g_pVFrame->linesize[1]; |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
471 |
data[2] += g_pVFrame->linesize[2]; |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
472 |
} |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
473 |
} |
b7d5d75469ee
Move pixel format conversion from uVideoRec to AVWrapper
koda
parents:
11548
diff
changeset
|
474 |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
475 |
return WriteFrame(g_pVFrame); |
7180 | 476 |
} |
477 |
||
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
478 |
AVWRAP_DECL int AVWrapper_Init( |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
479 |
void (*pAddFileLogRaw)(const char*), |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
480 |
const char* pFilename, |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
481 |
const char* pDesc, |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
482 |
const char* pSoundFile, |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
483 |
const char* pFormatName, |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
484 |
const char* pVCodecName, |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
485 |
const char* pACodecName, |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
486 |
int Width, int Height, |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
487 |
int FramerateNum, int FramerateDen, |
7376
48b79b3ca592
rework saving of camera positions so there is no need to know framerate during prerecording.
Stepan777 <stepik-777@mail.ru>
parents:
7359
diff
changeset
|
488 |
int VQuality) |
8811 | 489 |
{ |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
490 |
int ret; |
7180 | 491 |
AddFileLogRaw = pAddFileLogRaw; |
492 |
av_log_set_callback( &LogCallback ); |
|
493 |
||
7282
c65992e2d794
correctly fix odd dimensions (it was incorrectly fixed in previous commit)
Stepan777 <stepik-777@mail.ru>
parents:
7280
diff
changeset
|
494 |
g_Width = Width; |
c65992e2d794
correctly fix odd dimensions (it was incorrectly fixed in previous commit)
Stepan777 <stepik-777@mail.ru>
parents:
7280
diff
changeset
|
495 |
g_Height = Height; |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
496 |
g_Framerate.num = FramerateNum; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
497 |
g_Framerate.den = FramerateDen; |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
498 |
g_VQuality = VQuality; |
7180 | 499 |
|
500 |
// initialize libav and register all codecs and formats |
|
501 |
av_register_all(); |
|
502 |
||
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
503 |
// find format |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
504 |
g_pFormat = av_guess_format(pFormatName, NULL, NULL); |
7180 | 505 |
if (!g_pFormat) |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
506 |
return FatalError("Format \"%s\" was not found", pFormatName); |
7180 | 507 |
|
508 |
// allocate the output media context |
|
509 |
g_pContainer = avformat_alloc_context(); |
|
510 |
if (!g_pContainer) |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
511 |
return FatalError("Could not allocate output context"); |
7180 | 512 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
513 |
g_pContainer->oformat = g_pFormat; |
7180 | 514 |
|
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
515 |
// store description of file |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
516 |
av_dict_set(&g_pContainer->metadata, "comment", pDesc, 0); |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
517 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
518 |
// append extesnion to filename |
7235
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
519 |
char ext[16]; |
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
520 |
strncpy(ext, g_pFormat->extensions, 16); |
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
521 |
ext[15] = 0; |
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
522 |
ext[strcspn(ext,",")] = 0; |
baa69bd025d9
1. Implement new page in frontend with options for video recording.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
523 |
snprintf(g_pContainer->filename, sizeof(g_pContainer->filename), "%s.%s", pFilename, ext); |
7180 | 524 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
525 |
// find codecs |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
526 |
g_pVCodec = avcodec_find_encoder_by_name(pVCodecName); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
527 |
g_pACodec = avcodec_find_encoder_by_name(pACodecName); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
528 |
|
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
529 |
// add audio and video stream to container |
7180 | 530 |
g_pVStream = NULL; |
531 |
g_pAStream = NULL; |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
532 |
|
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
533 |
if (g_pVCodec) |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
534 |
{ |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
535 |
ret = AddVideoStream(); |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
536 |
if (ret < 0) |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
537 |
return ret; |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
538 |
} |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
539 |
else |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
540 |
Log("Video codec \"%s\" was not found; video will be ignored.\n", pVCodecName); |
7180 | 541 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
542 |
if (g_pACodec) |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
543 |
{ |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
544 |
g_pSoundFile = fopen(pSoundFile, "rb"); |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
545 |
if (g_pSoundFile) |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
546 |
{ |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
547 |
fread(&g_Frequency, 4, 1, g_pSoundFile); |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
548 |
fread(&g_Channels, 4, 1, g_pSoundFile); |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
549 |
AddAudioStream(); |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
550 |
} |
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
551 |
else |
7306
3cff5c769509
Here they come - thumbnails.
Stepan777 <stepik-777@mail.ru>
parents:
7282
diff
changeset
|
552 |
Log("Could not open %s\n", pSoundFile); |
7280
fd707afbc3a2
pagevideos is now much better that before:
Stepan777 <stepik-777@mail.ru>
parents:
7235
diff
changeset
|
553 |
} |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
554 |
else |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
555 |
Log("Audio codec \"%s\" was not found; audio will be ignored.\n", pACodecName); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
556 |
|
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
557 |
if (!g_pAStream && !g_pVStream) |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
558 |
return FatalError("No video, no audio, aborting..."); |
7180 | 559 |
|
560 |
// write format info to log |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
561 |
av_dump_format(g_pContainer, 0, g_pContainer->filename, 1); |
7180 | 562 |
|
563 |
// open the output file, if needed |
|
564 |
if (!(g_pFormat->flags & AVFMT_NOFILE)) |
|
565 |
{ |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
566 |
if (avio_open(&g_pContainer->pb, g_pContainer->filename, AVIO_FLAG_WRITE) < 0) |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
567 |
return FatalError("Could not open output file (%s)", g_pContainer->filename); |
7180 | 568 |
} |
569 |
||
11548
3617c611406b
avwrapper: Do not ignore avformat_write_header return value
koda
parents:
11406
diff
changeset
|
570 |
g_pVFrame->pts = -1; |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
571 |
|
11548
3617c611406b
avwrapper: Do not ignore avformat_write_header return value
koda
parents:
11406
diff
changeset
|
572 |
// write the stream header, if any |
3617c611406b
avwrapper: Do not ignore avformat_write_header return value
koda
parents:
11406
diff
changeset
|
573 |
return avformat_write_header(g_pContainer, NULL); |
7180 | 574 |
} |
575 |
||
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
576 |
AVWRAP_DECL int AVWrapper_Close() |
7180 | 577 |
{ |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
578 |
int ret; |
7180 | 579 |
// output buffered frames |
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
580 |
if (g_pVCodec->capabilities & AV_CODEC_CAP_DELAY) |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
581 |
{ |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
582 |
do |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
583 |
ret = WriteFrame(NULL); |
11365
44248a9cdcac
videorec: Fix flushing encoders
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11364
diff
changeset
|
584 |
while (ret > 0); |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
585 |
if (ret < 0) |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
586 |
return ret; |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
587 |
} |
7180 | 588 |
// output any remaining audio |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
589 |
do |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
590 |
{ |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
591 |
ret = WriteAudioFrame(); |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
592 |
} |
11365
44248a9cdcac
videorec: Fix flushing encoders
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11364
diff
changeset
|
593 |
while(ret > 0); |
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
594 |
if (ret < 0) |
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
595 |
return ret; |
7180 | 596 |
|
597 |
// write the trailer, if any. |
|
598 |
av_write_trailer(g_pContainer); |
|
599 |
||
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
600 |
// close the output file |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
601 |
if (!(g_pFormat->flags & AVFMT_NOFILE)) |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
602 |
avio_close(g_pContainer->pb); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
603 |
|
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
604 |
// free everything |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
605 |
if (g_pVStream) |
7180 | 606 |
{ |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
607 |
avcodec_close(g_pVideo); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
608 |
av_free(g_pVideo); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
609 |
av_free(g_pVStream); |
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
610 |
av_frame_free(&g_pVFrame); |
7180 | 611 |
} |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
612 |
if (g_pAStream) |
7180 | 613 |
{ |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
614 |
avcodec_close(g_pAudio); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
615 |
av_free(g_pAudio); |
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7180
diff
changeset
|
616 |
av_free(g_pAStream); |
11298
9fcdf0969d53
Update libav API, keeping forward and backward compatibility
Vittorio Giovara <vittorio.giovara@gmail.com>
parents:
11046
diff
changeset
|
617 |
av_frame_free(&g_pAFrame); |
7180 | 618 |
av_free(g_pSamples); |
619 |
fclose(g_pSoundFile); |
|
620 |
} |
|
621 |
||
622 |
av_free(g_pContainer); |
|
9925
113e61a8cadc
Fixed avwrapper exit calls, fixing issue 752
Gianfranco Costamagna <costamagnagianfranco@yahoo.it>
parents:
9224
diff
changeset
|
623 |
return 0; |
7180 | 624 |
} |