X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=libavcodec%2Fmjpeg_parser.c;h=b5282f17c4e1d05c05585333cc01ff86459fb695;hb=d1be646e906487b395190af1d6dd8d33c22bf25f;hp=d14aaaf7427e4335ce6610f6ff696b06ebe21f79;hpb=4546bf4116b97d98b6b8380c7bc85a209dfe707c;p=ffmpeg diff --git a/libavcodec/mjpeg_parser.c b/libavcodec/mjpeg_parser.c index d14aaaf7427..b5282f17c4e 100644 --- a/libavcodec/mjpeg_parser.c +++ b/libavcodec/mjpeg_parser.c @@ -4,25 +4,25 @@ * Copyright (c) 2003 Alex Beregszaszi * Copyright (c) 2003-2004 Michael Niedermayer * - * This file is part of FFmpeg. + * This file is part of Libav. * - * FFmpeg is free software; you can redistribute it and/or + * Libav is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * - * FFmpeg is distributed in the hope that it will be useful, + * Libav is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with FFmpeg; 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 */ /** - * @file libavcodec/mjpeg_parser.c + * @file * MJPEG parser. */ @@ -71,9 +71,9 @@ static int find_frame_end(ParseContext *pc, const uint8_t *buf, int buf_size){ } static int jpeg_parse(AVCodecParserContext *s, - AVCodecContext *avctx, - const uint8_t **poutbuf, int *poutbuf_size, - const uint8_t *buf, int buf_size) + AVCodecContext *avctx, + const uint8_t **poutbuf, int *poutbuf_size, + const uint8_t *buf, int buf_size) { ParseContext *pc = s->priv_data; int next; @@ -81,13 +81,13 @@ static int jpeg_parse(AVCodecParserContext *s, if(s->flags & PARSER_FLAG_COMPLETE_FRAMES){ next= buf_size; }else{ - next= find_frame_end(pc, buf, buf_size); + next= find_frame_end(pc, buf, buf_size); - if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { - *poutbuf = NULL; - *poutbuf_size = 0; - return buf_size; - } + if (ff_combine_frame(pc, next, &buf, &buf_size) < 0) { + *poutbuf = NULL; + *poutbuf_size = 0; + return buf_size; + } } *poutbuf = buf; @@ -96,7 +96,7 @@ static int jpeg_parse(AVCodecParserContext *s, } -AVCodecParser mjpeg_parser = { +AVCodecParser ff_mjpeg_parser = { { CODEC_ID_MJPEG }, sizeof(ParseContext), NULL,