]> git.sesse.net Git - ffmpeg/blob - libavcodec/svq1enc.c
Merge commit 'ba71c74017c287681153ec8f6f1cba650d797275'
[ffmpeg] / libavcodec / svq1enc.c
1 /*
2  * SVQ1 Encoder
3  * Copyright (C) 2004 Mike Melanson <melanson@pcisys.net>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * Sorenson Vector Quantizer #1 (SVQ1) video codec.
25  * For more information of the SVQ1 algorithm, visit:
26  *   http://www.pcisys.net/~melanson/codecs/
27  */
28
29 #include "avcodec.h"
30 #include "dsputil.h"
31 #include "hpeldsp.h"
32 #include "mpegvideo.h"
33 #include "h263.h"
34 #include "internal.h"
35 #include "mpegutils.h"
36 #include "svq1.h"
37 #include "svq1enc_cb.h"
38 #include "libavutil/avassert.h"
39
40
41 typedef struct SVQ1Context {
42     /* FIXME: Needed for motion estimation, should not be used for anything
43      * else, the idea is to make the motion estimation eventually independent
44      * of MpegEncContext, so this will be removed then. */
45     MpegEncContext m;
46     AVCodecContext *avctx;
47     DSPContext dsp;
48     HpelDSPContext hdsp;
49     AVFrame *current_picture;
50     AVFrame *last_picture;
51     PutBitContext pb;
52     GetBitContext gb;
53
54     /* why ooh why this sick breadth first order,
55      * everything is slower and more complex */
56     PutBitContext reorder_pb[6];
57
58     int frame_width;
59     int frame_height;
60
61     /* Y plane block dimensions */
62     int y_block_width;
63     int y_block_height;
64
65     /* U & V plane (C planes) block dimensions */
66     int c_block_width;
67     int c_block_height;
68
69     uint16_t *mb_type;
70     uint32_t *dummy;
71     int16_t (*motion_val8[3])[2];
72     int16_t (*motion_val16[3])[2];
73
74     int64_t rd_total;
75
76     uint8_t *scratchbuf;
77 } SVQ1Context;
78
79 static void svq1_write_header(SVQ1Context *s, int frame_type)
80 {
81     int i;
82
83     /* frame code */
84     put_bits(&s->pb, 22, 0x20);
85
86     /* temporal reference (sure hope this is a "don't care") */
87     put_bits(&s->pb, 8, 0x00);
88
89     /* frame type */
90     put_bits(&s->pb, 2, frame_type - 1);
91
92     if (frame_type == AV_PICTURE_TYPE_I) {
93         /* no checksum since frame code is 0x20 */
94         /* no embedded string either */
95         /* output 5 unknown bits (2 + 2 + 1) */
96         put_bits(&s->pb, 5, 2); /* 2 needed by quicktime decoder */
97
98         i = ff_match_2uint16((void*)ff_svq1_frame_size_table,
99                              FF_ARRAY_ELEMS(ff_svq1_frame_size_table),
100                              s->frame_width, s->frame_height);
101         put_bits(&s->pb, 3, i);
102
103         if (i == 7) {
104             put_bits(&s->pb, 12, s->frame_width);
105             put_bits(&s->pb, 12, s->frame_height);
106         }
107     }
108
109     /* no checksum or extra data (next 2 bits get 0) */
110     put_bits(&s->pb, 2, 0);
111 }
112
113 #define QUALITY_THRESHOLD    100
114 #define THRESHOLD_MULTIPLIER 0.6
115
116 static int encode_block(SVQ1Context *s, uint8_t *src, uint8_t *ref,
117                         uint8_t *decoded, int stride, int level,
118                         int threshold, int lambda, int intra)
119 {
120     int count, y, x, i, j, split, best_mean, best_score, best_count;
121     int best_vector[6];
122     int block_sum[7] = { 0, 0, 0, 0, 0, 0 };
123     int w            = 2 << (level + 2 >> 1);
124     int h            = 2 << (level + 1 >> 1);
125     int size         = w * h;
126     int16_t block[7][256];
127     const int8_t *codebook_sum, *codebook;
128     const uint16_t(*mean_vlc)[2];
129     const uint8_t(*multistage_vlc)[2];
130
131     best_score = 0;
132     // FIXME: Optimize, this does not need to be done multiple times.
133     if (intra) {
134         codebook_sum   = svq1_intra_codebook_sum[level];
135         codebook       = ff_svq1_intra_codebooks[level];
136         mean_vlc       = ff_svq1_intra_mean_vlc;
137         multistage_vlc = ff_svq1_intra_multistage_vlc[level];
138         for (y = 0; y < h; y++) {
139             for (x = 0; x < w; x++) {
140                 int v = src[x + y * stride];
141                 block[0][x + w * y] = v;
142                 best_score         += v * v;
143                 block_sum[0]       += v;
144             }
145         }
146     } else {
147         codebook_sum   = svq1_inter_codebook_sum[level];
148         codebook       = ff_svq1_inter_codebooks[level];
149         mean_vlc       = ff_svq1_inter_mean_vlc + 256;
150         multistage_vlc = ff_svq1_inter_multistage_vlc[level];
151         for (y = 0; y < h; y++) {
152             for (x = 0; x < w; x++) {
153                 int v = src[x + y * stride] - ref[x + y * stride];
154                 block[0][x + w * y] = v;
155                 best_score         += v * v;
156                 block_sum[0]       += v;
157             }
158         }
159     }
160
161     best_count  = 0;
162     best_score -= (int)((unsigned)block_sum[0] * block_sum[0] >> (level + 3));
163     best_mean   = block_sum[0] + (size >> 1) >> (level + 3);
164
165     if (level < 4) {
166         for (count = 1; count < 7; count++) {
167             int best_vector_score = INT_MAX;
168             int best_vector_sum   = -999, best_vector_mean = -999;
169             const int stage       = count - 1;
170             const int8_t *vector;
171
172             for (i = 0; i < 16; i++) {
173                 int sum = codebook_sum[stage * 16 + i];
174                 int sqr, diff, score;
175
176                 vector = codebook + stage * size * 16 + i * size;
177                 sqr    = s->dsp.ssd_int8_vs_int16(vector, block[stage], size);
178                 diff   = block_sum[stage] - sum;
179                 score  = sqr - (diff * (int64_t)diff >> (level + 3)); // FIXME: 64bit slooow
180                 if (score < best_vector_score) {
181                     int mean = diff + (size >> 1) >> (level + 3);
182                     av_assert2(mean > -300 && mean < 300);
183                     mean               = av_clip(mean, intra ? 0 : -256, 255);
184                     best_vector_score  = score;
185                     best_vector[stage] = i;
186                     best_vector_sum    = sum;
187                     best_vector_mean   = mean;
188                 }
189             }
190             av_assert0(best_vector_mean != -999);
191             vector = codebook + stage * size * 16 + best_vector[stage] * size;
192             for (j = 0; j < size; j++)
193                 block[stage + 1][j] = block[stage][j] - vector[j];
194             block_sum[stage + 1] = block_sum[stage] - best_vector_sum;
195             best_vector_score   += lambda *
196                                    (+1 + 4 * count +
197                                     multistage_vlc[1 + count][1]
198                                     + mean_vlc[best_vector_mean][1]);
199
200             if (best_vector_score < best_score) {
201                 best_score = best_vector_score;
202                 best_count = count;
203                 best_mean  = best_vector_mean;
204             }
205         }
206     }
207
208     split = 0;
209     if (best_score > threshold && level) {
210         int score  = 0;
211         int offset = level & 1 ? stride * h / 2 : w / 2;
212         PutBitContext backup[6];
213
214         for (i = level - 1; i >= 0; i--)
215             backup[i] = s->reorder_pb[i];
216         score += encode_block(s, src, ref, decoded, stride, level - 1,
217                               threshold >> 1, lambda, intra);
218         score += encode_block(s, src + offset, ref + offset, decoded + offset,
219                               stride, level - 1, threshold >> 1, lambda, intra);
220         score += lambda;
221
222         if (score < best_score) {
223             best_score = score;
224             split      = 1;
225         } else {
226             for (i = level - 1; i >= 0; i--)
227                 s->reorder_pb[i] = backup[i];
228         }
229     }
230     if (level > 0)
231         put_bits(&s->reorder_pb[level], 1, split);
232
233     if (!split) {
234         av_assert1(best_mean >= 0 && best_mean < 256 || !intra);
235         av_assert1(best_mean >= -256 && best_mean < 256);
236         av_assert1(best_count >= 0 && best_count < 7);
237         av_assert1(level < 4 || best_count == 0);
238
239         /* output the encoding */
240         put_bits(&s->reorder_pb[level],
241                  multistage_vlc[1 + best_count][1],
242                  multistage_vlc[1 + best_count][0]);
243         put_bits(&s->reorder_pb[level], mean_vlc[best_mean][1],
244                  mean_vlc[best_mean][0]);
245
246         for (i = 0; i < best_count; i++) {
247             av_assert2(best_vector[i] >= 0 && best_vector[i] < 16);
248             put_bits(&s->reorder_pb[level], 4, best_vector[i]);
249         }
250
251         for (y = 0; y < h; y++)
252             for (x = 0; x < w; x++)
253                 decoded[x + y * stride] = src[x + y * stride] -
254                                           block[best_count][x + w * y] +
255                                           best_mean;
256     }
257
258     return best_score;
259 }
260
261 static void init_block_index(MpegEncContext *s){
262     s->block_index[0]= s->b8_stride*(s->mb_y*2    )     + s->mb_x*2;
263     s->block_index[1]= s->b8_stride*(s->mb_y*2    ) + 1 + s->mb_x*2;
264     s->block_index[2]= s->b8_stride*(s->mb_y*2 + 1)     + s->mb_x*2;
265     s->block_index[3]= s->b8_stride*(s->mb_y*2 + 1) + 1 + s->mb_x*2;
266     s->block_index[4]= s->mb_stride*(s->mb_y + 1)                + s->b8_stride*s->mb_height*2 + s->mb_x;
267     s->block_index[5]= s->mb_stride*(s->mb_y + s->mb_height + 2) + s->b8_stride*s->mb_height*2 + s->mb_x;
268 }
269
270 static int svq1_encode_plane(SVQ1Context *s, int plane,
271                              unsigned char *src_plane,
272                              unsigned char *ref_plane,
273                              unsigned char *decoded_plane,
274                              int width, int height, int src_stride, int stride)
275 {
276     const AVFrame *f = s->avctx->coded_frame;
277     int x, y;
278     int i;
279     int block_width, block_height;
280     int level;
281     int threshold[6];
282     uint8_t *src     = s->scratchbuf + stride * 16;
283     const int lambda = (f->quality * f->quality) >>
284                        (2 * FF_LAMBDA_SHIFT);
285
286     /* figure out the acceptable level thresholds in advance */
287     threshold[5] = QUALITY_THRESHOLD;
288     for (level = 4; level >= 0; level--)
289         threshold[level] = threshold[level + 1] * THRESHOLD_MULTIPLIER;
290
291     block_width  = (width  + 15) / 16;
292     block_height = (height + 15) / 16;
293
294     if (f->pict_type == AV_PICTURE_TYPE_P) {
295         s->m.avctx                         = s->avctx;
296         s->m.current_picture_ptr           = &s->m.current_picture;
297         s->m.last_picture_ptr              = &s->m.last_picture;
298         s->m.last_picture.f->data[0]        = ref_plane;
299         s->m.linesize                      =
300         s->m.last_picture.f->linesize[0]    =
301         s->m.new_picture.f->linesize[0]     =
302         s->m.current_picture.f->linesize[0] = stride;
303         s->m.width                         = width;
304         s->m.height                        = height;
305         s->m.mb_width                      = block_width;
306         s->m.mb_height                     = block_height;
307         s->m.mb_stride                     = s->m.mb_width + 1;
308         s->m.b8_stride                     = 2 * s->m.mb_width + 1;
309         s->m.f_code                        = 1;
310         s->m.pict_type                     = f->pict_type;
311         s->m.me_method                     = s->avctx->me_method;
312         s->m.me.scene_change_score         = 0;
313         s->m.flags                         = s->avctx->flags;
314         // s->m.out_format                    = FMT_H263;
315         // s->m.unrestricted_mv               = 1;
316         s->m.lambda                        = f->quality;
317         s->m.qscale                        = s->m.lambda * 139 +
318                                              FF_LAMBDA_SCALE * 64 >>
319                                              FF_LAMBDA_SHIFT + 7;
320         s->m.lambda2                       = s->m.lambda * s->m.lambda +
321                                              FF_LAMBDA_SCALE / 2 >>
322                                              FF_LAMBDA_SHIFT;
323
324         if (!s->motion_val8[plane]) {
325             s->motion_val8[plane]  = av_mallocz((s->m.b8_stride *
326                                                  block_height * 2 + 2) *
327                                                 2 * sizeof(int16_t));
328             s->motion_val16[plane] = av_mallocz((s->m.mb_stride *
329                                                  (block_height + 2) + 1) *
330                                                 2 * sizeof(int16_t));
331         }
332
333         s->m.mb_type = s->mb_type;
334
335         // dummies, to avoid segfaults
336         s->m.current_picture.mb_mean   = (uint8_t *)s->dummy;
337         s->m.current_picture.mb_var    = (uint16_t *)s->dummy;
338         s->m.current_picture.mc_mb_var = (uint16_t *)s->dummy;
339         s->m.current_picture.mb_type = s->dummy;
340
341         s->m.current_picture.motion_val[0]   = s->motion_val8[plane] + 2;
342         s->m.p_mv_table                      = s->motion_val16[plane] +
343                                                s->m.mb_stride + 1;
344         s->m.dsp                             = s->dsp; // move
345         ff_init_me(&s->m);
346
347         s->m.me.dia_size      = s->avctx->dia_size;
348         s->m.first_slice_line = 1;
349         for (y = 0; y < block_height; y++) {
350             s->m.new_picture.f->data[0] = src - y * 16 * stride; // ugly
351             s->m.mb_y                  = y;
352
353             for (i = 0; i < 16 && i + 16 * y < height; i++) {
354                 memcpy(&src[i * stride], &src_plane[(i + 16 * y) * src_stride],
355                        width);
356                 for (x = width; x < 16 * block_width; x++)
357                     src[i * stride + x] = src[i * stride + x - 1];
358             }
359             for (; i < 16 && i + 16 * y < 16 * block_height; i++)
360                 memcpy(&src[i * stride], &src[(i - 1) * stride],
361                        16 * block_width);
362
363             for (x = 0; x < block_width; x++) {
364                 s->m.mb_x = x;
365                 init_block_index(&s->m);
366
367                 ff_estimate_p_frame_motion(&s->m, x, y);
368             }
369             s->m.first_slice_line = 0;
370         }
371
372         ff_fix_long_p_mvs(&s->m);
373         ff_fix_long_mvs(&s->m, NULL, 0, s->m.p_mv_table, s->m.f_code,
374                         CANDIDATE_MB_TYPE_INTER, 0);
375     }
376
377     s->m.first_slice_line = 1;
378     for (y = 0; y < block_height; y++) {
379         for (i = 0; i < 16 && i + 16 * y < height; i++) {
380             memcpy(&src[i * stride], &src_plane[(i + 16 * y) * src_stride],
381                    width);
382             for (x = width; x < 16 * block_width; x++)
383                 src[i * stride + x] = src[i * stride + x - 1];
384         }
385         for (; i < 16 && i + 16 * y < 16 * block_height; i++)
386             memcpy(&src[i * stride], &src[(i - 1) * stride], 16 * block_width);
387
388         s->m.mb_y = y;
389         for (x = 0; x < block_width; x++) {
390             uint8_t reorder_buffer[3][6][7 * 32];
391             int count[3][6];
392             int offset       = y * 16 * stride + x * 16;
393             uint8_t *decoded = decoded_plane + offset;
394             uint8_t *ref     = ref_plane + offset;
395             int score[4]     = { 0, 0, 0, 0 }, best;
396             uint8_t *temp    = s->scratchbuf;
397
398             if (s->pb.buf_end - s->pb.buf -
399                 (put_bits_count(&s->pb) >> 3) < 3000) { // FIXME: check size
400                 av_log(s->avctx, AV_LOG_ERROR, "encoded frame too large\n");
401                 return -1;
402             }
403
404             s->m.mb_x = x;
405             init_block_index(&s->m);
406
407             if (f->pict_type == AV_PICTURE_TYPE_I ||
408                 (s->m.mb_type[x + y * s->m.mb_stride] &
409                  CANDIDATE_MB_TYPE_INTRA)) {
410                 for (i = 0; i < 6; i++)
411                     init_put_bits(&s->reorder_pb[i], reorder_buffer[0][i],
412                                   7 * 32);
413                 if (f->pict_type == AV_PICTURE_TYPE_P) {
414                     const uint8_t *vlc = ff_svq1_block_type_vlc[SVQ1_BLOCK_INTRA];
415                     put_bits(&s->reorder_pb[5], vlc[1], vlc[0]);
416                     score[0] = vlc[1] * lambda;
417                 }
418                 score[0] += encode_block(s, src + 16 * x, NULL, temp, stride,
419                                          5, 64, lambda, 1);
420                 for (i = 0; i < 6; i++) {
421                     count[0][i] = put_bits_count(&s->reorder_pb[i]);
422                     flush_put_bits(&s->reorder_pb[i]);
423                 }
424             } else
425                 score[0] = INT_MAX;
426
427             best = 0;
428
429             if (f->pict_type == AV_PICTURE_TYPE_P) {
430                 const uint8_t *vlc = ff_svq1_block_type_vlc[SVQ1_BLOCK_INTER];
431                 int mx, my, pred_x, pred_y, dxy;
432                 int16_t *motion_ptr;
433
434                 motion_ptr = ff_h263_pred_motion(&s->m, 0, 0, &pred_x, &pred_y);
435                 if (s->m.mb_type[x + y * s->m.mb_stride] &
436                     CANDIDATE_MB_TYPE_INTER) {
437                     for (i = 0; i < 6; i++)
438                         init_put_bits(&s->reorder_pb[i], reorder_buffer[1][i],
439                                       7 * 32);
440
441                     put_bits(&s->reorder_pb[5], vlc[1], vlc[0]);
442
443                     s->m.pb = s->reorder_pb[5];
444                     mx      = motion_ptr[0];
445                     my      = motion_ptr[1];
446                     av_assert1(mx     >= -32 && mx     <= 31);
447                     av_assert1(my     >= -32 && my     <= 31);
448                     av_assert1(pred_x >= -32 && pred_x <= 31);
449                     av_assert1(pred_y >= -32 && pred_y <= 31);
450                     ff_h263_encode_motion(&s->m, mx - pred_x, 1);
451                     ff_h263_encode_motion(&s->m, my - pred_y, 1);
452                     s->reorder_pb[5] = s->m.pb;
453                     score[1]        += lambda * put_bits_count(&s->reorder_pb[5]);
454
455                     dxy = (mx & 1) + 2 * (my & 1);
456
457                     s->hdsp.put_pixels_tab[0][dxy](temp + 16,
458                                                    ref + (mx >> 1) +
459                                                    stride * (my >> 1),
460                                                    stride, 16);
461
462                     score[1] += encode_block(s, src + 16 * x, temp + 16,
463                                              decoded, stride, 5, 64, lambda, 0);
464                     best      = score[1] <= score[0];
465
466                     vlc       = ff_svq1_block_type_vlc[SVQ1_BLOCK_SKIP];
467                     score[2]  = s->dsp.sse[0](NULL, src + 16 * x, ref,
468                                               stride, 16);
469                     score[2] += vlc[1] * lambda;
470                     if (score[2] < score[best] && mx == 0 && my == 0) {
471                         best = 2;
472                         s->hdsp.put_pixels_tab[0][0](decoded, ref, stride, 16);
473                         for (i = 0; i < 6; i++)
474                             count[2][i] = 0;
475                         put_bits(&s->pb, vlc[1], vlc[0]);
476                     }
477                 }
478
479                 if (best == 1) {
480                     for (i = 0; i < 6; i++) {
481                         count[1][i] = put_bits_count(&s->reorder_pb[i]);
482                         flush_put_bits(&s->reorder_pb[i]);
483                     }
484                 } else {
485                     motion_ptr[0]                      =
486                     motion_ptr[1]                      =
487                     motion_ptr[2]                      =
488                     motion_ptr[3]                      =
489                     motion_ptr[0 + 2 * s->m.b8_stride] =
490                     motion_ptr[1 + 2 * s->m.b8_stride] =
491                     motion_ptr[2 + 2 * s->m.b8_stride] =
492                     motion_ptr[3 + 2 * s->m.b8_stride] = 0;
493                 }
494             }
495
496             s->rd_total += score[best];
497
498             for (i = 5; i >= 0; i--)
499                 avpriv_copy_bits(&s->pb, reorder_buffer[best][i],
500                                  count[best][i]);
501             if (best == 0)
502                 s->hdsp.put_pixels_tab[0][0](decoded, temp, stride, 16);
503         }
504         s->m.first_slice_line = 0;
505     }
506     return 0;
507 }
508
509 static av_cold int svq1_encode_end(AVCodecContext *avctx)
510 {
511     SVQ1Context *const s = avctx->priv_data;
512     int i;
513
514     av_log(avctx, AV_LOG_DEBUG, "RD: %f\n",
515            s->rd_total / (double)(avctx->width * avctx->height *
516                                   avctx->frame_number));
517
518     s->m.mb_type = NULL;
519     ff_MPV_common_end(&s->m);
520
521     av_freep(&s->m.me.scratchpad);
522     av_freep(&s->m.me.map);
523     av_freep(&s->m.me.score_map);
524     av_freep(&s->mb_type);
525     av_freep(&s->dummy);
526     av_freep(&s->scratchbuf);
527
528     for (i = 0; i < 3; i++) {
529         av_freep(&s->motion_val8[i]);
530         av_freep(&s->motion_val16[i]);
531     }
532
533     av_frame_free(&s->current_picture);
534     av_frame_free(&s->last_picture);
535     av_frame_free(&avctx->coded_frame);
536
537     return 0;
538 }
539
540 static av_cold int svq1_encode_init(AVCodecContext *avctx)
541 {
542     SVQ1Context *const s = avctx->priv_data;
543     int ret;
544
545     ff_dsputil_init(&s->dsp, avctx);
546     ff_hpeldsp_init(&s->hdsp, avctx->flags);
547
548     avctx->coded_frame = av_frame_alloc();
549     s->current_picture = av_frame_alloc();
550     s->last_picture    = av_frame_alloc();
551     if (!avctx->coded_frame || !s->current_picture || !s->last_picture) {
552         svq1_encode_end(avctx);
553         return AVERROR(ENOMEM);
554     }
555
556     s->frame_width  = avctx->width;
557     s->frame_height = avctx->height;
558
559     s->y_block_width  = (s->frame_width  + 15) / 16;
560     s->y_block_height = (s->frame_height + 15) / 16;
561
562     s->c_block_width  = (s->frame_width  / 4 + 15) / 16;
563     s->c_block_height = (s->frame_height / 4 + 15) / 16;
564
565     s->avctx               = avctx;
566     s->m.avctx             = avctx;
567
568     if ((ret = ff_MPV_common_init(&s->m)) < 0) {
569         svq1_encode_end(avctx);
570         return ret;
571     }
572
573     s->m.picture_structure = PICT_FRAME;
574     s->m.me.temp           =
575     s->m.me.scratchpad     = av_mallocz((avctx->width + 64) *
576                                         2 * 16 * 2 * sizeof(uint8_t));
577     s->m.me.map            = av_mallocz(ME_MAP_SIZE * sizeof(uint32_t));
578     s->m.me.score_map      = av_mallocz(ME_MAP_SIZE * sizeof(uint32_t));
579     s->mb_type             = av_mallocz((s->y_block_width + 1) *
580                                         s->y_block_height * sizeof(int16_t));
581     s->dummy               = av_mallocz((s->y_block_width + 1) *
582                                         s->y_block_height * sizeof(int32_t));
583     ff_h263_encode_init(&s->m); // mv_penalty
584
585     return 0;
586 }
587
588 static int svq1_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
589                              const AVFrame *pict, int *got_packet)
590 {
591     SVQ1Context *const s = avctx->priv_data;
592     AVFrame *const p     = avctx->coded_frame;
593     int i, ret;
594
595     if ((ret = ff_alloc_packet2(avctx, pkt, s->y_block_width * s->y_block_height *
596                              MAX_MB_BYTES*3 + FF_MIN_BUFFER_SIZE)) < 0)
597         return ret;
598
599     if (avctx->pix_fmt != AV_PIX_FMT_YUV410P) {
600         av_log(avctx, AV_LOG_ERROR, "unsupported pixel format\n");
601         return -1;
602     }
603
604     if (!s->current_picture->data[0]) {
605         if ((ret = ff_get_buffer(avctx, s->current_picture, 0))< 0 ||
606             (ret = ff_get_buffer(avctx, s->last_picture, 0))   < 0) {
607             return ret;
608         }
609         s->scratchbuf = av_malloc(s->current_picture->linesize[0] * 16 * 2);
610     }
611
612     FFSWAP(AVFrame*, s->current_picture, s->last_picture);
613
614     init_put_bits(&s->pb, pkt->data, pkt->size);
615
616     p->pict_type = avctx->gop_size && avctx->frame_number % avctx->gop_size ?
617                    AV_PICTURE_TYPE_P : AV_PICTURE_TYPE_I;
618     p->key_frame = p->pict_type == AV_PICTURE_TYPE_I;
619     p->quality   = pict->quality;
620
621     svq1_write_header(s, p->pict_type);
622     for (i = 0; i < 3; i++)
623         if (svq1_encode_plane(s, i,
624                               pict->data[i],
625                               s->last_picture->data[i],
626                               s->current_picture->data[i],
627                               s->frame_width  / (i ? 4 : 1),
628                               s->frame_height / (i ? 4 : 1),
629                               pict->linesize[i],
630                               s->current_picture->linesize[i]) < 0)
631             return -1;
632
633     // avpriv_align_put_bits(&s->pb);
634     while (put_bits_count(&s->pb) & 31)
635         put_bits(&s->pb, 1, 0);
636
637     flush_put_bits(&s->pb);
638
639     pkt->size = put_bits_count(&s->pb) / 8;
640     if (p->pict_type == AV_PICTURE_TYPE_I)
641         pkt->flags |= AV_PKT_FLAG_KEY;
642     *got_packet = 1;
643
644     return 0;
645 }
646
647 AVCodec ff_svq1_encoder = {
648     .name           = "svq1",
649     .long_name      = NULL_IF_CONFIG_SMALL("Sorenson Vector Quantizer 1 / Sorenson Video 1 / SVQ1"),
650     .type           = AVMEDIA_TYPE_VIDEO,
651     .id             = AV_CODEC_ID_SVQ1,
652     .priv_data_size = sizeof(SVQ1Context),
653     .init           = svq1_encode_init,
654     .encode2        = svq1_encode_frame,
655     .close          = svq1_encode_end,
656     .pix_fmts       = (const enum AVPixelFormat[]) { AV_PIX_FMT_YUV410P,
657                                                      AV_PIX_FMT_NONE },
658 };