summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <[email protected]>2014-08-02 22:30:03 +0200
committerMichael Niedermayer <[email protected]>2014-11-28 18:44:36 +0100
commit72149fcb1b79ce38f4c9e0e49d9b1062a9d92d64 (patch)
tree22b4c93b64c560ec8de7536c18606a523720d05e
parentded44bda27ec14aaa93152ad46b4e42d3064ad3c (diff)
avformat/tee: flip assigment direction
Found-by: CSA Reviewed-by: Nicolas George <[email protected]> Signed-off-by: Michael Niedermayer <[email protected]> (cherry picked from commit 2e6fdcb7f3c86491408a3699f0aa9dc52b7c5686) Signed-off-by: Michael Niedermayer <[email protected]>
-rw-r--r--libavformat/tee.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/tee.c b/libavformat/tee.c
index 12ea0ea27d..90c9759af5 100644
--- a/libavformat/tee.c
+++ b/libavformat/tee.c
@@ -468,7 +468,7 @@ static int tee_write_packet(AVFormatContext *avf, AVPacket *pkt)
if ((ret = av_copy_packet(&pkt2, pkt)) < 0 ||
(ret = av_dup_packet(&pkt2))< 0)
if (!ret_all) {
- ret = ret_all;
+ ret_all = ret;
continue;
}
tb = avf ->streams[s ]->time_base;