diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-07-30 12:29:20 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-07-30 12:29:20 +0200 |
commit | e5526a4baea13d9c1981925909eb1e45d60def5c (patch) | |
tree | 4c1f1c479160614f29c4665410723a568e90db3c /libavformat/gxfenc.c | |
parent | 000f8bcd0360b7c81ed62e89e335a48777ab44c0 (diff) | |
download | ffmpeg-e5526a4baea13d9c1981925909eb1e45d60def5c.tar.gz |
avformat/gxfenc: replace deprecated PIX_FMT constants
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/gxfenc.c')
-rw-r--r-- | libavformat/gxfenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/gxfenc.c b/libavformat/gxfenc.c index 84119345a3..57bb26cd0d 100644 --- a/libavformat/gxfenc.c +++ b/libavformat/gxfenc.c @@ -223,7 +223,7 @@ static int gxf_write_dv_auxiliary(AVIOContext *pb, AVStream *st) avio_w8(pb, TRACK_AUX); avio_w8(pb, 8); - if (st->codec->pix_fmt == PIX_FMT_YUV420P) + if (st->codec->pix_fmt == AV_PIX_FMT_YUV420P) track_aux_data |= 0x01; /* marks stream as DVCAM instead of DVPRO */ track_aux_data |= 0x40000000; /* aux data is valid */ avio_wl64(pb, track_aux_data); @@ -557,7 +557,7 @@ static int gxf_write_umf_media_dv(AVIOContext *pb, GXFStreamContext *sc, AVStrea { int dv_umf_data = 0; - if (st->codec->pix_fmt == PIX_FMT_YUV420P) + if (st->codec->pix_fmt == AV_PIX_FMT_YUV420P) dv_umf_data |= 0x20; /* marks as DVCAM instead of DVPRO */ avio_wl32(pb, dv_umf_data); avio_wl32(pb, 0); |