annotate ffmpeg/libavcodec/mp3_header_compress_bsf.c @ 13:844d341cf643 tip

Back up before ISMIR
author Yading Song <yading.song@eecs.qmul.ac.uk>
date Thu, 31 Oct 2013 13:17:06 +0000
parents 6840f77b83aa
children
rev   line source
yading@10 1 /*
yading@10 2 * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
yading@10 3 *
yading@10 4 * This file is part of FFmpeg.
yading@10 5 *
yading@10 6 * FFmpeg is free software; you can redistribute it and/or
yading@10 7 * modify it under the terms of the GNU Lesser General Public
yading@10 8 * License as published by the Free Software Foundation; either
yading@10 9 * version 2.1 of the License, or (at your option) any later version.
yading@10 10 *
yading@10 11 * FFmpeg is distributed in the hope that it will be useful,
yading@10 12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
yading@10 13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
yading@10 14 * Lesser General Public License for more details.
yading@10 15 *
yading@10 16 * You should have received a copy of the GNU Lesser General Public
yading@10 17 * License along with FFmpeg; if not, write to the Free Software
yading@10 18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
yading@10 19 */
yading@10 20
yading@10 21 #include "libavutil/common.h"
yading@10 22 #include "libavutil/intreadwrite.h"
yading@10 23 #include "avcodec.h"
yading@10 24 #include "mpegaudiodecheader.h"
yading@10 25
yading@10 26
yading@10 27 static int mp3_header_compress(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, const char *args,
yading@10 28 uint8_t **poutbuf, int *poutbuf_size,
yading@10 29 const uint8_t *buf, int buf_size, int keyframe){
yading@10 30 uint32_t header, extraheader;
yading@10 31 int mode_extension, header_size;
yading@10 32
yading@10 33 if(avctx->strict_std_compliance > FF_COMPLIANCE_EXPERIMENTAL){
yading@10 34 av_log(avctx, AV_LOG_ERROR, "not standards compliant\n");
yading@10 35 return -1;
yading@10 36 }
yading@10 37
yading@10 38 header = AV_RB32(buf);
yading@10 39 mode_extension= (header>>4)&3;
yading@10 40
yading@10 41 if(ff_mpa_check_header(header) < 0 || (header&0x60000) != 0x20000){
yading@10 42 output_unchanged:
yading@10 43 *poutbuf= (uint8_t *) buf;
yading@10 44 *poutbuf_size= buf_size;
yading@10 45
yading@10 46 av_log(avctx, AV_LOG_INFO, "cannot compress %08X\n", header);
yading@10 47 return 0;
yading@10 48 }
yading@10 49
yading@10 50 if(avctx->extradata_size == 0){
yading@10 51 avctx->extradata_size=15;
yading@10 52 avctx->extradata= av_malloc(avctx->extradata_size);
yading@10 53 strcpy(avctx->extradata, "FFCMP3 0.0");
yading@10 54 memcpy(avctx->extradata+11, buf, 4);
yading@10 55 }
yading@10 56 if(avctx->extradata_size != 15){
yading@10 57 av_log(avctx, AV_LOG_ERROR, "Extradata invalid\n");
yading@10 58 return -1;
yading@10 59 }
yading@10 60 extraheader = AV_RB32(avctx->extradata+11);
yading@10 61 if((extraheader&MP3_MASK) != (header&MP3_MASK))
yading@10 62 goto output_unchanged;
yading@10 63
yading@10 64 header_size= (header&0x10000) ? 4 : 6;
yading@10 65
yading@10 66 *poutbuf_size= buf_size - header_size;
yading@10 67 *poutbuf= av_malloc(buf_size - header_size + FF_INPUT_BUFFER_PADDING_SIZE);
yading@10 68 memcpy(*poutbuf, buf + header_size, buf_size - header_size + FF_INPUT_BUFFER_PADDING_SIZE);
yading@10 69
yading@10 70 if(avctx->channels==2){
yading@10 71 if((header & (3<<19)) != 3<<19){
yading@10 72 (*poutbuf)[1] &= 0x3F;
yading@10 73 (*poutbuf)[1] |= mode_extension<<6;
yading@10 74 FFSWAP(int, (*poutbuf)[1], (*poutbuf)[2]);
yading@10 75 }else{
yading@10 76 (*poutbuf)[1] &= 0x8F;
yading@10 77 (*poutbuf)[1] |= mode_extension<<4;
yading@10 78 }
yading@10 79 }
yading@10 80
yading@10 81 return 1;
yading@10 82 }
yading@10 83
yading@10 84 AVBitStreamFilter ff_mp3_header_compress_bsf={
yading@10 85 "mp3comp",
yading@10 86 0,
yading@10 87 mp3_header_compress,
yading@10 88 };