From: Sreerenj Balachandran Date: Thu, 26 Jun 2014 11:39:52 +0000 (+0300) Subject: encoder: h264: add cpbBrNalFactor values for MVC profiles. X-Git-Tag: 0.5.9~63 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fupstream%2Fgstreamer-vaapi.git;a=commitdiff_plain;h=619a79943a579d30eaf44d562ca61b9f06ab3bad encoder: h264: add cpbBrNalFactor values for MVC profiles. --- diff --git a/gst-libs/gst/vaapi/gstvaapiencoder_h264.c b/gst-libs/gst/vaapi/gstvaapiencoder_h264.c index cf0428b..8eee95d 100644 --- a/gst-libs/gst/vaapi/gstvaapiencoder_h264.c +++ b/gst-libs/gst/vaapi/gstvaapiencoder_h264.c @@ -169,6 +169,10 @@ h264_get_cpb_nal_factor (GstVaapiProfile profile) case GST_VAAPI_PROFILE_H264_HIGH_444: f = 4800; break; + case GST_VAAPI_PROFILE_H264_MULTIVIEW_HIGH: + case GST_VAAPI_PROFILE_H264_STEREO_HIGH: + f = 1500; /* H.10.2.1 (r) */ + break; default: f = 1200; break;