Commit b658ecfe authored by Michael Niedermayer's avatar Michael Niedermayer

removing h263 specific code

Originally committed as revision 3179 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent b37e98c8
...@@ -662,9 +662,6 @@ static int h261_decode_frame(AVCodecContext *avctx, ...@@ -662,9 +662,6 @@ static int h261_decode_frame(AVCodecContext *avctx,
int ret; int ret;
AVFrame *pict = data; AVFrame *pict = data;
#ifdef PRINT_FRAME_TIME
uint64_t time= rdtsc();
#endif
#ifdef DEBUG #ifdef DEBUG
printf("*****frame %d size=%d\n", avctx->frame_number, buf_size); printf("*****frame %d size=%d\n", avctx->frame_number, buf_size);
printf("bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]); printf("bytes=%x %x %x %x\n", buf[0], buf[1], buf[2], buf[3]);
...@@ -674,13 +671,6 @@ uint64_t time= rdtsc(); ...@@ -674,13 +671,6 @@ uint64_t time= rdtsc();
/* no supplementary picture */ /* no supplementary picture */
if (buf_size == 0) { if (buf_size == 0) {
/* special case for last picture */
if (s->low_delay==0 && s->next_picture_ptr) {
*pict= *(AVFrame*)s->next_picture_ptr;
s->next_picture_ptr= NULL;
*data_size = sizeof(AVFrame);
}
return 0; return 0;
} }
...@@ -697,11 +687,7 @@ uint64_t time= rdtsc(); ...@@ -697,11 +687,7 @@ uint64_t time= rdtsc();
retry: retry:
if(s->bitstream_buffer_size && buf_size<20){ init_get_bits(&s->gb, buf, buf_size*8);
init_get_bits(&s->gb, s->bitstream_buffer, s->bitstream_buffer_size*8);
}else
init_get_bits(&s->gb, buf, buf_size*8);
s->bitstream_buffer_size=0;
if(!s->context_initialized){ if(!s->context_initialized){
if (MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix if (MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
...@@ -716,8 +702,6 @@ retry: ...@@ -716,8 +702,6 @@ retry:
ret = h261_decode_picture_header(h); ret = h261_decode_picture_header(h);
if(ret==FRAME_SKIPED) return get_consumed_bytes(s, buf_size);
/* skip if the header was thrashed */ /* skip if the header was thrashed */
if (ret < 0){ if (ret < 0){
av_log(s->avctx, AV_LOG_ERROR, "header damaged\n"); av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
...@@ -776,27 +760,16 @@ retry: ...@@ -776,27 +760,16 @@ retry:
assert(s->current_picture.pict_type == s->current_picture_ptr->pict_type); assert(s->current_picture.pict_type == s->current_picture_ptr->pict_type);
assert(s->current_picture.pict_type == s->pict_type); assert(s->current_picture.pict_type == s->pict_type);
if(s->low_delay){ *pict= *(AVFrame*)&s->current_picture;
*pict= *(AVFrame*)&s->current_picture; ff_print_debug_info(s, pict);
ff_print_debug_info(s, pict);
}else{
*pict= *(AVFrame*)&s->last_picture;
if(pict)
ff_print_debug_info(s, pict);
}
/* Return the Picture timestamp as the frame number */ /* Return the Picture timestamp as the frame number */
/* we substract 1 because it is added on utils.c */ /* we substract 1 because it is added on utils.c */
avctx->frame_number = s->picture_number - 1; avctx->frame_number = s->picture_number - 1;
/* dont output the last pic after seeking */ *data_size = sizeof(AVFrame);
if(s->last_picture_ptr || s->low_delay)
*data_size = sizeof(AVFrame);
#ifdef PRINT_FRAME_TIME
printf("%Ld\n", rdtsc()-time);
#endif
return get_consumed_bytes(s, buf_size); return get_consumed_bytes(s, buf_size);
} }
static int h261_decode_end(AVCodecContext *avctx) static int h261_decode_end(AVCodecContext *avctx)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment