diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-01-21 17:46:59 -0500 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2016-01-25 12:01:12 -0500 |
commit | 1546a41adae818b340acdd9b5dacd6d0a92b6507 (patch) | |
tree | f89452aa017221804cce078783e176ecdaf60a2f /libavutil | |
parent | 9cac1b4b4f1532fb2aeef54799285360656be5eb (diff) | |
download | ffmpeg-streaming-1546a41adae818b340acdd9b5dacd6d0a92b6507.zip ffmpeg-streaming-1546a41adae818b340acdd9b5dacd6d0a92b6507.tar.gz |
pixdesc: Drop unneeded deprecation warning guards
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/pixdesc.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavutil/pixdesc.c b/libavutil/pixdesc.c index 9e7d8bd..059bd62 100644 --- a/libavutil/pixdesc.c +++ b/libavutil/pixdesc.c @@ -1610,7 +1610,6 @@ static const char *chroma_location_names[AVCHROMA_LOC_NB] = { "top", "bottomleft", "bottom", }; -FF_DISABLE_DEPRECATION_WARNINGS static enum AVPixelFormat get_pix_fmt_internal(const char *name) { enum AVPixelFormat pix_fmt; @@ -1707,7 +1706,6 @@ enum AVPixelFormat av_pix_fmt_desc_get_id(const AVPixFmtDescriptor *desc) return desc - av_pix_fmt_descriptors; } -FF_ENABLE_DEPRECATION_WARNINGS int av_pix_fmt_get_chroma_sub_sample(enum AVPixelFormat pix_fmt, int *h_shift, int *v_shift) |