mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-04-02 20:35:37 +02:00
yuv4mpeg: do not use deprecated functions
Use the libavutil replacement.
This commit is contained in:
parent
fba8e5b608
commit
a800fd5fc7
@ -18,6 +18,8 @@
|
|||||||
* License along with Libav; if not, write to the Free Software
|
* License along with Libav; if not, write to the Free Software
|
||||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "libavutil/pixdesc.h"
|
||||||
#include "avformat.h"
|
#include "avformat.h"
|
||||||
#include "internal.h"
|
#include "internal.h"
|
||||||
|
|
||||||
@ -128,7 +130,7 @@ static int yuv4_write_packet(AVFormatContext *s, AVPacket *pkt)
|
|||||||
|
|
||||||
if (st->codec->pix_fmt != AV_PIX_FMT_GRAY8) {
|
if (st->codec->pix_fmt != AV_PIX_FMT_GRAY8) {
|
||||||
// Adjust for smaller Cb and Cr planes
|
// Adjust for smaller Cb and Cr planes
|
||||||
avcodec_get_chroma_sub_sample(st->codec->pix_fmt, &h_chroma_shift,
|
av_pix_fmt_get_chroma_sub_sample(st->codec->pix_fmt, &h_chroma_shift,
|
||||||
&v_chroma_shift);
|
&v_chroma_shift);
|
||||||
width >>= h_chroma_shift;
|
width >>= h_chroma_shift;
|
||||||
height >>= v_chroma_shift;
|
height >>= v_chroma_shift;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user