[FFmpeg-devel] [PATCH v3 1/2] avcodec/bsf: Set EOF flag only in pkt == NULL

Jan Sebechlebsky sebechlebskyjan at gmail.com
Thu Aug 4 13:29:52 EEST 2016


On 07/26/2016 12:40 PM, sebechlebskyjan at gmail.com wrote:

> From: Jan Sebechlebsky <sebechlebskyjan at gmail.com>
>
> Set BSF EOF flag only if pkt == NULL in av_bsf_send_packet().
>
> Signed-off-by: Jan Sebechlebsky <sebechlebskyjan at gmail.com>
> ---
>   libavcodec/bsf.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/libavcodec/bsf.c b/libavcodec/bsf.c
> index 88b7f29..9b9ada7 100644
> --- a/libavcodec/bsf.c
> +++ b/libavcodec/bsf.c
> @@ -172,7 +172,7 @@ int av_bsf_init(AVBSFContext *ctx)
>   
>   int av_bsf_send_packet(AVBSFContext *ctx, AVPacket *pkt)
>   {
> -    if (!pkt || !pkt->data) {
> +    if (!pkt) {
>           ctx->internal->eof = 1;
>           return 0;
>       }
Ping for this and the next patch :)




More information about the ffmpeg-devel mailing list