Lines Matching defs:side_data
347 const AVFrameSideData *side_data;
371 side_data = av_frame_get_side_data(s->current_picture_ptr->f, AV_FRAME_DATA_PANSCAN);
372 if (side_data) {
373 const AVPanScan *pan_scan = (AVPanScan *)side_data->data;
459 AVFrameSideData *side_data;
543 side_data = av_frame_get_side_data(s->current_picture_ptr->f,
545 if (side_data) {
546 AVStereo3D *stereo = (AVStereo3D *)side_data->data;
583 side_data = av_frame_get_side_data(s->current_picture_ptr->f,
585 if (side_data) {
586 if (side_data->size <= A53_MAX_CC_COUNT * 3 && side_data->size % 3 == 0) {
597 (side_data->size / 3 & A53_MAX_CC_COUNT) | 0x40); // flags, cc_count
600 for (i = 0; i < side_data->size; i++)
601 put_bits(&s->pb, 8, side_data->data[i]);
607 "93 bytes and must be a multiple of 3\n", side_data->size);