summaryrefslogtreecommitdiff
path: root/libavcodec/h261.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2004-05-30 22:29:15 +0000
committerMichael Niedermayer <michaelni@gmx.at>2004-05-30 22:29:15 +0000
commitb658ecfeb81184f12cb3d990858705178344a1e9 (patch)
tree8ace71cf110775f771ae5a0f84faeca4ccaa12c9 /libavcodec/h261.c
parentb37e98c8a25440571540823250f8c2347e32204a (diff)
removing h263 specific code
Originally committed as revision 3179 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h261.c')
-rw-r--r--libavcodec/h261.c37
1 files changed, 5 insertions, 32 deletions
diff --git a/libavcodec/h261.c b/libavcodec/h261.c
index 2e025cac56..7ee5bff043 100644
--- a/libavcodec/h261.c
+++ b/libavcodec/h261.c
@@ -662,9 +662,6 @@ static int h261_decode_frame(AVCodecContext *avctx,
int ret;
AVFrame *pict = data;
-#ifdef PRINT_FRAME_TIME
-uint64_t time= rdtsc();
-#endif
#ifdef DEBUG
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]);
@@ -674,13 +671,6 @@ uint64_t time= rdtsc();
/* no supplementary picture */
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;
}
@@ -697,11 +687,7 @@ uint64_t time= rdtsc();
retry:
- if(s->bitstream_buffer_size && buf_size<20){
- 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;
+ init_get_bits(&s->gb, buf, buf_size*8);
if(!s->context_initialized){
if (MPV_common_init(s) < 0) //we need the idct permutaton for reading a custom matrix
@@ -716,8 +702,6 @@ retry:
ret = h261_decode_picture_header(h);
- if(ret==FRAME_SKIPED) return get_consumed_bytes(s, buf_size);
-
/* skip if the header was thrashed */
if (ret < 0){
av_log(s->avctx, AV_LOG_ERROR, "header damaged\n");
@@ -776,27 +760,16 @@ retry:
assert(s->current_picture.pict_type == s->current_picture_ptr->pict_type);
assert(s->current_picture.pict_type == s->pict_type);
- if(s->low_delay){
- *pict= *(AVFrame*)&s->current_picture;
- ff_print_debug_info(s, pict);
- }else{
- *pict= *(AVFrame*)&s->last_picture;
- if(pict)
- ff_print_debug_info(s, pict);
- }
+ *pict= *(AVFrame*)&s->current_picture;
+ ff_print_debug_info(s, pict);
/* Return the Picture timestamp as the frame number */
/* we substract 1 because it is added on utils.c */
avctx->frame_number = s->picture_number - 1;
- /* dont output the last pic after seeking */
- if(s->last_picture_ptr || s->low_delay)
- *data_size = sizeof(AVFrame);
-#ifdef PRINT_FRAME_TIME
-printf("%Ld\n", rdtsc()-time);
-#endif
+ *data_size = sizeof(AVFrame);
-return get_consumed_bytes(s, buf_size);
+ return get_consumed_bytes(s, buf_size);
}
static int h261_decode_end(AVCodecContext *avctx)