You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec: add a cook parser to get subpacket duration
Fixes jittery video playback of rm files with cook audio.
This commit is contained in:
@@ -620,6 +620,7 @@ OBJS-$(CONFIG_AC3_PARSER) += ac3_parser.o ac3tab.o \
|
|||||||
aac_ac3_parser.o
|
aac_ac3_parser.o
|
||||||
OBJS-$(CONFIG_ADX_PARSER) += adx_parser.o adx.o
|
OBJS-$(CONFIG_ADX_PARSER) += adx_parser.o adx.o
|
||||||
OBJS-$(CONFIG_CAVSVIDEO_PARSER) += cavs_parser.o
|
OBJS-$(CONFIG_CAVSVIDEO_PARSER) += cavs_parser.o
|
||||||
|
OBJS-$(CONFIG_COOK_PARSER) += cook_parser.o
|
||||||
OBJS-$(CONFIG_DCA_PARSER) += dca_parser.o
|
OBJS-$(CONFIG_DCA_PARSER) += dca_parser.o
|
||||||
OBJS-$(CONFIG_DIRAC_PARSER) += dirac_parser.o
|
OBJS-$(CONFIG_DIRAC_PARSER) += dirac_parser.o
|
||||||
OBJS-$(CONFIG_DNXHD_PARSER) += dnxhd_parser.o
|
OBJS-$(CONFIG_DNXHD_PARSER) += dnxhd_parser.o
|
||||||
|
@@ -400,6 +400,7 @@ void avcodec_register_all(void)
|
|||||||
REGISTER_PARSER (AC3, ac3);
|
REGISTER_PARSER (AC3, ac3);
|
||||||
REGISTER_PARSER (ADX, adx);
|
REGISTER_PARSER (ADX, adx);
|
||||||
REGISTER_PARSER (CAVSVIDEO, cavsvideo);
|
REGISTER_PARSER (CAVSVIDEO, cavsvideo);
|
||||||
|
REGISTER_PARSER (COOK, cook);
|
||||||
REGISTER_PARSER (DCA, dca);
|
REGISTER_PARSER (DCA, dca);
|
||||||
REGISTER_PARSER (DIRAC, dirac);
|
REGISTER_PARSER (DIRAC, dirac);
|
||||||
REGISTER_PARSER (DNXHD, dnxhd);
|
REGISTER_PARSER (DNXHD, dnxhd);
|
||||||
|
59
libavcodec/cook_parser.c
Normal file
59
libavcodec/cook_parser.c
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2012 Justin Ruggles <justin.ruggles@gmail.com>
|
||||||
|
*
|
||||||
|
* This file is part of Libav.
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*
|
||||||
|
* 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 Libav; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file
|
||||||
|
* Cook audio parser
|
||||||
|
*
|
||||||
|
* Determines subpacket duration from extradata.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
#include "libavutil/intreadwrite.h"
|
||||||
|
#include "parser.h"
|
||||||
|
|
||||||
|
typedef struct CookParseContext {
|
||||||
|
int duration;
|
||||||
|
} CookParseContext;
|
||||||
|
|
||||||
|
static int cook_parse(AVCodecParserContext *s1, AVCodecContext *avctx,
|
||||||
|
const uint8_t **poutbuf, int *poutbuf_size,
|
||||||
|
const uint8_t *buf, int buf_size)
|
||||||
|
{
|
||||||
|
CookParseContext *s = s1->priv_data;
|
||||||
|
|
||||||
|
if (s->duration)
|
||||||
|
s1->duration = s->duration;
|
||||||
|
else if (avctx->extradata && avctx->extradata_size >= 8 && avctx->channels)
|
||||||
|
s->duration = AV_RB16(avctx->extradata + 4) / avctx->channels;
|
||||||
|
|
||||||
|
/* always return the full packet. this parser isn't doing any splitting or
|
||||||
|
combining, only setting packet duration */
|
||||||
|
*poutbuf = buf;
|
||||||
|
*poutbuf_size = buf_size;
|
||||||
|
return buf_size;
|
||||||
|
}
|
||||||
|
|
||||||
|
AVCodecParser ff_cook_parser = {
|
||||||
|
.codec_ids = { CODEC_ID_COOK },
|
||||||
|
.priv_data_size = sizeof(CookParseContext),
|
||||||
|
.parser_parse = cook_parse,
|
||||||
|
};
|
@@ -27,8 +27,8 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define LIBAVCODEC_VERSION_MAJOR 54
|
#define LIBAVCODEC_VERSION_MAJOR 54
|
||||||
#define LIBAVCODEC_VERSION_MINOR 11
|
#define LIBAVCODEC_VERSION_MINOR 12
|
||||||
#define LIBAVCODEC_VERSION_MICRO 1
|
#define LIBAVCODEC_VERSION_MICRO 0
|
||||||
|
|
||||||
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
|
||||||
LIBAVCODEC_VERSION_MINOR, \
|
LIBAVCODEC_VERSION_MINOR, \
|
||||||
|
@@ -205,6 +205,7 @@ static int rm_read_audio_stream_info(AVFormatContext *s, AVIOContext *pb,
|
|||||||
st->codec->block_align = coded_framesize;
|
st->codec->block_align = coded_framesize;
|
||||||
break;
|
break;
|
||||||
case CODEC_ID_COOK:
|
case CODEC_ID_COOK:
|
||||||
|
st->need_parsing = AVSTREAM_PARSE_HEADERS;
|
||||||
case CODEC_ID_ATRAC3:
|
case CODEC_ID_ATRAC3:
|
||||||
case CODEC_ID_SIPR:
|
case CODEC_ID_SIPR:
|
||||||
avio_rb16(pb); avio_r8(pb);
|
avio_rb16(pb); avio_r8(pb);
|
||||||
|
Reference in New Issue
Block a user