Libav
vaapi_mpeg2.c
Go to the documentation of this file.
1 /*
2  * MPEG-2 HW decode acceleration through VA API
3  *
4  * Copyright (C) 2008-2009 Splitted-Desktop Systems
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 #include "mpegutils.h"
24 #include "vaapi_internal.h"
25 
27 static inline int mpeg2_get_f_code(MpegEncContext *s)
28 {
29  return (s->mpeg_f_code[0][0] << 12) | (s->mpeg_f_code[0][1] << 8) |
30  (s->mpeg_f_code[1][0] << 4) | s->mpeg_f_code[1][1];
31 }
32 
35 {
36  return s->first_field || s->picture_structure == PICT_FRAME;
37 }
38 
40 {
41  struct MpegEncContext * const s = avctx->priv_data;
42  struct vaapi_context * const vactx = avctx->hwaccel_context;
43  VAPictureParameterBufferMPEG2 *pic_param;
44  VAIQMatrixBufferMPEG2 *iq_matrix;
45  int i;
46 
47  av_dlog(avctx, "vaapi_mpeg2_start_frame()\n");
48 
49  vactx->slice_param_size = sizeof(VASliceParameterBufferMPEG2);
50 
51  /* Fill in VAPictureParameterBufferMPEG2 */
52  pic_param = ff_vaapi_alloc_pic_param(vactx, sizeof(VAPictureParameterBufferMPEG2));
53  if (!pic_param)
54  return -1;
55  pic_param->horizontal_size = s->width;
56  pic_param->vertical_size = s->height;
57  pic_param->forward_reference_picture = VA_INVALID_ID;
58  pic_param->backward_reference_picture = VA_INVALID_ID;
59  pic_param->picture_coding_type = s->pict_type;
60  pic_param->f_code = mpeg2_get_f_code(s);
61  pic_param->picture_coding_extension.value = 0; /* reset all bits */
62  pic_param->picture_coding_extension.bits.intra_dc_precision = s->intra_dc_precision;
63  pic_param->picture_coding_extension.bits.picture_structure = s->picture_structure;
64  pic_param->picture_coding_extension.bits.top_field_first = s->top_field_first;
65  pic_param->picture_coding_extension.bits.frame_pred_frame_dct = s->frame_pred_frame_dct;
66  pic_param->picture_coding_extension.bits.concealment_motion_vectors = s->concealment_motion_vectors;
67  pic_param->picture_coding_extension.bits.q_scale_type = s->q_scale_type;
68  pic_param->picture_coding_extension.bits.intra_vlc_format = s->intra_vlc_format;
69  pic_param->picture_coding_extension.bits.alternate_scan = s->alternate_scan;
70  pic_param->picture_coding_extension.bits.repeat_first_field = s->repeat_first_field;
71  pic_param->picture_coding_extension.bits.progressive_frame = s->progressive_frame;
72  pic_param->picture_coding_extension.bits.is_first_field = mpeg2_get_is_frame_start(s);
73 
74  switch (s->pict_type) {
75  case AV_PICTURE_TYPE_B:
76  pic_param->backward_reference_picture = ff_vaapi_get_surface_id(s->next_picture.f);
77  // fall-through
78  case AV_PICTURE_TYPE_P:
79  pic_param->forward_reference_picture = ff_vaapi_get_surface_id(s->last_picture.f);
80  break;
81  }
82 
83  /* Fill in VAIQMatrixBufferMPEG2 */
84  iq_matrix = ff_vaapi_alloc_iq_matrix(vactx, sizeof(VAIQMatrixBufferMPEG2));
85  if (!iq_matrix)
86  return -1;
87  iq_matrix->load_intra_quantiser_matrix = 1;
88  iq_matrix->load_non_intra_quantiser_matrix = 1;
89  iq_matrix->load_chroma_intra_quantiser_matrix = 1;
90  iq_matrix->load_chroma_non_intra_quantiser_matrix = 1;
91 
92  for (i = 0; i < 64; i++) {
93  int n = s->idsp.idct_permutation[ff_zigzag_direct[i]];
94  iq_matrix->intra_quantiser_matrix[i] = s->intra_matrix[n];
95  iq_matrix->non_intra_quantiser_matrix[i] = s->inter_matrix[n];
96  iq_matrix->chroma_intra_quantiser_matrix[i] = s->chroma_intra_matrix[n];
97  iq_matrix->chroma_non_intra_quantiser_matrix[i] = s->chroma_inter_matrix[n];
98  }
99  return 0;
100 }
101 
102 static int vaapi_mpeg2_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
103 {
104  MpegEncContext * const s = avctx->priv_data;
105  VASliceParameterBufferMPEG2 *slice_param;
106  GetBitContext gb;
107  uint32_t quantiser_scale_code, intra_slice_flag, macroblock_offset;
108 
109  av_dlog(avctx, "vaapi_mpeg2_decode_slice(): buffer %p, size %d\n", buffer, size);
110 
111  /* Determine macroblock_offset */
112  init_get_bits(&gb, buffer, 8 * size);
113  if (get_bits_long(&gb, 32) >> 8 != 1) /* start code */
114  return AVERROR_INVALIDDATA;
115  quantiser_scale_code = get_bits(&gb, 5);
116  intra_slice_flag = get_bits1(&gb);
117  if (intra_slice_flag) {
118  skip_bits(&gb, 8);
119  while (get_bits1(&gb) != 0)
120  skip_bits(&gb, 8);
121  }
122  macroblock_offset = get_bits_count(&gb);
123 
124  /* Fill in VASliceParameterBufferMPEG2 */
125  slice_param = (VASliceParameterBufferMPEG2 *)ff_vaapi_alloc_slice(avctx->hwaccel_context, buffer, size);
126  if (!slice_param)
127  return -1;
128  slice_param->macroblock_offset = macroblock_offset;
129  slice_param->slice_horizontal_position = s->mb_x;
130  slice_param->slice_vertical_position = s->mb_y >> (s->picture_structure != PICT_FRAME);
131  slice_param->quantiser_scale_code = quantiser_scale_code;
132  slice_param->intra_slice_flag = intra_slice_flag;
133  return 0;
134 }
135 
137  .name = "mpeg2_vaapi",
138  .type = AVMEDIA_TYPE_VIDEO,
140  .pix_fmt = AV_PIX_FMT_VAAPI_VLD,
141  .start_frame = vaapi_mpeg2_start_frame,
142  .end_frame = ff_vaapi_mpeg_end_frame,
143  .decode_slice = vaapi_mpeg2_decode_slice,
144 };
IDCTDSPContext idsp
Definition: mpegvideo.h:354
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:54
int size
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:240
uint16_t chroma_intra_matrix[64]
Definition: mpegvideo.h:423
uint16_t chroma_inter_matrix[64]
Definition: mpegvideo.h:425
av_dlog(ac->avr,"%d samples - audio_convert: %s to %s (%s)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt), use_generic?ac->func_descr_generic:ac->func_descr)
This structure is used to share data between the Libav library and the client video application...
Definition: vaapi.h:50
uint8_t
static int mpeg2_get_f_code(MpegEncContext *s)
Reconstruct bitstream f_code.
Definition: vaapi_mpeg2.c:27
int intra_dc_precision
Definition: mpegvideo.h:572
int repeat_first_field
Definition: mpegvideo.h:579
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:194
void * ff_vaapi_alloc_pic_param(struct vaapi_context *vactx, unsigned int size)
Allocate a new picture parameter buffer.
Definition: vaapi.c:133
static int vaapi_mpeg2_start_frame(AVCodecContext *avctx, av_unused const uint8_t *buffer, av_unused uint32_t size)
Definition: vaapi_mpeg2.c:39
int intra_vlc_format
Definition: mpegvideo.h:577
int progressive_frame
Definition: mpegvideo.h:587
int top_field_first
Definition: mpegvideo.h:574
int alternate_scan
Definition: mpegvideo.h:578
static VASurfaceID ff_vaapi_get_surface_id(AVFrame *pic)
Extract VASurfaceID from an AVFrame.
unsigned int slice_param_size
Size of a VASliceParameterBuffer element.
Definition: vaapi.h:137
static char buffer[20]
Definition: seek-test.c:31
uint8_t idct_permutation[64]
IDCT input permutation.
Definition: idctdsp.h:94
int mpeg_f_code[2][2]
Definition: mpegvideo.h:567
const char * name
Name of the hardware accelerated codec.
Definition: avcodec.h:2899
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:110
int first_field
is 1 for the first field of a field picture 0 otherwise
Definition: mpegvideo.h:590
int frame_pred_frame_dct
Definition: mpegvideo.h:573
uint16_t inter_matrix[64]
Definition: mpegvideo.h:424
int concealment_motion_vectors
Definition: mpegvideo.h:575
void * hwaccel_context
Hardware accelerator context.
Definition: avcodec.h:2444
AVHWAccel.
Definition: avcodec.h:2893
main external API structure.
Definition: avcodec.h:1050
#define av_unused
Definition: attributes.h:86
int height
picture size. must be a multiple of 16
Definition: mpegvideo.h:223
HW decoding through VA API, Picture.data[3] contains a vaapi_render_state struct which contains the b...
Definition: pixfmt.h:127
VASliceParameterBufferBase * ff_vaapi_alloc_slice(struct vaapi_context *vactx, const uint8_t *buffer, uint32_t size)
Allocate a new slice descriptor for the input slice.
Definition: vaapi.c:148
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:271
AVHWAccel ff_mpeg2_vaapi_hwaccel
Definition: vaapi_mpeg2.c:136
static int vaapi_mpeg2_decode_slice(AVCodecContext *avctx, const uint8_t *buffer, uint32_t size)
Definition: vaapi_mpeg2.c:102
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:263
struct AVFrame * f
Definition: mpegvideo.h:100
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:375
const uint8_t ff_zigzag_direct[64]
Definition: mathtables.c:115
static unsigned int get_bits_long(GetBitContext *s, int n)
Read 0-32 bits.
Definition: get_bits.h:304
int pict_type
AV_PICTURE_TYPE_I, AV_PICTURE_TYPE_P, AV_PICTURE_TYPE_B, ...
Definition: mpegvideo.h:339
void * priv_data
Definition: avcodec.h:1092
static int mpeg2_get_is_frame_start(MpegEncContext *s)
Determine frame start: first field for field picture or frame picture.
Definition: vaapi_mpeg2.c:34
MpegEncContext.
Definition: mpegvideo.h:204
Picture last_picture
copy of the previous picture structure.
Definition: mpegvideo.h:288
void * ff_vaapi_alloc_iq_matrix(struct vaapi_context *vactx, unsigned int size)
Allocate a new IQ matrix buffer.
Definition: vaapi.c:138
Bi-dir predicted.
Definition: avutil.h:255
#define PICT_FRAME
Definition: mpegutils.h:35
int picture_structure
Definition: mpegvideo.h:570
Picture next_picture
copy of the next picture structure.
Definition: mpegvideo.h:294
uint16_t intra_matrix[64]
matrix transmitted in the bitstream
Definition: mpegvideo.h:422
int ff_vaapi_mpeg_end_frame(AVCodecContext *avctx)
Definition: vaapi.c:197
Predicted.
Definition: avutil.h:254