]> git.sesse.net Git - ffmpeg/blob - libavcodec/mpeg12enc.c
30afa2eb46cdfd11877ef6bee877d2f64cf9f26a
[ffmpeg] / libavcodec / mpeg12enc.c
1 /*
2  * MPEG1/2 encoder
3  * Copyright (c) 2000,2001 Fabrice Bellard
4  * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of Libav.
7  *
8  * Libav is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * Libav is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with Libav; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 /**
24  * @file
25  * MPEG1/2 encoder
26  */
27
28 #include "avcodec.h"
29 #include "dsputil.h"
30 #include "mpegvideo.h"
31
32 #include "mpeg12.h"
33 #include "mpeg12data.h"
34 #include "bytestream.h"
35
36 #include "libavutil/log.h"
37 #include "libavutil/opt.h"
38
39 static const uint8_t inv_non_linear_qscale[13] = {
40     0, 2, 4, 6, 8,
41     9,10,11,12,13,14,15,16,
42 };
43
44 static const uint8_t svcd_scan_offset_placeholder[14] = {
45     0x10, 0x0E,
46     0x00, 0x80, 0x81,
47     0x00, 0x80, 0x81,
48     0xff, 0xff, 0xff,
49     0xff, 0xff, 0xff,
50 };
51
52 static void mpeg1_encode_block(MpegEncContext *s,
53                          DCTELEM *block,
54                          int component);
55 static void mpeg1_encode_motion(MpegEncContext *s, int val, int f_or_b_code);    // RAL: f_code parameter added
56
57 static uint8_t mv_penalty[MAX_FCODE+1][MAX_MV*2+1];
58 static uint8_t fcode_tab[MAX_MV*2+1];
59
60 static uint8_t  uni_mpeg1_ac_vlc_len [64*64*2];
61 static uint8_t  uni_mpeg2_ac_vlc_len [64*64*2];
62
63 /* simple include everything table for dc, first byte is bits number next 3 are code*/
64 static uint32_t mpeg1_lum_dc_uni[512];
65 static uint32_t mpeg1_chr_dc_uni[512];
66
67 static uint8_t mpeg1_index_run[2][64];
68 static int8_t mpeg1_max_level[2][64];
69
70 static void init_uni_ac_vlc(RLTable *rl, uint8_t *uni_ac_vlc_len){
71     int i;
72
73     for(i=0; i<128; i++){
74         int level= i-64;
75         int run;
76         for(run=0; run<64; run++){
77             int len, bits, code;
78
79             int alevel= FFABS(level);
80             int sign= (level>>31)&1;
81
82             if (alevel > rl->max_level[0][run])
83                 code= 111; /*rl->n*/
84             else
85                 code= rl->index_run[0][run] + alevel - 1;
86
87             if (code < 111 /* rl->n */) {
88                 /* store the vlc & sign at once */
89                 len=   rl->table_vlc[code][1]+1;
90                 bits= (rl->table_vlc[code][0]<<1) + sign;
91             } else {
92                 len=  rl->table_vlc[111/*rl->n*/][1]+6;
93                 bits= rl->table_vlc[111/*rl->n*/][0]<<6;
94
95                 bits|= run;
96                 if (alevel < 128) {
97                     bits<<=8; len+=8;
98                     bits|= level & 0xff;
99                 } else {
100                     bits<<=16; len+=16;
101                     bits|= level & 0xff;
102                     if (level < 0) {
103                         bits|= 0x8001 + level + 255;
104                     } else {
105                         bits|= level & 0xffff;
106                     }
107                 }
108             }
109
110             uni_ac_vlc_len [UNI_AC_ENC_INDEX(run, i)]= len;
111         }
112     }
113 }
114
115
116 static int find_frame_rate_index(MpegEncContext *s){
117     int i;
118     int64_t dmin= INT64_MAX;
119     int64_t d;
120
121     for(i=1;i<14;i++) {
122         int64_t n0= 1001LL/ff_frame_rate_tab[i].den*ff_frame_rate_tab[i].num*s->avctx->time_base.num;
123         int64_t n1= 1001LL*s->avctx->time_base.den;
124         if(s->avctx->strict_std_compliance > FF_COMPLIANCE_UNOFFICIAL && i>=9) break;
125
126         d = FFABS(n0 - n1);
127         if(d < dmin){
128             dmin=d;
129             s->frame_rate_index= i;
130         }
131     }
132     if(dmin)
133         return -1;
134     else
135         return 0;
136 }
137
138 static av_cold int encode_init(AVCodecContext *avctx)
139 {
140     MpegEncContext *s = avctx->priv_data;
141
142     if(MPV_encode_init(avctx) < 0)
143         return -1;
144
145 #if FF_API_MPEGVIDEO_GLOBAL_OPTS
146     if (avctx->flags2 & CODEC_FLAG2_DROP_FRAME_TIMECODE)
147         s->drop_frame_timecode = 1;
148 #endif
149
150     if(find_frame_rate_index(s) < 0){
151         if(s->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL){
152             av_log(avctx, AV_LOG_ERROR, "MPEG1/2 does not support %d/%d fps\n", avctx->time_base.den, avctx->time_base.num);
153             return -1;
154         }else{
155             av_log(avctx, AV_LOG_INFO, "MPEG1/2 does not support %d/%d fps, there may be AV sync issues\n", avctx->time_base.den, avctx->time_base.num);
156         }
157     }
158
159     if(avctx->profile == FF_PROFILE_UNKNOWN){
160         if(avctx->level != FF_LEVEL_UNKNOWN){
161             av_log(avctx, AV_LOG_ERROR, "Set profile and level\n");
162             return -1;
163         }
164         avctx->profile = s->chroma_format == CHROMA_420 ? 4 : 0; /* Main or 4:2:2 */
165     }
166
167     if(avctx->level == FF_LEVEL_UNKNOWN){
168         if(avctx->profile == 0){ /* 4:2:2 */
169             if(avctx->width <= 720 && avctx->height <= 608) avctx->level = 5; /* Main */
170             else                                            avctx->level = 2; /* High */
171         }else{
172             if(avctx->profile != 1 && s->chroma_format != CHROMA_420){
173                 av_log(avctx, AV_LOG_ERROR, "Only High(1) and 4:2:2(0) profiles support 4:2:2 color sampling\n");
174                 return -1;
175             }
176             if(avctx->width <= 720 && avctx->height <= 576) avctx->level = 8; /* Main */
177             else if(avctx->width <= 1440)                   avctx->level = 6; /* High 1440 */
178             else                                            avctx->level = 4; /* High */
179         }
180     }
181
182     if (s->drop_frame_timecode && s->frame_rate_index != 4) {
183         av_log(avctx, AV_LOG_ERROR, "Drop frame time code only allowed with 1001/30000 fps\n");
184         return -1;
185     }
186
187     return 0;
188 }
189
190 static void put_header(MpegEncContext *s, int header)
191 {
192     align_put_bits(&s->pb);
193     put_bits(&s->pb, 16, header>>16);
194     put_sbits(&s->pb, 16, header);
195 }
196
197 /* put sequence header if needed */
198 static void mpeg1_encode_sequence_header(MpegEncContext *s)
199 {
200         unsigned int vbv_buffer_size;
201         unsigned int fps, v;
202         int i;
203         uint64_t time_code;
204         float best_aspect_error= 1E10;
205         float aspect_ratio= av_q2d(s->avctx->sample_aspect_ratio);
206         int constraint_parameter_flag;
207
208         if(aspect_ratio==0.0) aspect_ratio= 1.0; //pixel aspect 1:1 (VGA)
209
210         if (s->current_picture.f.key_frame) {
211             AVRational framerate= ff_frame_rate_tab[s->frame_rate_index];
212
213             /* mpeg1 header repeated every gop */
214             put_header(s, SEQ_START_CODE);
215
216             put_sbits(&s->pb, 12, s->width );
217             put_sbits(&s->pb, 12, s->height);
218
219             for(i=1; i<15; i++){
220                 float error= aspect_ratio;
221                 if(s->codec_id == CODEC_ID_MPEG1VIDEO || i <=1)
222                     error-= 1.0/ff_mpeg1_aspect[i];
223                 else
224                     error-= av_q2d(ff_mpeg2_aspect[i])*s->height/s->width;
225
226                 error= FFABS(error);
227
228                 if(error < best_aspect_error){
229                     best_aspect_error= error;
230                     s->aspect_ratio_info= i;
231                 }
232             }
233
234             put_bits(&s->pb, 4, s->aspect_ratio_info);
235             put_bits(&s->pb, 4, s->frame_rate_index);
236
237             if(s->avctx->rc_max_rate){
238                 v = (s->avctx->rc_max_rate + 399) / 400;
239                 if (v > 0x3ffff && s->codec_id == CODEC_ID_MPEG1VIDEO)
240                     v = 0x3ffff;
241             }else{
242                 v= 0x3FFFF;
243             }
244
245             if(s->avctx->rc_buffer_size)
246                 vbv_buffer_size = s->avctx->rc_buffer_size;
247             else
248                 /* VBV calculation: Scaled so that a VCD has the proper VBV size of 40 kilobytes */
249                 vbv_buffer_size = (( 20 * s->bit_rate) / (1151929 / 2)) * 8 * 1024;
250             vbv_buffer_size= (vbv_buffer_size + 16383) / 16384;
251
252             put_sbits(&s->pb, 18, v);
253             put_bits(&s->pb, 1, 1); /* marker */
254             put_sbits(&s->pb, 10, vbv_buffer_size);
255
256             constraint_parameter_flag=
257                 s->width <= 768 && s->height <= 576 &&
258                 s->mb_width * s->mb_height <= 396 &&
259                 s->mb_width * s->mb_height * framerate.num <= framerate.den*396*25 &&
260                 framerate.num <= framerate.den*30 &&
261                 s->avctx->me_range && s->avctx->me_range < 128 &&
262                 vbv_buffer_size <= 20 &&
263                 v <= 1856000/400 &&
264                 s->codec_id == CODEC_ID_MPEG1VIDEO;
265
266             put_bits(&s->pb, 1, constraint_parameter_flag);
267
268             ff_write_quant_matrix(&s->pb, s->avctx->intra_matrix);
269             ff_write_quant_matrix(&s->pb, s->avctx->inter_matrix);
270
271             if(s->codec_id == CODEC_ID_MPEG2VIDEO){
272                 put_header(s, EXT_START_CODE);
273                 put_bits(&s->pb, 4, 1); //seq ext
274
275                 put_bits(&s->pb, 1, s->avctx->profile == 0); //escx 1 for 4:2:2 profile */
276
277                 put_bits(&s->pb, 3, s->avctx->profile); //profile
278                 put_bits(&s->pb, 4, s->avctx->level); //level
279
280                 put_bits(&s->pb, 1, s->progressive_sequence);
281                 put_bits(&s->pb, 2, s->chroma_format);
282                 put_bits(&s->pb, 2, s->width >>12);
283                 put_bits(&s->pb, 2, s->height>>12);
284                 put_bits(&s->pb, 12, v>>18); //bitrate ext
285                 put_bits(&s->pb, 1, 1); //marker
286                 put_bits(&s->pb, 8, vbv_buffer_size >>10); //vbv buffer ext
287                 put_bits(&s->pb, 1, s->low_delay);
288                 put_bits(&s->pb, 2, 0); // frame_rate_ext_n
289                 put_bits(&s->pb, 5, 0); // frame_rate_ext_d
290             }
291
292             put_header(s, GOP_START_CODE);
293             put_bits(&s->pb, 1, s->drop_frame_timecode); /* drop frame flag */
294             /* time code : we must convert from the real frame rate to a
295                fake mpeg frame rate in case of low frame rate */
296             fps = (framerate.num + framerate.den/2)/ framerate.den;
297             time_code = s->current_picture_ptr->f.coded_picture_number + s->avctx->timecode_frame_start;
298
299             s->gop_picture_number = s->current_picture_ptr->f.coded_picture_number;
300             if (s->drop_frame_timecode) {
301                 /* only works for NTSC 29.97 */
302                 int d = time_code / 17982;
303                 int m = time_code % 17982;
304                 //if (m < 2) m += 2; /* not needed since -2,-1 / 1798 in C returns 0 */
305                 time_code += 18 * d + 2 * ((m - 2) / 1798);
306             }
307             put_bits(&s->pb, 5, (uint32_t)((time_code / (fps * 3600)) % 24));
308             put_bits(&s->pb, 6, (uint32_t)((time_code / (fps * 60)) % 60));
309             put_bits(&s->pb, 1, 1);
310             put_bits(&s->pb, 6, (uint32_t)((time_code / fps) % 60));
311             put_bits(&s->pb, 6, (uint32_t)((time_code % fps)));
312             put_bits(&s->pb, 1, !!(s->flags & CODEC_FLAG_CLOSED_GOP));
313             put_bits(&s->pb, 1, 0); /* broken link */
314         }
315 }
316
317 static inline void encode_mb_skip_run(MpegEncContext *s, int run){
318     while (run >= 33) {
319         put_bits(&s->pb, 11, 0x008);
320         run -= 33;
321     }
322     put_bits(&s->pb, ff_mpeg12_mbAddrIncrTable[run][1],
323              ff_mpeg12_mbAddrIncrTable[run][0]);
324 }
325
326 static av_always_inline void put_qscale(MpegEncContext *s)
327 {
328     if(s->q_scale_type){
329         assert(s->qscale>=1 && s->qscale <=12);
330         put_bits(&s->pb, 5, inv_non_linear_qscale[s->qscale]);
331     }else{
332         put_bits(&s->pb, 5, s->qscale);
333     }
334 }
335
336 void ff_mpeg1_encode_slice_header(MpegEncContext *s){
337     if (s->height > 2800) {
338         put_header(s, SLICE_MIN_START_CODE + (s->mb_y & 127));
339         put_bits(&s->pb, 3, s->mb_y >> 7);  /* slice_vertical_position_extension */
340     } else {
341         put_header(s, SLICE_MIN_START_CODE + s->mb_y);
342     }
343     put_qscale(s);
344     put_bits(&s->pb, 1, 0); /* slice extra information */
345 }
346
347 void mpeg1_encode_picture_header(MpegEncContext *s, int picture_number)
348 {
349     mpeg1_encode_sequence_header(s);
350
351     /* mpeg1 picture header */
352     put_header(s, PICTURE_START_CODE);
353     /* temporal reference */
354
355     // RAL: s->picture_number instead of s->fake_picture_number
356     put_bits(&s->pb, 10, (s->picture_number -
357                           s->gop_picture_number) & 0x3ff);
358     put_bits(&s->pb, 3, s->pict_type);
359
360     s->vbv_delay_ptr= s->pb.buf + put_bits_count(&s->pb)/8;
361     put_bits(&s->pb, 16, 0xFFFF); /* vbv_delay */
362
363     // RAL: Forward f_code also needed for B frames
364     if (s->pict_type == AV_PICTURE_TYPE_P || s->pict_type == AV_PICTURE_TYPE_B) {
365         put_bits(&s->pb, 1, 0); /* half pel coordinates */
366         if(s->codec_id == CODEC_ID_MPEG1VIDEO)
367             put_bits(&s->pb, 3, s->f_code); /* forward_f_code */
368         else
369             put_bits(&s->pb, 3, 7); /* forward_f_code */
370     }
371
372     // RAL: Backward f_code necessary for B frames
373     if (s->pict_type == AV_PICTURE_TYPE_B) {
374         put_bits(&s->pb, 1, 0); /* half pel coordinates */
375         if(s->codec_id == CODEC_ID_MPEG1VIDEO)
376             put_bits(&s->pb, 3, s->b_code); /* backward_f_code */
377         else
378             put_bits(&s->pb, 3, 7); /* backward_f_code */
379     }
380
381     put_bits(&s->pb, 1, 0); /* extra bit picture */
382
383     s->frame_pred_frame_dct = 1;
384     if(s->codec_id == CODEC_ID_MPEG2VIDEO){
385         put_header(s, EXT_START_CODE);
386         put_bits(&s->pb, 4, 8); //pic ext
387         if (s->pict_type == AV_PICTURE_TYPE_P || s->pict_type == AV_PICTURE_TYPE_B) {
388             put_bits(&s->pb, 4, s->f_code);
389             put_bits(&s->pb, 4, s->f_code);
390         }else{
391             put_bits(&s->pb, 8, 255);
392         }
393         if (s->pict_type == AV_PICTURE_TYPE_B) {
394             put_bits(&s->pb, 4, s->b_code);
395             put_bits(&s->pb, 4, s->b_code);
396         }else{
397             put_bits(&s->pb, 8, 255);
398         }
399         put_bits(&s->pb, 2, s->intra_dc_precision);
400
401         assert(s->picture_structure == PICT_FRAME);
402         put_bits(&s->pb, 2, s->picture_structure);
403         if (s->progressive_sequence) {
404             put_bits(&s->pb, 1, 0); /* no repeat */
405         } else {
406             put_bits(&s->pb, 1, s->current_picture_ptr->f.top_field_first);
407         }
408         /* XXX: optimize the generation of this flag with entropy
409            measures */
410         s->frame_pred_frame_dct = s->progressive_sequence;
411
412         put_bits(&s->pb, 1, s->frame_pred_frame_dct);
413         put_bits(&s->pb, 1, s->concealment_motion_vectors);
414         put_bits(&s->pb, 1, s->q_scale_type);
415         put_bits(&s->pb, 1, s->intra_vlc_format);
416         put_bits(&s->pb, 1, s->alternate_scan);
417         put_bits(&s->pb, 1, s->repeat_first_field);
418         s->progressive_frame = s->progressive_sequence;
419         put_bits(&s->pb, 1, s->chroma_format == CHROMA_420 ? s->progressive_frame : 0); /* chroma_420_type */
420         put_bits(&s->pb, 1, s->progressive_frame);
421         put_bits(&s->pb, 1, 0); //composite_display_flag
422     }
423     if(s->flags & CODEC_FLAG_SVCD_SCAN_OFFSET){
424         int i;
425
426         put_header(s, USER_START_CODE);
427         for(i=0; i<sizeof(svcd_scan_offset_placeholder); i++){
428             put_bits(&s->pb, 8, svcd_scan_offset_placeholder[i]);
429         }
430     }
431
432     s->mb_y=0;
433     ff_mpeg1_encode_slice_header(s);
434 }
435
436 static inline void put_mb_modes(MpegEncContext *s, int n, int bits,
437                                 int has_mv, int field_motion)
438 {
439     put_bits(&s->pb, n, bits);
440     if (!s->frame_pred_frame_dct) {
441         if (has_mv)
442             put_bits(&s->pb, 2, 2 - field_motion); /* motion_type: frame/field */
443         put_bits(&s->pb, 1, s->interlaced_dct);
444     }
445 }
446
447 static av_always_inline void mpeg1_encode_mb_internal(MpegEncContext *s,
448                                                    DCTELEM block[6][64],
449                                                    int motion_x, int motion_y,
450                                                    int mb_block_count)
451 {
452     int i, cbp;
453     const int mb_x = s->mb_x;
454     const int mb_y = s->mb_y;
455     const int first_mb= mb_x == s->resync_mb_x && mb_y == s->resync_mb_y;
456
457     /* compute cbp */
458     cbp = 0;
459     for(i=0;i<mb_block_count;i++) {
460         if (s->block_last_index[i] >= 0)
461             cbp |= 1 << (mb_block_count - 1 - i);
462     }
463
464     if (cbp == 0 && !first_mb && s->mv_type == MV_TYPE_16X16 &&
465         (mb_x != s->mb_width - 1 || (mb_y != s->mb_height - 1 && s->codec_id == CODEC_ID_MPEG1VIDEO)) &&
466         ((s->pict_type == AV_PICTURE_TYPE_P && (motion_x | motion_y) == 0) ||
467         (s->pict_type == AV_PICTURE_TYPE_B && s->mv_dir == s->last_mv_dir && (((s->mv_dir & MV_DIR_FORWARD) ? ((s->mv[0][0][0] - s->last_mv[0][0][0])|(s->mv[0][0][1] - s->last_mv[0][0][1])) : 0) |
468         ((s->mv_dir & MV_DIR_BACKWARD) ? ((s->mv[1][0][0] - s->last_mv[1][0][0])|(s->mv[1][0][1] - s->last_mv[1][0][1])) : 0)) == 0))) {
469         s->mb_skip_run++;
470         s->qscale -= s->dquant;
471         s->skip_count++;
472         s->misc_bits++;
473         s->last_bits++;
474         if(s->pict_type == AV_PICTURE_TYPE_P){
475             s->last_mv[0][1][0]= s->last_mv[0][0][0]=
476             s->last_mv[0][1][1]= s->last_mv[0][0][1]= 0;
477         }
478     } else {
479         if(first_mb){
480             assert(s->mb_skip_run == 0);
481             encode_mb_skip_run(s, s->mb_x);
482         }else{
483             encode_mb_skip_run(s, s->mb_skip_run);
484         }
485
486         if (s->pict_type == AV_PICTURE_TYPE_I) {
487             if(s->dquant && cbp){
488                 put_mb_modes(s, 2, 1, 0, 0); /* macroblock_type : macroblock_quant = 1 */
489                 put_qscale(s);
490             }else{
491                 put_mb_modes(s, 1, 1, 0, 0); /* macroblock_type : macroblock_quant = 0 */
492                 s->qscale -= s->dquant;
493             }
494             s->misc_bits+= get_bits_diff(s);
495             s->i_count++;
496         } else if (s->mb_intra) {
497             if(s->dquant && cbp){
498                 put_mb_modes(s, 6, 0x01, 0, 0);
499                 put_qscale(s);
500             }else{
501                 put_mb_modes(s, 5, 0x03, 0, 0);
502                 s->qscale -= s->dquant;
503             }
504             s->misc_bits+= get_bits_diff(s);
505             s->i_count++;
506             memset(s->last_mv, 0, sizeof(s->last_mv));
507         } else if (s->pict_type == AV_PICTURE_TYPE_P) {
508             if(s->mv_type == MV_TYPE_16X16){
509                 if (cbp != 0) {
510                     if ((motion_x|motion_y) == 0) {
511                         if(s->dquant){
512                             put_mb_modes(s, 5, 1, 0, 0); /* macroblock_pattern & quant */
513                             put_qscale(s);
514                         }else{
515                             put_mb_modes(s, 2, 1, 0, 0); /* macroblock_pattern only */
516                         }
517                         s->misc_bits+= get_bits_diff(s);
518                     } else {
519                         if(s->dquant){
520                             put_mb_modes(s, 5, 2, 1, 0); /* motion + cbp */
521                             put_qscale(s);
522                         }else{
523                             put_mb_modes(s, 1, 1, 1, 0); /* motion + cbp */
524                         }
525                         s->misc_bits+= get_bits_diff(s);
526                         mpeg1_encode_motion(s, motion_x - s->last_mv[0][0][0], s->f_code);    // RAL: f_code parameter added
527                         mpeg1_encode_motion(s, motion_y - s->last_mv[0][0][1], s->f_code);    // RAL: f_code parameter added
528                         s->mv_bits+= get_bits_diff(s);
529                     }
530                 } else {
531                     put_bits(&s->pb, 3, 1); /* motion only */
532                     if (!s->frame_pred_frame_dct)
533                         put_bits(&s->pb, 2, 2); /* motion_type: frame */
534                     s->misc_bits+= get_bits_diff(s);
535                     mpeg1_encode_motion(s, motion_x - s->last_mv[0][0][0], s->f_code);    // RAL: f_code parameter added
536                     mpeg1_encode_motion(s, motion_y - s->last_mv[0][0][1], s->f_code);    // RAL: f_code parameter added
537                     s->qscale -= s->dquant;
538                     s->mv_bits+= get_bits_diff(s);
539                 }
540                 s->last_mv[0][1][0]= s->last_mv[0][0][0]= motion_x;
541                 s->last_mv[0][1][1]= s->last_mv[0][0][1]= motion_y;
542             }else{
543                 assert(!s->frame_pred_frame_dct && s->mv_type == MV_TYPE_FIELD);
544
545                 if (cbp) {
546                     if(s->dquant){
547                         put_mb_modes(s, 5, 2, 1, 1); /* motion + cbp */
548                         put_qscale(s);
549                     }else{
550                         put_mb_modes(s, 1, 1, 1, 1); /* motion + cbp */
551                     }
552                 } else {
553                     put_bits(&s->pb, 3, 1); /* motion only */
554                     put_bits(&s->pb, 2, 1); /* motion_type: field */
555                     s->qscale -= s->dquant;
556                 }
557                 s->misc_bits+= get_bits_diff(s);
558                 for(i=0; i<2; i++){
559                     put_bits(&s->pb, 1, s->field_select[0][i]);
560                     mpeg1_encode_motion(s, s->mv[0][i][0] -  s->last_mv[0][i][0]    , s->f_code);
561                     mpeg1_encode_motion(s, s->mv[0][i][1] - (s->last_mv[0][i][1]>>1), s->f_code);
562                     s->last_mv[0][i][0]=   s->mv[0][i][0];
563                     s->last_mv[0][i][1]= 2*s->mv[0][i][1];
564                 }
565                 s->mv_bits+= get_bits_diff(s);
566             }
567             if(cbp) {
568                 if (s->chroma_y_shift) {
569                     put_bits(&s->pb, ff_mpeg12_mbPatTable[cbp][1], ff_mpeg12_mbPatTable[cbp][0]);
570                 } else {
571                     put_bits(&s->pb, ff_mpeg12_mbPatTable[cbp>>2][1], ff_mpeg12_mbPatTable[cbp>>2][0]);
572                     put_sbits(&s->pb, 2, cbp);
573                 }
574             }
575             s->f_count++;
576         } else{
577             if(s->mv_type == MV_TYPE_16X16){
578                 if (cbp){    // With coded bloc pattern
579                     if (s->dquant) {
580                         if(s->mv_dir == MV_DIR_FORWARD)
581                             put_mb_modes(s, 6, 3, 1, 0);
582                         else
583                             put_mb_modes(s, 8-s->mv_dir, 2, 1, 0);
584                         put_qscale(s);
585                     } else {
586                         put_mb_modes(s, 5-s->mv_dir, 3, 1, 0);
587                     }
588                 }else{    // No coded bloc pattern
589                     put_bits(&s->pb, 5-s->mv_dir, 2);
590                     if (!s->frame_pred_frame_dct)
591                         put_bits(&s->pb, 2, 2); /* motion_type: frame */
592                     s->qscale -= s->dquant;
593                 }
594                 s->misc_bits += get_bits_diff(s);
595                 if (s->mv_dir&MV_DIR_FORWARD){
596                     mpeg1_encode_motion(s, s->mv[0][0][0] - s->last_mv[0][0][0], s->f_code);
597                     mpeg1_encode_motion(s, s->mv[0][0][1] - s->last_mv[0][0][1], s->f_code);
598                     s->last_mv[0][0][0]=s->last_mv[0][1][0]= s->mv[0][0][0];
599                     s->last_mv[0][0][1]=s->last_mv[0][1][1]= s->mv[0][0][1];
600                     s->f_count++;
601                 }
602                 if (s->mv_dir&MV_DIR_BACKWARD){
603                     mpeg1_encode_motion(s, s->mv[1][0][0] - s->last_mv[1][0][0], s->b_code);
604                     mpeg1_encode_motion(s, s->mv[1][0][1] - s->last_mv[1][0][1], s->b_code);
605                     s->last_mv[1][0][0]=s->last_mv[1][1][0]= s->mv[1][0][0];
606                     s->last_mv[1][0][1]=s->last_mv[1][1][1]= s->mv[1][0][1];
607                     s->b_count++;
608                 }
609             }else{
610                 assert(s->mv_type == MV_TYPE_FIELD);
611                 assert(!s->frame_pred_frame_dct);
612                 if (cbp){    // With coded bloc pattern
613                     if (s->dquant) {
614                         if(s->mv_dir == MV_DIR_FORWARD)
615                             put_mb_modes(s, 6, 3, 1, 1);
616                         else
617                             put_mb_modes(s, 8-s->mv_dir, 2, 1, 1);
618                         put_qscale(s);
619                     } else {
620                         put_mb_modes(s, 5-s->mv_dir, 3, 1, 1);
621                     }
622                 }else{    // No coded bloc pattern
623                     put_bits(&s->pb, 5-s->mv_dir, 2);
624                     put_bits(&s->pb, 2, 1); /* motion_type: field */
625                     s->qscale -= s->dquant;
626                 }
627                 s->misc_bits += get_bits_diff(s);
628                 if (s->mv_dir&MV_DIR_FORWARD){
629                     for(i=0; i<2; i++){
630                         put_bits(&s->pb, 1, s->field_select[0][i]);
631                         mpeg1_encode_motion(s, s->mv[0][i][0] -  s->last_mv[0][i][0]    , s->f_code);
632                         mpeg1_encode_motion(s, s->mv[0][i][1] - (s->last_mv[0][i][1]>>1), s->f_code);
633                         s->last_mv[0][i][0]=   s->mv[0][i][0];
634                         s->last_mv[0][i][1]= 2*s->mv[0][i][1];
635                     }
636                     s->f_count++;
637                 }
638                 if (s->mv_dir&MV_DIR_BACKWARD){
639                     for(i=0; i<2; i++){
640                         put_bits(&s->pb, 1, s->field_select[1][i]);
641                         mpeg1_encode_motion(s, s->mv[1][i][0] -  s->last_mv[1][i][0]    , s->b_code);
642                         mpeg1_encode_motion(s, s->mv[1][i][1] - (s->last_mv[1][i][1]>>1), s->b_code);
643                         s->last_mv[1][i][0]=   s->mv[1][i][0];
644                         s->last_mv[1][i][1]= 2*s->mv[1][i][1];
645                     }
646                     s->b_count++;
647                 }
648             }
649             s->mv_bits += get_bits_diff(s);
650             if(cbp) {
651                 if (s->chroma_y_shift) {
652                     put_bits(&s->pb, ff_mpeg12_mbPatTable[cbp][1], ff_mpeg12_mbPatTable[cbp][0]);
653                 } else {
654                     put_bits(&s->pb, ff_mpeg12_mbPatTable[cbp>>2][1], ff_mpeg12_mbPatTable[cbp>>2][0]);
655                     put_sbits(&s->pb, 2, cbp);
656                 }
657             }
658         }
659         for(i=0;i<mb_block_count;i++) {
660             if (cbp & (1 << (mb_block_count - 1 - i))) {
661                 mpeg1_encode_block(s, block[i], i);
662             }
663         }
664         s->mb_skip_run = 0;
665         if(s->mb_intra)
666             s->i_tex_bits+= get_bits_diff(s);
667         else
668             s->p_tex_bits+= get_bits_diff(s);
669     }
670 }
671
672 void mpeg1_encode_mb(MpegEncContext *s, DCTELEM block[6][64], int motion_x, int motion_y)
673 {
674     if (s->chroma_format == CHROMA_420) mpeg1_encode_mb_internal(s, block, motion_x, motion_y, 6);
675     else                                mpeg1_encode_mb_internal(s, block, motion_x, motion_y, 8);
676 }
677
678 // RAL: Parameter added: f_or_b_code
679 static void mpeg1_encode_motion(MpegEncContext *s, int val, int f_or_b_code)
680 {
681     if (val == 0) {
682         /* zero vector */
683         put_bits(&s->pb,
684                  ff_mpeg12_mbMotionVectorTable[0][1],
685                  ff_mpeg12_mbMotionVectorTable[0][0]);
686     } else {
687         int code, sign, bits;
688         int bit_size = f_or_b_code - 1;
689         int range = 1 << bit_size;
690         /* modulo encoding */
691         int l= INT_BIT - 5 - bit_size;
692         val= (val<<l)>>l;
693
694         if (val >= 0) {
695             val--;
696             code = (val >> bit_size) + 1;
697             bits = val & (range - 1);
698             sign = 0;
699         } else {
700             val = -val;
701             val--;
702             code = (val >> bit_size) + 1;
703             bits = val & (range - 1);
704             sign = 1;
705         }
706
707         assert(code > 0 && code <= 16);
708
709         put_bits(&s->pb,
710                  ff_mpeg12_mbMotionVectorTable[code][1],
711                  ff_mpeg12_mbMotionVectorTable[code][0]);
712
713         put_bits(&s->pb, 1, sign);
714         if (bit_size > 0) {
715             put_bits(&s->pb, bit_size, bits);
716         }
717     }
718 }
719
720 void ff_mpeg1_encode_init(MpegEncContext *s)
721 {
722     static int done=0;
723
724     ff_mpeg12_common_init(s);
725
726     if(!done){
727         int f_code;
728         int mv;
729         int i;
730
731         done=1;
732         init_rl(&ff_rl_mpeg1, ff_mpeg12_static_rl_table_store[0]);
733         init_rl(&ff_rl_mpeg2, ff_mpeg12_static_rl_table_store[1]);
734
735         for(i=0; i<64; i++)
736         {
737                 mpeg1_max_level[0][i]= ff_rl_mpeg1.max_level[0][i];
738                 mpeg1_index_run[0][i]= ff_rl_mpeg1.index_run[0][i];
739         }
740
741         init_uni_ac_vlc(&ff_rl_mpeg1, uni_mpeg1_ac_vlc_len);
742         if(s->intra_vlc_format)
743             init_uni_ac_vlc(&ff_rl_mpeg2, uni_mpeg2_ac_vlc_len);
744
745         /* build unified dc encoding tables */
746         for(i=-255; i<256; i++)
747         {
748                 int adiff, index;
749                 int bits, code;
750                 int diff=i;
751
752                 adiff = FFABS(diff);
753                 if(diff<0) diff--;
754                 index = av_log2(2*adiff);
755
756                 bits= ff_mpeg12_vlc_dc_lum_bits[index] + index;
757                 code= (ff_mpeg12_vlc_dc_lum_code[index]<<index) + (diff & ((1 << index) - 1));
758                 mpeg1_lum_dc_uni[i+255]= bits + (code<<8);
759
760                 bits= ff_mpeg12_vlc_dc_chroma_bits[index] + index;
761                 code= (ff_mpeg12_vlc_dc_chroma_code[index]<<index) + (diff & ((1 << index) - 1));
762                 mpeg1_chr_dc_uni[i+255]= bits + (code<<8);
763         }
764
765         for(f_code=1; f_code<=MAX_FCODE; f_code++){
766             for(mv=-MAX_MV; mv<=MAX_MV; mv++){
767                 int len;
768
769                 if(mv==0) len= ff_mpeg12_mbMotionVectorTable[0][1];
770                 else{
771                     int val, bit_size, code;
772
773                     bit_size = f_code - 1;
774
775                     val=mv;
776                     if (val < 0)
777                         val = -val;
778                     val--;
779                     code = (val >> bit_size) + 1;
780                     if(code<17){
781                         len= ff_mpeg12_mbMotionVectorTable[code][1] + 1 + bit_size;
782                     }else{
783                         len= ff_mpeg12_mbMotionVectorTable[16][1] + 2 + bit_size;
784                     }
785                 }
786
787                 mv_penalty[f_code][mv+MAX_MV]= len;
788             }
789         }
790
791
792         for(f_code=MAX_FCODE; f_code>0; f_code--){
793             for(mv=-(8<<f_code); mv<(8<<f_code); mv++){
794                 fcode_tab[mv+MAX_MV]= f_code;
795             }
796         }
797     }
798     s->me.mv_penalty= mv_penalty;
799     s->fcode_tab= fcode_tab;
800     if(s->codec_id == CODEC_ID_MPEG1VIDEO){
801         s->min_qcoeff=-255;
802         s->max_qcoeff= 255;
803     }else{
804         s->min_qcoeff=-2047;
805         s->max_qcoeff= 2047;
806     }
807     if (s->intra_vlc_format) {
808         s->intra_ac_vlc_length=
809         s->intra_ac_vlc_last_length= uni_mpeg2_ac_vlc_len;
810     } else {
811         s->intra_ac_vlc_length=
812         s->intra_ac_vlc_last_length= uni_mpeg1_ac_vlc_len;
813     }
814     s->inter_ac_vlc_length=
815     s->inter_ac_vlc_last_length= uni_mpeg1_ac_vlc_len;
816 }
817
818 static inline void encode_dc(MpegEncContext *s, int diff, int component)
819 {
820   if(((unsigned) (diff+255)) >= 511){
821         int index;
822
823         if(diff<0){
824             index= av_log2_16bit(-2*diff);
825             diff--;
826         }else{
827             index= av_log2_16bit(2*diff);
828         }
829         if (component == 0) {
830             put_bits(
831                 &s->pb,
832                 ff_mpeg12_vlc_dc_lum_bits[index] + index,
833                 (ff_mpeg12_vlc_dc_lum_code[index]<<index) + (diff & ((1 << index) - 1)));
834         }else{
835             put_bits(
836                 &s->pb,
837                 ff_mpeg12_vlc_dc_chroma_bits[index] + index,
838                 (ff_mpeg12_vlc_dc_chroma_code[index]<<index) + (diff & ((1 << index) - 1)));
839         }
840   }else{
841     if (component == 0) {
842         put_bits(
843             &s->pb,
844             mpeg1_lum_dc_uni[diff+255]&0xFF,
845             mpeg1_lum_dc_uni[diff+255]>>8);
846     } else {
847         put_bits(
848             &s->pb,
849             mpeg1_chr_dc_uni[diff+255]&0xFF,
850             mpeg1_chr_dc_uni[diff+255]>>8);
851     }
852   }
853 }
854
855 static void mpeg1_encode_block(MpegEncContext *s,
856                                DCTELEM *block,
857                                int n)
858 {
859     int alevel, level, last_non_zero, dc, diff, i, j, run, last_index, sign;
860     int code, component;
861     const uint16_t (*table_vlc)[2] = ff_rl_mpeg1.table_vlc;
862
863     last_index = s->block_last_index[n];
864
865     /* DC coef */
866     if (s->mb_intra) {
867         component = (n <= 3 ? 0 : (n&1) + 1);
868         dc = block[0]; /* overflow is impossible */
869         diff = dc - s->last_dc[component];
870         encode_dc(s, diff, component);
871         s->last_dc[component] = dc;
872         i = 1;
873         if (s->intra_vlc_format)
874             table_vlc = ff_rl_mpeg2.table_vlc;
875     } else {
876         /* encode the first coefficient : needs to be done here because
877            it is handled slightly differently */
878         level = block[0];
879         if (abs(level) == 1) {
880                 code = ((uint32_t)level >> 31); /* the sign bit */
881                 put_bits(&s->pb, 2, code | 0x02);
882                 i = 1;
883         } else {
884             i = 0;
885             last_non_zero = -1;
886             goto next_coef;
887         }
888     }
889
890     /* now quantify & encode AC coefs */
891     last_non_zero = i - 1;
892
893     for(;i<=last_index;i++) {
894         j = s->intra_scantable.permutated[i];
895         level = block[j];
896     next_coef:
897         /* encode using VLC */
898         if (level != 0) {
899             run = i - last_non_zero - 1;
900
901             alevel= level;
902             MASK_ABS(sign, alevel)
903             sign&=1;
904
905             if (alevel <= mpeg1_max_level[0][run]){
906                 code= mpeg1_index_run[0][run] + alevel - 1;
907                 /* store the vlc & sign at once */
908                 put_bits(&s->pb, table_vlc[code][1]+1, (table_vlc[code][0]<<1) + sign);
909             } else {
910                 /* escape seems to be pretty rare <5% so I do not optimize it */
911                 put_bits(&s->pb, table_vlc[111][1], table_vlc[111][0]);
912                 /* escape: only clip in this case */
913                 put_bits(&s->pb, 6, run);
914                 if(s->codec_id == CODEC_ID_MPEG1VIDEO){
915                     if (alevel < 128) {
916                         put_sbits(&s->pb, 8, level);
917                     } else {
918                         if (level < 0) {
919                             put_bits(&s->pb, 16, 0x8001 + level + 255);
920                         } else {
921                             put_sbits(&s->pb, 16, level);
922                         }
923                     }
924                 }else{
925                     put_sbits(&s->pb, 12, level);
926                 }
927             }
928             last_non_zero = i;
929         }
930     }
931     /* end of block */
932     put_bits(&s->pb, table_vlc[112][1], table_vlc[112][0]);
933 }
934
935 #define OFFSET(x) offsetof(MpegEncContext, x)
936 #define VE AV_OPT_FLAG_ENCODING_PARAM | AV_OPT_FLAG_VIDEO_PARAM
937 #define COMMON_OPTS\
938     { "intra_vlc",           "Use MPEG-2 intra VLC table.",       OFFSET(intra_vlc_format),    FF_OPT_TYPE_INT, { 0 }, 0, 1, VE },\
939     { "drop_frame_timecode", "Timecode is in drop frame format.", OFFSET(drop_frame_timecode), FF_OPT_TYPE_INT, { 0 }, 0, 1, VE},
940
941 static const AVOption mpeg1_options[] = {
942     COMMON_OPTS
943     { NULL },
944 };
945
946 static const AVOption mpeg2_options[] = {
947     COMMON_OPTS
948     { "non_linear_quant",    "Use nonlinear quantizer.",          OFFSET(q_scale_type),         FF_OPT_TYPE_INT, { 0 }, 0, 1, VE },
949     { NULL },
950 };
951
952 #define mpeg12_class(x)\
953 static const AVClass mpeg## x ##_class = {\
954     .class_name   = "mpeg" #x "video encoder",\
955     .item_name    = av_default_item_name,\
956     .option       = mpeg## x ##_options,\
957     .version      = LIBAVUTIL_VERSION_INT,\
958 };
959
960 mpeg12_class(1)
961 mpeg12_class(2)
962
963 AVCodec ff_mpeg1video_encoder = {
964     .name           = "mpeg1video",
965     .type           = AVMEDIA_TYPE_VIDEO,
966     .id             = CODEC_ID_MPEG1VIDEO,
967     .priv_data_size = sizeof(MpegEncContext),
968     .init           = encode_init,
969     .encode         = MPV_encode_picture,
970     .close          = MPV_encode_end,
971     .supported_framerates= ff_frame_rate_tab+1,
972     .pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_NONE},
973     .capabilities= CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS,
974     .long_name= NULL_IF_CONFIG_SMALL("MPEG-1 video"),
975     .priv_class     = &mpeg1_class,
976 };
977
978 AVCodec ff_mpeg2video_encoder = {
979     .name           = "mpeg2video",
980     .type           = AVMEDIA_TYPE_VIDEO,
981     .id             = CODEC_ID_MPEG2VIDEO,
982     .priv_data_size = sizeof(MpegEncContext),
983     .init           = encode_init,
984     .encode         = MPV_encode_picture,
985     .close          = MPV_encode_end,
986     .supported_framerates= ff_frame_rate_tab+1,
987     .pix_fmts= (const enum PixelFormat[]){PIX_FMT_YUV420P, PIX_FMT_YUV422P, PIX_FMT_NONE},
988     .capabilities= CODEC_CAP_DELAY | CODEC_CAP_SLICE_THREADS,
989     .long_name= NULL_IF_CONFIG_SMALL("MPEG-2 video"),
990     .priv_class     = &mpeg2_class,
991 };