1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
MovEncoder::MovEncoder(const char *filename)
{
av_register_all();
AVStream *st;
AVCodec *enc_codec;
if(!(efc = av_alloc_format_context())) {
fprintf(stderr, "Could not alloc output format context\n");
exit(1);
}
ALLOC(dcc, "mov_encoder, efc");
efc->oformat = guess_format("mpeg", NULL, NULL);
if(!(st = av_new_stream(efc, 0))) {
fprintf(stderr, "Could not alloc stream\n");
switch((int)st) {
case AVERROR_UNKNOWN : printf("unknown error\n");
break;
case AVERROR_IO : printf("i/o error\n");
break;
case AVERROR_NUMEXPECTED : printf("number syntax expected in filename\n");
break;
case AVERROR_INVALIDDATA : printf("invalid data found\n");
break;
case AVERROR_NOMEM : printf("not enough memory\n");
break;
case AVERROR_NOFMT : printf("unknown format\n");
break;
case AVERROR_NOTSUPP : printf("operation not supported\n");
break;
}
exit(1);
}
enc_codec = avcodec_find_encoder(CODEC_ID_MPEG2VIDEO);
if(!enc_codec) {
printf("Unsupported codec for output stream\n");
exit(1);
}
avcodec_get_context_defaults(&st->codec);
ecc = &st->codec;
ecc->codec_id = CODEC_ID_MPEG2VIDEO;
ecc->bit_rate = 8192*1000;
ecc->bit_rate_tolerance = 8000*1000;
ecc->frame_rate = 25;
ecc->frame_rate_base = 1;
ecc->width = 720;
ecc->height = 576;
ecc->pix_fmt = PIX_FMT_YUV420P;
ecc->gop_size = 0;
ecc->mb_decision = FF_MB_DECISION_SIMPLE;
ecc->qmin = 2;
ecc->qmax = 31;
ecc->mb_qmin = 2;
ecc->mb_qmax = 31;
ecc->max_qdiff = 3;
ecc->qblur = 0.5;
ecc->qcompress = 0.5;
ecc->rc_eq = "tex^qComp";
ecc->debug= 0;
ecc->rc_override_count=0;
ecc->rc_max_rate = 0;
ecc->rc_min_rate = 0;
ecc->rc_buffer_size = 0;
ecc->rc_buffer_aggressivity = 1.0;
ecc->rc_initial_cplx= 0;
ecc->i_quant_factor = -0.8;
ecc->b_quant_factor = 1.25;
ecc->i_quant_offset = 0.8;
ecc->b_quant_offset = 1.25;
ecc->dct_algo = 0;
ecc->idct_algo = 0;
ecc->strict_std_compliance = 0;
ecc->me_method = ME_EPZS;
if(avcodec_open(&st->codec, enc_codec) < 0) {
printf("Error while opening codec for stream\n");
exit(1);
}
if(url_fopen(&efc->pb, filename, URL_RDWR) < 0) {
fprintf(stderr, "Could not open '%s'\n", filename);
exit(1);
}
if(av_set_parameters(efc, NULL) < 0) {
fprintf(stderr, "%s: Invalid encoding parameters\n", filename);
exit(1);
}
dump_format(efc, 0, filename, 1);
if(av_write_header(efc) < 0) {
fprintf(stderr, "Could not write header for output file \n");
exit(1);
}
video_buffer = (unsigned char *)av_malloc(VIDEO_BUFFER_SIZE); ALLOC(dcc, "mov_encoder, video_buffer");
av_init_packet(&epkt);
epkt.stream_index = efc->streams[0]->index;
AVCodec *deccodec;
printf("Video decoding\n");
deccodec = avcodec_find_decoder(CODEC_ID_DVVIDEO);
if (!deccodec) {
fprintf(stderr, "codec not found\n");
exit(1);
}
dcc= avcodec_alloc_context(); ALLOC(dcc, "mov_encoder, dcc");
if (avcodec_open(dcc, deccodec) < 0) {
fprintf(stderr, "could not open codec\n");
exit(1);
}
}
MovEncoder::~MovEncoder()
{
av_free(video_buffer); FREE(video_buffer);
url_fclose(&efc->pb);
}
void MovEncoder::encode(Frame *dvframe)
{
int ret;
AVFrame *rawframe = avcodec_alloc_frame();ALLOC(dcc, "mov_encoder, rawframe");
uint8_t *ptr;
int got_picture = 1;
int len;
ptr = (uint8_t *)dvframe->data;
len = dvframe->size;
ret = avcodec_decode_video(dcc,
rawframe, &got_picture, ptr, len);
if(!ret) {
printf("Decoder fuckup!\n");
return;
}
ret = avcodec_encode_video(ecc, video_buffer, VIDEO_BUFFER_SIZE, rawframe);
if(!ret) {
printf("MovEncoder fuckup!\n");
return;
}
epkt.data = video_buffer;
epkt.size = ret;
if(ecc->coded_frame) epkt.pts = ecc->coded_frame->pts;
if(ecc->coded_frame && ecc->coded_frame->key_frame) epkt.flags |= PKT_FLAG_KEY;
av_write_frame(efc, &epkt);
av_free(rawframe); FREE(rawframe);
}
|