diff options
| author | Joerg Bornkessel <hd_brummy@gentoo.org> | 2014-11-06 00:12:18 +0100 |
|---|---|---|
| committer | Joerg Bornkessel <hd_brummy@gentoo.org> | 2014-11-06 00:12:18 +0100 |
| commit | 43fcf0d177d8d4a0edc93b9eba3c5f9b77b2944f (patch) | |
| tree | 1e5d3792dabc34ee53b636f70d0593299e23f053 | |
| parent | 8fcaa38795a8211205c3521f420850746bd1beb3 (diff) | |
| download | vdr-plugin-audiorecorder-43fcf0d177d8d4a0edc93b9eba3c5f9b77b2944f.tar.gz vdr-plugin-audiorecorder-43fcf0d177d8d4a0edc93b9eba3c5f9b77b2944f.tar.bz2 | |
missing declaration, member
| -rw-r--r-- | convert.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -175,8 +175,8 @@ abuffer *cConvert::reencode_mpa_frame(mpeg_audio_frame *mpa_frame, AVPacket avpkt; av_init_packet(&avpkt); avpkt.data = map_frame->data; - avpkt.size = map_frame->size; - int got_output; + avpkt.size = map_frame->lenght; + int ret, got_output; /* frame containing input raw audio */ frame = avcodec_alloc_frame(); |
