]> git.sesse.net Git - ffmpeg/blob - libavcodec/mpegpicture.c
Merge commit '0e702124ee149593168cbbb7b30376249a64ae66'
[ffmpeg] / libavcodec / mpegpicture.c
1 /*
2  * Mpeg video formats-related picture management functions
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include <stdint.h>
22
23 #include "libavutil/avassert.h"
24 #include "libavutil/common.h"
25
26 #include "avcodec.h"
27 #include "motion_est.h"
28 #include "mpegpicture.h"
29 #include "mpegutils.h"
30
31 static int make_tables_writable(Picture *pic)
32 {
33     int ret, i;
34 #define MAKE_WRITABLE(table) \
35 do {\
36     if (pic->table &&\
37        (ret = av_buffer_make_writable(&pic->table)) < 0)\
38     return ret;\
39 } while (0)
40
41     MAKE_WRITABLE(mb_var_buf);
42     MAKE_WRITABLE(mc_mb_var_buf);
43     MAKE_WRITABLE(mb_mean_buf);
44     MAKE_WRITABLE(mbskip_table_buf);
45     MAKE_WRITABLE(qscale_table_buf);
46     MAKE_WRITABLE(mb_type_buf);
47
48     for (i = 0; i < 2; i++) {
49         MAKE_WRITABLE(motion_val_buf[i]);
50         MAKE_WRITABLE(ref_index_buf[i]);
51     }
52
53     return 0;
54 }
55
56 int ff_mpeg_framesize_alloc(AVCodecContext *avctx, MotionEstContext *me,
57                             ScratchpadContext *sc, int linesize)
58 {
59     int alloc_size = FFALIGN(FFABS(linesize) + 64, 32);
60
61     if (avctx->hwaccel)
62         return 0;
63
64     if (linesize < 24) {
65         av_log(avctx, AV_LOG_ERROR, "Image too small, temporary buffers cannot function\n");
66         return AVERROR_PATCHWELCOME;
67     }
68
69     // edge emu needs blocksize + filter length - 1
70     // (= 17x17 for  halfpel / 21x21 for H.264)
71     // VC-1 computes luma and chroma simultaneously and needs 19X19 + 9x9
72     // at uvlinesize. It supports only YUV420 so 24x24 is enough
73     // linesize * interlaced * MBsize
74     // we also use this buffer for encoding in encode_mb_internal() needig an additional 32 lines
75     FF_ALLOCZ_ARRAY_OR_GOTO(avctx, sc->edge_emu_buffer, alloc_size, 4 * 70,
76                       fail);
77
78     FF_ALLOCZ_ARRAY_OR_GOTO(avctx, me->scratchpad, alloc_size, 4 * 16 * 2,
79                       fail)
80     me->temp            = me->scratchpad;
81     sc->rd_scratchpad   = me->scratchpad;
82     sc->b_scratchpad    = me->scratchpad;
83     sc->obmc_scratchpad = me->scratchpad + 16;
84
85     return 0;
86 fail:
87     av_freep(&sc->edge_emu_buffer);
88     return AVERROR(ENOMEM);
89 }
90
91 /**
92  * Allocate a frame buffer
93  */
94 static int alloc_frame_buffer(AVCodecContext *avctx,  Picture *pic,
95                               MotionEstContext *me, ScratchpadContext *sc,
96                               int chroma_x_shift, int chroma_y_shift,
97                               int linesize, int uvlinesize)
98 {
99     int edges_needed = av_codec_is_encoder(avctx->codec);
100     int r, ret;
101
102     pic->tf.f = pic->f;
103     if (avctx->codec_id != AV_CODEC_ID_WMV3IMAGE &&
104         avctx->codec_id != AV_CODEC_ID_VC1IMAGE  &&
105         avctx->codec_id != AV_CODEC_ID_MSS2) {
106         if (edges_needed) {
107             pic->f->width  = avctx->width  + 2 * EDGE_WIDTH;
108             pic->f->height = avctx->height + 2 * EDGE_WIDTH;
109         }
110
111         r = ff_thread_get_buffer(avctx, &pic->tf,
112                                  pic->reference ? AV_GET_BUFFER_FLAG_REF : 0);
113     } else {
114         pic->f->width  = avctx->width;
115         pic->f->height = avctx->height;
116         pic->f->format = avctx->pix_fmt;
117         r = avcodec_default_get_buffer2(avctx, pic->f, 0);
118     }
119
120     if (r < 0 || !pic->f->buf[0]) {
121         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed (%d %p)\n",
122                r, pic->f->data[0]);
123         return -1;
124     }
125
126     if (edges_needed) {
127         int i;
128         for (i = 0; pic->f->data[i]; i++) {
129             int offset = (EDGE_WIDTH >> (i ? chroma_y_shift : 0)) *
130                          pic->f->linesize[i] +
131                          (EDGE_WIDTH >> (i ? chroma_x_shift : 0));
132             pic->f->data[i] += offset;
133         }
134         pic->f->width  = avctx->width;
135         pic->f->height = avctx->height;
136     }
137
138     if (avctx->hwaccel) {
139         assert(!pic->hwaccel_picture_private);
140         if (avctx->hwaccel->frame_priv_data_size) {
141             pic->hwaccel_priv_buf = av_buffer_allocz(avctx->hwaccel->frame_priv_data_size);
142             if (!pic->hwaccel_priv_buf) {
143                 av_log(avctx, AV_LOG_ERROR, "alloc_frame_buffer() failed (hwaccel private data allocation)\n");
144                 return -1;
145             }
146             pic->hwaccel_picture_private = pic->hwaccel_priv_buf->data;
147         }
148     }
149
150     if (linesize && (linesize   != pic->f->linesize[0] ||
151                      uvlinesize != pic->f->linesize[1])) {
152         av_log(avctx, AV_LOG_ERROR,
153                "get_buffer() failed (stride changed)\n");
154         ff_mpeg_unref_picture(avctx, pic);
155         return -1;
156     }
157
158     if (pic->f->linesize[1] != pic->f->linesize[2]) {
159         av_log(avctx, AV_LOG_ERROR,
160                "get_buffer() failed (uv stride mismatch)\n");
161         ff_mpeg_unref_picture(avctx, pic);
162         return -1;
163     }
164
165     if (!sc->edge_emu_buffer &&
166         (ret = ff_mpeg_framesize_alloc(avctx, me, sc,
167                                        pic->f->linesize[0])) < 0) {
168         av_log(avctx, AV_LOG_ERROR,
169                "get_buffer() failed to allocate context scratch buffers.\n");
170         ff_mpeg_unref_picture(avctx, pic);
171         return ret;
172     }
173
174     return 0;
175 }
176
177 static int alloc_picture_tables(AVCodecContext *avctx, Picture *pic, int encoding, int out_format,
178                                 int mb_stride, int mb_width, int mb_height, int b8_stride)
179 {
180     const int big_mb_num    = mb_stride * (mb_height + 1) + 1;
181     const int mb_array_size = mb_stride * mb_height;
182     const int b8_array_size = b8_stride * mb_height * 2;
183     int i;
184
185
186     pic->mbskip_table_buf = av_buffer_allocz(mb_array_size + 2);
187     pic->qscale_table_buf = av_buffer_allocz(big_mb_num + mb_stride);
188     pic->mb_type_buf      = av_buffer_allocz((big_mb_num + mb_stride) *
189                                              sizeof(uint32_t));
190     if (!pic->mbskip_table_buf || !pic->qscale_table_buf || !pic->mb_type_buf)
191         return AVERROR(ENOMEM);
192
193     if (encoding) {
194         pic->mb_var_buf    = av_buffer_allocz(mb_array_size * sizeof(int16_t));
195         pic->mc_mb_var_buf = av_buffer_allocz(mb_array_size * sizeof(int16_t));
196         pic->mb_mean_buf   = av_buffer_allocz(mb_array_size);
197         if (!pic->mb_var_buf || !pic->mc_mb_var_buf || !pic->mb_mean_buf)
198             return AVERROR(ENOMEM);
199     }
200
201     if (out_format == FMT_H263 || encoding ||
202 #if FF_API_DEBUG_MV
203         avctx->debug_mv ||
204 #endif
205         (avctx->flags2 & AV_CODEC_FLAG2_EXPORT_MVS)) {
206         int mv_size        = 2 * (b8_array_size + 4) * sizeof(int16_t);
207         int ref_index_size = 4 * mb_array_size;
208
209         for (i = 0; mv_size && i < 2; i++) {
210             pic->motion_val_buf[i] = av_buffer_allocz(mv_size);
211             pic->ref_index_buf[i]  = av_buffer_allocz(ref_index_size);
212             if (!pic->motion_val_buf[i] || !pic->ref_index_buf[i])
213                 return AVERROR(ENOMEM);
214         }
215     }
216
217     pic->alloc_mb_width  = mb_width;
218     pic->alloc_mb_height = mb_height;
219
220     return 0;
221 }
222
223 /**
224  * Allocate a Picture.
225  * The pixels are allocated/set by calling get_buffer() if shared = 0
226  */
227 int ff_alloc_picture(AVCodecContext *avctx, Picture *pic, MotionEstContext *me,
228                      ScratchpadContext *sc, int shared, int encoding,
229                      int chroma_x_shift, int chroma_y_shift, int out_format,
230                      int mb_stride, int mb_width, int mb_height, int b8_stride,
231                      ptrdiff_t *linesize, ptrdiff_t *uvlinesize)
232 {
233     int i, ret;
234
235     if (pic->qscale_table_buf)
236         if (   pic->alloc_mb_width  != mb_width
237             || pic->alloc_mb_height != mb_height)
238             ff_free_picture_tables(pic);
239
240     if (shared) {
241         av_assert0(pic->f->data[0]);
242         pic->shared = 1;
243     } else {
244         av_assert0(!pic->f->buf[0]);
245         if (alloc_frame_buffer(avctx, pic, me, sc,
246                                chroma_x_shift, chroma_y_shift,
247                                *linesize, *uvlinesize) < 0)
248             return -1;
249
250         *linesize   = pic->f->linesize[0];
251         *uvlinesize = pic->f->linesize[1];
252     }
253
254     if (!pic->qscale_table_buf)
255         ret = alloc_picture_tables(avctx, pic, encoding, out_format,
256                                    mb_stride, mb_width, mb_height, b8_stride);
257     else
258         ret = make_tables_writable(pic);
259     if (ret < 0)
260         goto fail;
261
262     if (encoding) {
263         pic->mb_var    = (uint16_t*)pic->mb_var_buf->data;
264         pic->mc_mb_var = (uint16_t*)pic->mc_mb_var_buf->data;
265         pic->mb_mean   = pic->mb_mean_buf->data;
266     }
267
268     pic->mbskip_table = pic->mbskip_table_buf->data;
269     pic->qscale_table = pic->qscale_table_buf->data + 2 * mb_stride + 1;
270     pic->mb_type      = (uint32_t*)pic->mb_type_buf->data + 2 * mb_stride + 1;
271
272     if (pic->motion_val_buf[0]) {
273         for (i = 0; i < 2; i++) {
274             pic->motion_val[i] = (int16_t (*)[2])pic->motion_val_buf[i]->data + 4;
275             pic->ref_index[i]  = pic->ref_index_buf[i]->data;
276         }
277     }
278
279     return 0;
280 fail:
281     av_log(avctx, AV_LOG_ERROR, "Error allocating a picture.\n");
282     ff_mpeg_unref_picture(avctx, pic);
283     ff_free_picture_tables(pic);
284     return AVERROR(ENOMEM);
285 }
286
287 /**
288  * Deallocate a picture.
289  */
290 void ff_mpeg_unref_picture(AVCodecContext *avctx, Picture *pic)
291 {
292     int off = offsetof(Picture, mb_mean) + sizeof(pic->mb_mean);
293
294     pic->tf.f = pic->f;
295     /* WM Image / Screen codecs allocate internal buffers with different
296      * dimensions / colorspaces; ignore user-defined callbacks for these. */
297     if (avctx->codec_id != AV_CODEC_ID_WMV3IMAGE &&
298         avctx->codec_id != AV_CODEC_ID_VC1IMAGE  &&
299         avctx->codec_id != AV_CODEC_ID_MSS2)
300         ff_thread_release_buffer(avctx, &pic->tf);
301     else if (pic->f)
302         av_frame_unref(pic->f);
303
304     av_buffer_unref(&pic->hwaccel_priv_buf);
305
306     if (pic->needs_realloc)
307         ff_free_picture_tables(pic);
308
309     memset((uint8_t*)pic + off, 0, sizeof(*pic) - off);
310 }
311
312 int ff_update_picture_tables(Picture *dst, Picture *src)
313 {
314      int i;
315
316 #define UPDATE_TABLE(table)                                                   \
317 do {                                                                          \
318     if (src->table &&                                                         \
319         (!dst->table || dst->table->buffer != src->table->buffer)) {          \
320         av_buffer_unref(&dst->table);                                         \
321         dst->table = av_buffer_ref(src->table);                               \
322         if (!dst->table) {                                                    \
323             ff_free_picture_tables(dst);                                      \
324             return AVERROR(ENOMEM);                                           \
325         }                                                                     \
326     }                                                                         \
327 } while (0)
328
329     UPDATE_TABLE(mb_var_buf);
330     UPDATE_TABLE(mc_mb_var_buf);
331     UPDATE_TABLE(mb_mean_buf);
332     UPDATE_TABLE(mbskip_table_buf);
333     UPDATE_TABLE(qscale_table_buf);
334     UPDATE_TABLE(mb_type_buf);
335     for (i = 0; i < 2; i++) {
336         UPDATE_TABLE(motion_val_buf[i]);
337         UPDATE_TABLE(ref_index_buf[i]);
338     }
339
340     dst->mb_var        = src->mb_var;
341     dst->mc_mb_var     = src->mc_mb_var;
342     dst->mb_mean       = src->mb_mean;
343     dst->mbskip_table  = src->mbskip_table;
344     dst->qscale_table  = src->qscale_table;
345     dst->mb_type       = src->mb_type;
346     for (i = 0; i < 2; i++) {
347         dst->motion_val[i] = src->motion_val[i];
348         dst->ref_index[i]  = src->ref_index[i];
349     }
350
351     dst->alloc_mb_width  = src->alloc_mb_width;
352     dst->alloc_mb_height = src->alloc_mb_height;
353
354     return 0;
355 }
356
357 int ff_mpeg_ref_picture(AVCodecContext *avctx, Picture *dst, Picture *src)
358 {
359     int ret;
360
361     av_assert0(!dst->f->buf[0]);
362     av_assert0(src->f->buf[0]);
363
364     src->tf.f = src->f;
365     dst->tf.f = dst->f;
366     ret = ff_thread_ref_frame(&dst->tf, &src->tf);
367     if (ret < 0)
368         goto fail;
369
370     ret = ff_update_picture_tables(dst, src);
371     if (ret < 0)
372         goto fail;
373
374     if (src->hwaccel_picture_private) {
375         dst->hwaccel_priv_buf = av_buffer_ref(src->hwaccel_priv_buf);
376         if (!dst->hwaccel_priv_buf)
377             goto fail;
378         dst->hwaccel_picture_private = dst->hwaccel_priv_buf->data;
379     }
380
381     dst->field_picture           = src->field_picture;
382     dst->mb_var_sum              = src->mb_var_sum;
383     dst->mc_mb_var_sum           = src->mc_mb_var_sum;
384     dst->b_frame_score           = src->b_frame_score;
385     dst->needs_realloc           = src->needs_realloc;
386     dst->reference               = src->reference;
387     dst->shared                  = src->shared;
388
389     memcpy(dst->encoding_error, src->encoding_error,
390            sizeof(dst->encoding_error));
391
392     return 0;
393 fail:
394     ff_mpeg_unref_picture(avctx, dst);
395     return ret;
396 }
397
398 static inline int pic_is_unused(Picture *pic)
399 {
400     if (!pic->f->buf[0])
401         return 1;
402     if (pic->needs_realloc && !(pic->reference & DELAYED_PIC_REF))
403         return 1;
404     return 0;
405 }
406
407 static int find_unused_picture(AVCodecContext *avctx, Picture *picture, int shared)
408 {
409     int i;
410
411     if (shared) {
412         for (i = 0; i < MAX_PICTURE_COUNT; i++) {
413             if (!picture[i].f->buf[0])
414                 return i;
415         }
416     } else {
417         for (i = 0; i < MAX_PICTURE_COUNT; i++) {
418             if (pic_is_unused(&picture[i]))
419                 return i;
420         }
421     }
422
423     av_log(avctx, AV_LOG_FATAL,
424            "Internal error, picture buffer overflow\n");
425     /* We could return -1, but the codec would crash trying to draw into a
426      * non-existing frame anyway. This is safer than waiting for a random crash.
427      * Also the return of this is never useful, an encoder must only allocate
428      * as much as allowed in the specification. This has no relationship to how
429      * much libavcodec could allocate (and MAX_PICTURE_COUNT is always large
430      * enough for such valid streams).
431      * Plus, a decoder has to check stream validity and remove frames if too
432      * many reference frames are around. Waiting for "OOM" is not correct at
433      * all. Similarly, missing reference frames have to be replaced by
434      * interpolated/MC frames, anything else is a bug in the codec ...
435      */
436     abort();
437     return -1;
438 }
439
440 int ff_find_unused_picture(AVCodecContext *avctx, Picture *picture, int shared)
441 {
442     int ret = find_unused_picture(avctx, picture, shared);
443
444     if (ret >= 0 && ret < MAX_PICTURE_COUNT) {
445         if (picture[ret].needs_realloc) {
446             picture[ret].needs_realloc = 0;
447             ff_free_picture_tables(&picture[ret]);
448             ff_mpeg_unref_picture(avctx, &picture[ret]);
449         }
450     }
451     return ret;
452 }
453
454 void ff_free_picture_tables(Picture *pic)
455 {
456     int i;
457
458     pic->alloc_mb_width  =
459     pic->alloc_mb_height = 0;
460
461     av_buffer_unref(&pic->mb_var_buf);
462     av_buffer_unref(&pic->mc_mb_var_buf);
463     av_buffer_unref(&pic->mb_mean_buf);
464     av_buffer_unref(&pic->mbskip_table_buf);
465     av_buffer_unref(&pic->qscale_table_buf);
466     av_buffer_unref(&pic->mb_type_buf);
467
468     for (i = 0; i < 2; i++) {
469         av_buffer_unref(&pic->motion_val_buf[i]);
470         av_buffer_unref(&pic->ref_index_buf[i]);
471     }
472 }