On 27/01/14 16:19, Vittorio Giovara wrote:
> ---
>  libavutil/frame.c |    3 +--
>  1 file changed, 1 insertion(+), 2 deletions(-)
> 
> diff --git a/libavutil/frame.c b/libavutil/frame.c
> index 2529ae5..f44842a 100644
> --- a/libavutil/frame.c
> +++ b/libavutil/frame.c
> @@ -368,8 +368,7 @@ int av_frame_copy_props(AVFrame *dst, const AVFrame *src)
>      dst->sample_aspect_ratio    = src->sample_aspect_ratio;
>      dst->pts                    = src->pts;
>      dst->repeat_pict            = src->repeat_pict;
> -    dst->interlaced_frame       = src->interlaced_frame;
> -    dst->top_field_first        = src->top_field_first;
> +    dst->field_state            = src->field_state;
>      dst->palette_has_changed    = src->palette_has_changed;
>      dst->sample_rate            = src->sample_rate;
>      dst->opaque                 = src->opaque;
> 

Surround them by deprecation vars instead.
_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to