Feature: align code

pull/221/head
xufuji456 2 years ago
parent 5b786da0dd
commit 6b9710041d
  1. 19
      Live/src/main/java/com/frank/live/LivePusherNew.java
  2. 3
      app/src/main/cpp/ff_audio_resample.cpp

@ -16,19 +16,12 @@ import com.frank.live.stream.VideoStreamNew;
public class LivePusherNew implements OnFrameDataCallback {
//error of opening video encoder
private final static int ERROR_VIDEO_ENCODER_OPEN = 0x01;
//error of video encoding
private final static int ERROR_VIDEO_ENCODE = 0x02;
//error of opening audio encoder
private final static int ERROR_VIDEO_ENCODER_ENCODE = 0x02;
private final static int ERROR_AUDIO_ENCODER_OPEN = 0x03;
//error of audio encoding
private final static int ERROR_AUDIO_ENCODE = 0x04;
//error of RTMP connecting server
private final static int ERROR_RTMP_CONNECT = 0x05;
//error of RTMP connecting stream
private final static int ERROR_AUDIO_ENCODER_ENCODE = 0x04;
private final static int ERROR_RTMP_CONNECT_SERVER = 0x05;
private final static int ERROR_RTMP_CONNECT_STREAM = 0x06;
//error of RTMP sending packet
private final static int ERROR_RTMP_SEND_PACKET = 0x07;
static {
@ -111,16 +104,16 @@ public class LivePusherNew implements OnFrameDataCallback {
case ERROR_VIDEO_ENCODER_OPEN:
msg = activity.getString(R.string.error_video_encoder);
break;
case ERROR_VIDEO_ENCODE:
case ERROR_VIDEO_ENCODER_ENCODE:
msg = activity.getString(R.string.error_video_encode);
break;
case ERROR_AUDIO_ENCODER_OPEN:
msg = activity.getString(R.string.error_audio_encoder);
break;
case ERROR_AUDIO_ENCODE:
case ERROR_AUDIO_ENCODER_ENCODE:
msg = activity.getString(R.string.error_audio_encode);
break;
case ERROR_RTMP_CONNECT:
case ERROR_RTMP_CONNECT_SERVER:
msg = activity.getString(R.string.error_rtmp_connect);
break;
case ERROR_RTMP_CONNECT_STREAM:

@ -229,8 +229,7 @@ int FFAudioResample::decodeAndConvert(int *finished) {
goto cleanup;
}
if (av_audio_fifo_write(resample->fifo, (void **)converted_dst_samples, dst_nb_samples) < dst_nb_samples)
goto cleanup;
av_audio_fifo_write(resample->fifo, (void **)converted_dst_samples, ret);
}
ret = 0;

Loading…
Cancel
Save