parser.c
上传用户:shlianrong
上传日期:2022-07-08
资源大小:309k
文件大小:10k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.  * Audio and Video frame extraction
  3.  * Copyright (c) 2003 Fabrice Bellard.
  4.  * Copyright (c) 2003 Michael Niedermayer.
  5.  *
  6.  * This file is part of FFmpeg.
  7.  *
  8.  * FFmpeg is free software; you can redistribute it and/or
  9.  * modify it under the terms of the GNU Lesser General Public
  10.  * License as published by the Free Software Foundation; either
  11.  * version 2.1 of the License, or (at your option) any later version.
  12.  *
  13.  * FFmpeg is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  16.  * Lesser General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU Lesser General Public
  19.  * License along with FFmpeg; if not, write to the Free Software
  20.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21.  */
  22. #include "dsputil.h"
  23. //#include "internal.h"
  24. //#include "integer.h"
  25. #include "parser.h"
  26. static AVCodecParser *av_first_parser = NULL;
  27. AVCodecParser* av_parser_next(AVCodecParser *p){
  28.     if(p) return p->next;
  29.     else  return av_first_parser;
  30. }
  31. void av_register_codec_parser(AVCodecParser *parser)
  32. {
  33.     parser->next = av_first_parser;
  34.     av_first_parser = parser;
  35. }
  36. AVCodecParserContext *av_parser_init(int codec_id)
  37. {
  38.     AVCodecParserContext *s;
  39.     AVCodecParser *parser;
  40.     int ret;
  41.     if(codec_id == CODEC_ID_NONE)
  42.         return NULL;
  43.     for(parser = av_first_parser; parser != NULL; parser = parser->next) {
  44.         if (parser->codec_ids[0] == codec_id ||
  45.             parser->codec_ids[1] == codec_id ||
  46.             parser->codec_ids[2] == codec_id ||
  47.             parser->codec_ids[3] == codec_id ||
  48.             parser->codec_ids[4] == codec_id)
  49.             goto found;
  50.     }
  51.     return NULL;
  52.  found:
  53.     s = av_mallocz(sizeof(AVCodecParserContext));
  54.     if (!s)
  55.         return NULL;
  56.     s->parser = parser;
  57.     s->priv_data = av_mallocz(parser->priv_data_size);
  58.     if (!s->priv_data) {
  59.         av_free(s);
  60.         return NULL;
  61.     }
  62.     if (parser->parser_init) {
  63.         ret = parser->parser_init(s);
  64.         if (ret != 0) {
  65.             av_free(s->priv_data);
  66.             av_free(s);
  67.             return NULL;
  68.         }
  69.     }
  70.     s->fetch_timestamp=1;
  71.     s->pict_type = FF_I_TYPE;
  72.     return s;
  73. }
  74. void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){
  75.     int i;
  76.     s->dts= s->pts= AV_NOPTS_VALUE;
  77.     s->offset= 0;
  78.     for(i = 0; i < AV_PARSER_PTS_NB; i++) {
  79.         if (   s->next_frame_offset + off >= s->cur_frame_offset[i]
  80.             &&(s->     frame_offset       <  s->cur_frame_offset[i] || !s->frame_offset)
  81.             //check is disabled  becausue mpeg-ts doesnt send complete PES packets
  82.             && /*s->next_frame_offset + off <*/  s->cur_frame_end[i]){
  83.             s->dts= s->cur_frame_dts[i];
  84.             s->pts= s->cur_frame_pts[i];
  85.             s->offset = s->next_frame_offset - s->cur_frame_offset[i];
  86.             if(remove)
  87.                 s->cur_frame_offset[i]= INT64_MAX;
  88.         }
  89.     }
  90. }
  91. /**
  92.  *
  93.  * @param buf           input
  94.  * @param buf_size      input length, to signal EOF, this should be 0 (so that the last frame can be output)
  95.  * @param pts           input presentation timestamp
  96.  * @param dts           input decoding timestamp
  97.  * @param poutbuf       will contain a pointer to the first byte of the output frame
  98.  * @param poutbuf_size  will contain the length of the output frame
  99.  * @return the number of bytes of the input bitstream used
  100.  *
  101.  * Example:
  102.  * @code
  103.  *   while(in_len){
  104.  *       len = av_parser_parse(myparser, AVCodecContext, &data, &size,
  105.  *                                       in_data, in_len,
  106.  *                                       pts, dts);
  107.  *       in_data += len;
  108.  *       in_len  -= len;
  109.  *
  110.  *       if(size)
  111.  *          decode_frame(data, size);
  112.  *   }
  113.  * @endcode
  114.  */
  115. int av_parser_parse(AVCodecParserContext *s,
  116.                     AVCodecContext *avctx,
  117.                     uint8_t **poutbuf, int *poutbuf_size,
  118.                     const uint8_t *buf, int buf_size,
  119.                     int64_t pts, int64_t dts)
  120. {
  121.     int index, i;
  122.     uint8_t dummy_buf[FF_INPUT_BUFFER_PADDING_SIZE];
  123.     if (buf_size == 0) {
  124.         /* padding is always necessary even if EOF, so we add it here */
  125.         memset(dummy_buf, 0, sizeof(dummy_buf));
  126.         buf = dummy_buf;
  127.     } else {
  128.         /* add a new packet descriptor */
  129.         if(pts != AV_NOPTS_VALUE || dts != AV_NOPTS_VALUE){
  130.             i = (s->cur_frame_start_index + 1) & (AV_PARSER_PTS_NB - 1);
  131.             s->cur_frame_start_index = i;
  132.             s->cur_frame_offset[i] = s->cur_offset;
  133.             s->cur_frame_end[i] = s->cur_offset + buf_size;
  134.             s->cur_frame_pts[i] = pts;
  135.             s->cur_frame_dts[i] = dts;
  136.         }
  137.     }
  138.     if (s->fetch_timestamp){
  139.         s->fetch_timestamp=0;
  140.         s->last_pts = s->pts;
  141.         s->last_dts = s->dts;
  142.         ff_fetch_timestamp(s, 0, 0);
  143.     }
  144.     /* WARNING: the returned index can be negative */
  145.     index = s->parser->parser_parse(s, avctx, (const uint8_t **)poutbuf, poutbuf_size, buf, buf_size);
  146. //av_log(NULL, AV_LOG_DEBUG, "parser: in:%"PRId64", %"PRId64", out:%"PRId64", %"PRId64", in:%d out:%d id:%dn", pts, dts, s->last_pts, s->last_dts, buf_size, *poutbuf_size, avctx->codec_id);
  147.     /* update the file pointer */
  148.     if (*poutbuf_size) {
  149.         /* fill the data for the current frame */
  150.         s->frame_offset = s->next_frame_offset;
  151.         /* offset of the next frame */
  152.         s->next_frame_offset = s->cur_offset + index;
  153.         s->fetch_timestamp=1;
  154.     }
  155.     if (index < 0)
  156.         index = 0;
  157.     s->cur_offset += index;
  158.     return index;
  159. }
  160. /**
  161.  *
  162.  * @return 0 if the output buffer is a subset of the input, 1 if it is allocated and must be freed
  163.  * @deprecated use AVBitstreamFilter
  164.  */
  165. int av_parser_change(AVCodecParserContext *s,
  166.                      AVCodecContext *avctx,
  167.                      uint8_t **poutbuf, int *poutbuf_size,
  168.                      const uint8_t *buf, int buf_size, int keyframe){
  169.     if(s && s->parser->split){
  170.         if((avctx->flags & CODEC_FLAG_GLOBAL_HEADER) || (avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER)){
  171.             int i= s->parser->split(avctx, buf, buf_size);
  172.             buf += i;
  173.             buf_size -= i;
  174.         }
  175.     }
  176.     /* cast to avoid warning about discarding qualifiers */
  177.     *poutbuf= (uint8_t *) buf;
  178.     *poutbuf_size= buf_size;
  179.     if(avctx->extradata){
  180.         if(  (keyframe && (avctx->flags2 & CODEC_FLAG2_LOCAL_HEADER))
  181.             /*||(s->pict_type != FF_I_TYPE && (s->flags & PARSER_FLAG_DUMP_EXTRADATA_AT_NOKEY))*/
  182.             /*||(? && (s->flags & PARSER_FLAG_DUMP_EXTRADATA_AT_BEGIN)*/){
  183.             int size= buf_size + avctx->extradata_size;
  184.             *poutbuf_size= size;
  185.             *poutbuf= av_malloc(size + FF_INPUT_BUFFER_PADDING_SIZE);
  186.             memcpy(*poutbuf, avctx->extradata, avctx->extradata_size);
  187.             memcpy((*poutbuf) + avctx->extradata_size, buf, buf_size + FF_INPUT_BUFFER_PADDING_SIZE);
  188.             return 1;
  189.         }
  190.     }
  191.     return 0;
  192. }
  193. void av_parser_close(AVCodecParserContext *s)
  194. {
  195.     if(s){
  196.         if (s->parser->parser_close)
  197.             s->parser->parser_close(s);
  198.         av_free(s->priv_data);
  199.         av_free(s);
  200.     }
  201. }
  202. /*****************************************************/
  203. /**
  204.  * combines the (truncated) bitstream to a complete frame
  205.  * @returns -1 if no complete frame could be created, AVERROR(ENOMEM) if there was a memory allocation error
  206.  */
  207. int ff_combine_frame(ParseContext *pc, int next, const uint8_t **buf, int *buf_size)
  208. {
  209. #if 0
  210.     if(pc->overread){
  211.         printf("overread %d, state:%X next:%d index:%d o_index:%dn", pc->overread, pc->state, next, pc->index, pc->overread_index);
  212.         printf("%X %X %X %Xn", (*buf)[0], (*buf)[1],(*buf)[2],(*buf)[3]);
  213.     }
  214. #endif
  215.     /* Copy overread bytes from last frame into buffer. */
  216.     for(; pc->overread>0; pc->overread--){
  217.         pc->buffer[pc->index++]= pc->buffer[pc->overread_index++];
  218.     }
  219.     /* flush remaining if EOF */
  220.     if(!*buf_size && next == END_NOT_FOUND){
  221.         next= 0;
  222.     }
  223.     pc->last_index= pc->index;
  224.     /* copy into buffer end return */
  225.     if(next == END_NOT_FOUND){
  226.         void* new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size, (*buf_size) + pc->index + FF_INPUT_BUFFER_PADDING_SIZE);
  227.         if(!new_buffer)
  228.             return AVERROR(ENOMEM);
  229.         pc->buffer = new_buffer;
  230.         memcpy(&pc->buffer[pc->index], *buf, *buf_size);
  231.         pc->index += *buf_size;
  232.         return -1;
  233.     }
  234.     *buf_size=
  235.     pc->overread_index= pc->index + next;
  236.     /* append to buffer */
  237.     if(pc->index){
  238.         void* new_buffer = av_fast_realloc(pc->buffer, &pc->buffer_size, next + pc->index + FF_INPUT_BUFFER_PADDING_SIZE);
  239.         if(!new_buffer)
  240.             return AVERROR(ENOMEM);
  241.         pc->buffer = new_buffer;
  242.         memcpy(&pc->buffer[pc->index], *buf, next + FF_INPUT_BUFFER_PADDING_SIZE );
  243.         pc->index = 0;
  244.         *buf= pc->buffer;
  245.     }
  246.     /* store overread bytes */
  247.     for(;next < 0; next++){
  248.         pc->state = (pc->state<<8) | pc->buffer[pc->last_index + next];
  249.         pc->state64 = (pc->state64<<8) | pc->buffer[pc->last_index + next];
  250.         pc->overread++;
  251.     }
  252. #if 0
  253.     if(pc->overread){
  254.         printf("overread %d, state:%X next:%d index:%d o_index:%dn", pc->overread, pc->state, next, pc->index, pc->overread_index);
  255.         printf("%X %X %X %Xn", (*buf)[0], (*buf)[1],(*buf)[2],(*buf)[3]);
  256.     }
  257. #endif
  258.     return 0;
  259. }
  260. void ff_parse_close(AVCodecParserContext *s)
  261. {
  262.     ParseContext *pc = s->priv_data;
  263.     av_freep(&pc->buffer);
  264. }
  265. void ff_parse1_close(AVCodecParserContext *s)
  266. {
  267.     ParseContext1 *pc1 = s->priv_data;
  268.     av_free(pc1->pc.buffer);
  269.     av_free(pc1->enc);
  270. }
  271. /*************************/
  272. int ff_mpeg4video_split(AVCodecContext *avctx,
  273.                            const uint8_t *buf, int buf_size)
  274. {
  275.     int i;
  276.     uint32_t state= -1;
  277.     for(i=0; i<buf_size; i++){
  278.         state= (state<<8) | buf[i];
  279.         if(state == 0x1B3 || state == 0x1B6)
  280.             return i-3;
  281.     }
  282.     return 0;
  283. }