¿Cómo convertir RGB desde YUV420p para codificador ffmpeg?

Quiero hacer un archivo de video .avi a partir de imágenes de mapa de bits usando el código c ++. Escribí el siguiente código:

//Get RGB array data from bmp file
uint8_t* rgb24Data = new uint8_t[3*imgWidth*imgHeight];
hBitmap = (HBITMAP) LoadImage( NULL, _T("myfile.bmp"), IMAGE_BITMAP, 0, 0, LR_LOADFROMFILE);
GetDIBits(hdc, hBitmap, 0, imgHeight, rgb24Data , (BITMAPINFO*)&bmi, DIB_RGB_COLORS);

/* Allocate the encoded raw picture. */
AVPicture dst_picture;
avpicture_alloc(&dst_picture, AV_PIX_FMT_YUV420P, imgWidth, imgHeight);

/* Convert rgb24Data to YUV420p and stored into array dst_picture.data */
RGB24toYUV420P(imgWidth, imgHeight, rgb24Data, dst_picture.data); //How to implement this function?

//code for encode frame dst_picture here

Mi problema es cómo implementar.RGB24toYUV420P() función, esta función convertiráRGB24 datos de la matriz rgb24Datos aYUV420p y almacenar en matrizdst_picture.data para codificador ffmpeg?

Respuestas a la pregunta(2)

Su respuesta a la pregunta