Browse Source

more data_size=0 cleanup

Originally committed as revision 3147 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 22 years ago
parent
commit
e8733cc4d9
2 changed files with 0 additions and 3 deletions
  1. +0
    -2
      libavcodec/mdec.c
  2. +0
    -1
      libavcodec/pcm.c

+ 0
- 2
libavcodec/mdec.c View File

@@ -163,8 +163,6 @@ static int decode_frame(AVCodecContext *avctx,
AVFrame * const p= (AVFrame*)&a->picture;
int i;

*data_size = 0;

/* special case for last picture */
if (buf_size == 0) {
return 0;


+ 0
- 1
libavcodec/pcm.c View File

@@ -334,7 +334,6 @@ static int pcm_decode_frame(AVCodecContext *avctx,
}
break;
default:
*data_size = 0;
return -1;
}
*data_size = (uint8_t *)samples - (uint8_t *)data;


Loading…
Cancel
Save