This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
loco: fix return value.
The return value was the number of bytes left, it is supposed to be the number of bytes used.
tags/n1.0
Nicolas George
13 years ago
parent
91ec1c6cc3
commit
d2ca5dd0f3
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/loco.c
+ 1
- 1
libavcodec/loco.c
View File
@@ -233,7 +233,7 @@ stop:
*data_size = sizeof(AVFrame);
*(AVFrame*)data = l->pic;
return buf_size < 0 ? -1 : buf_size;
return buf_size < 0 ? -1 :
avpkt->size -
buf_size;
}
static av_cold int decode_init(AVCodecContext *avctx){
Write
Preview
Loading…
Cancel
Save