mirror of
				https://github.com/nyanmisaka/mpp.git
				synced 2025-10-31 20:42:53 +08:00 
			
		
		
		
	 0a78fb7102
			
		
	
	0a78fb7102
	
	
	
		
			
			Use MppPollType as block control MPP_SET_INPUT_TIMEOUT and MPP_SET_OUTPUT_TIMEOUT 's parameter. Deprecate old block/block_timeout control. Next step is to change MppPollType to RK_S64 for compatible in different platform. Change-Id: I02974f0b8eeb23ff43687448d6c3271ea7dd0a2c Signed-off-by: Herman Chen <herman.chen@rock-chips.com>
		
			
				
	
	
		
			285 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			285 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Copyright 2015 Rockchip Electronics Co. LTD
 | |
|  *
 | |
|  * Licensed under the Apache License, Version 2.0 (the "License");
 | |
|  * you may not use this file except in compliance with the License.
 | |
|  * You may obtain a copy of the License at
 | |
|  *
 | |
|  *      http://www.apache.org/licenses/LICENSE-2.0
 | |
|  *
 | |
|  * Unless required by applicable law or agreed to in writing, software
 | |
|  * distributed under the License is distributed on an "AS IS" BASIS,
 | |
|  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | |
|  * See the License for the specific language governing permissions and
 | |
|  * limitations under the License.
 | |
|  */
 | |
| 
 | |
| #if defined(_WIN32)
 | |
| #include "vld.h"
 | |
| #endif
 | |
| 
 | |
| #define MODULE_TAG "mpi_test"
 | |
| 
 | |
| #include <string.h>
 | |
| #include "rk_mpi.h"
 | |
| #include "mpp_log.h"
 | |
| #include "mpp_env.h"
 | |
| 
 | |
| 
 | |
| #define MPI_DEC_LOOP_COUNT          4
 | |
| #define MPI_ENC_LOOP_COUNT          4
 | |
| 
 | |
| #define MPI_STREAM_SIZE             (SZ_512K)
 | |
| 
 | |
| int mpi_test()
 | |
| {
 | |
|     MPP_RET ret = MPP_NOK;
 | |
|     MppCtx ctx  = NULL;
 | |
|     MppApi *mpi = NULL;
 | |
| 
 | |
|     MppPacket dec_in    = NULL;
 | |
|     MppFrame  dec_out   = NULL;
 | |
| 
 | |
|     MppFrame  enc_in    = NULL;
 | |
|     MppPacket enc_out   = NULL;
 | |
| 
 | |
|     MpiCmd cmd          = MPP_CMD_BASE;
 | |
|     MppParam param      = NULL;
 | |
|     MppPollType block   = MPP_POLL_BLOCK;
 | |
| 
 | |
|     RK_S32 i;
 | |
|     char *buf = NULL;
 | |
|     RK_S32 size = MPI_STREAM_SIZE;
 | |
| 
 | |
|     mpp_log("mpi_test start\n");
 | |
| 
 | |
|     buf = (char *)malloc(size);
 | |
|     if (NULL == buf) {
 | |
|         mpp_err("mpi_test malloc failed\n");
 | |
|         goto MPP_TEST_FAILED;
 | |
|     }
 | |
| 
 | |
|     mpp_log("mpi_test decoder test start\n");
 | |
| 
 | |
|     // decoder demo
 | |
|     ret = mpp_create(&ctx, &mpi);
 | |
| 
 | |
|     if (MPP_OK != ret) {
 | |
|         mpp_err("mpp_create failed\n");
 | |
|         goto MPP_TEST_FAILED;
 | |
|     }
 | |
|     ret = mpp_init(ctx, MPP_CTX_DEC, MPP_VIDEO_CodingUnused);
 | |
|     if (MPP_OK != ret) {
 | |
|         mpp_err("mpp_init failed\n");
 | |
|         goto MPP_TEST_FAILED;
 | |
|     }
 | |
| 
 | |
|     // NOTE: decoder do not need control function
 | |
|     cmd = MPP_SET_OUTPUT_TIMEOUT;
 | |
|     param = █
 | |
|     ret = mpi->control(ctx, cmd, param);
 | |
|     if (MPP_OK != ret) {
 | |
|         mpp_err("mpi->control failed\n");
 | |
|         goto MPP_TEST_FAILED;
 | |
|     }
 | |
| 
 | |
|     // interface with both input and output
 | |
|     for (i = 0; i < MPI_DEC_LOOP_COUNT; i++) {
 | |
|         mpp_packet_init(&dec_in, buf, size);
 | |
| 
 | |
|         // IMPORTANT: eos flag will flush all decoded frame
 | |
|         if (i == MPI_DEC_LOOP_COUNT - 1)
 | |
|             mpp_packet_set_eos(dec_in);
 | |
| 
 | |
|         // TODO: read stream data to buf
 | |
| 
 | |
|         ret = mpi->decode(ctx, dec_in, &dec_out);
 | |
|         if (MPP_OK != ret) {
 | |
|             goto MPP_TEST_FAILED;
 | |
|         }
 | |
| 
 | |
|         if (dec_out) {
 | |
|             // interface may output multiple frame at one time
 | |
|             do {
 | |
|                 MppFrame next = mpp_frame_get_next(dec_out);
 | |
| 
 | |
|                 // TODO: diaplay function called here
 | |
| 
 | |
|                 mpp_frame_deinit(&dec_out);
 | |
|                 dec_out = next;
 | |
|             } while (dec_out);
 | |
|         }
 | |
| 
 | |
|         mpp_packet_deinit(&dec_in);
 | |
|     }
 | |
| 
 | |
|     // interface with input and output separated
 | |
|     for (i = 0; i < MPI_DEC_LOOP_COUNT; i++) {
 | |
|         mpp_packet_init(&dec_in, buf, size);
 | |
|         mpp_packet_set_pts(dec_in, i);
 | |
| 
 | |
|         // IMPORTANT: eos flag will flush all decoded frame
 | |
|         if (i == MPI_DEC_LOOP_COUNT - 1)
 | |
|             mpp_packet_set_eos(dec_in);
 | |
| 
 | |
|         // TODO: read stream data to buf
 | |
| 
 | |
|         ret = mpi->decode_put_packet(ctx, dec_in);
 | |
|         if (MPP_OK != ret) {
 | |
|             goto MPP_TEST_FAILED;
 | |
|         }
 | |
| 
 | |
|         mpp_packet_deinit(&dec_in);
 | |
|     }
 | |
| 
 | |
|     for (i = 0; i < MPI_DEC_LOOP_COUNT; ) {
 | |
|         ret = mpi->decode_get_frame(ctx, &dec_out);
 | |
|         if (MPP_OK != ret) {
 | |
|             goto MPP_TEST_FAILED;
 | |
|         }
 | |
| 
 | |
|         if (dec_out) {
 | |
|             // interface may output multiple frame at one time
 | |
|             do {
 | |
|                 MppFrame next = mpp_frame_get_next(dec_out);
 | |
| 
 | |
|                 // TODO: diaplay function called here
 | |
|                 /*
 | |
|                  * NOTE: check info_change is needed
 | |
|                  * step 1 : check info change flag
 | |
|                  * step 2 : if info change then request new buffer
 | |
|                  * step 3 : when new buffer is ready set control to mpp
 | |
|                  */
 | |
|                 if (mpp_frame_get_info_change(dec_out)) {
 | |
|                     mpp_log("decode_get_frame get info changed found\n");
 | |
| 
 | |
|                     // if work in external buffer mode re-commit buffer here
 | |
|                     mpi->control(ctx, MPP_DEC_SET_INFO_CHANGE_READY, NULL);
 | |
|                 } else
 | |
|                     i++;
 | |
| 
 | |
|                 mpp_frame_deinit(&dec_out);
 | |
|                 dec_out = next;
 | |
|             } while (dec_out);
 | |
|         }
 | |
|     }
 | |
| 
 | |
| 
 | |
|     ret = mpi->reset(ctx);
 | |
|     if (MPP_OK != ret) {
 | |
|         mpp_err("mpi->reset failed\n");
 | |
|         goto MPP_TEST_FAILED;
 | |
|     }
 | |
| 
 | |
|     mpp_destroy(ctx);
 | |
| 
 | |
| 
 | |
|     mpp_log("mpi_test encoder test start\n");
 | |
| 
 | |
|     // encoder demo
 | |
|     ret = mpp_create(&ctx, &mpi);
 | |
|     if (MPP_OK != ret) {
 | |
|         mpp_err("mpp_create failed\n");
 | |
|         goto MPP_TEST_FAILED;
 | |
|     }
 | |
| 
 | |
|     ret = mpp_init(ctx, MPP_CTX_ENC, MPP_VIDEO_CodingUnused);
 | |
|     if (MPP_OK != ret) {
 | |
|         mpp_err("mpp_init failed\n");
 | |
|         goto MPP_TEST_FAILED;
 | |
|     }
 | |
| 
 | |
|     // interface with both input and output
 | |
|     for (i = 0; i < MPI_ENC_LOOP_COUNT; i++) {
 | |
|         mpp_frame_init(&enc_in);
 | |
| 
 | |
|         mpi->encode(ctx, enc_in, &enc_out);
 | |
|         if (MPP_OK != ret) {
 | |
|             goto MPP_TEST_FAILED;
 | |
|         }
 | |
| 
 | |
|         if (enc_out)
 | |
|             mpp_packet_deinit(&enc_out);
 | |
| 
 | |
|         mpp_frame_deinit(&enc_in);
 | |
|     }
 | |
| 
 | |
|     // interface with input and output separated
 | |
|     for (i = 0; i < MPI_ENC_LOOP_COUNT; i++) {
 | |
|         mpp_frame_init(&enc_in);
 | |
| 
 | |
|         // TODO: read stream data to buf
 | |
| 
 | |
|         mpi->encode_put_frame(ctx, enc_in);
 | |
|         if (MPP_OK != ret) {
 | |
|             goto MPP_TEST_FAILED;
 | |
|         }
 | |
| 
 | |
|         mpp_frame_deinit(&enc_in);
 | |
|     }
 | |
| 
 | |
|     for (i = 0; i < MPI_ENC_LOOP_COUNT; i++) {
 | |
|         mpi->encode_get_packet(ctx, &enc_out);
 | |
|         if (MPP_OK != ret) {
 | |
|             goto MPP_TEST_FAILED;
 | |
|         }
 | |
| 
 | |
|         if (enc_out) {
 | |
|             mpp_packet_deinit(&enc_out);
 | |
|         }
 | |
|     }
 | |
| 
 | |
| 
 | |
|     ret = mpi->reset(ctx);
 | |
|     if (MPP_OK != ret) {
 | |
|         mpp_err("mpi->reset failed\n");
 | |
|         goto MPP_TEST_FAILED;
 | |
|     }
 | |
| 
 | |
|     if (dec_in)
 | |
|         mpp_packet_deinit(&dec_in);
 | |
| 
 | |
|     if (enc_in)
 | |
|         mpp_frame_deinit(&enc_in);
 | |
| 
 | |
|     mpp_destroy(ctx);
 | |
|     free(buf);
 | |
| 
 | |
|     mpp_log("mpi_test success\n");
 | |
| 
 | |
|     return 0;
 | |
| 
 | |
| MPP_TEST_FAILED:
 | |
|     if (dec_in)
 | |
|         mpp_packet_deinit(&dec_in);
 | |
| 
 | |
|     if (enc_in)
 | |
|         mpp_frame_deinit(&enc_in);
 | |
| 
 | |
|     if (ctx)
 | |
|         mpp_destroy(ctx);
 | |
|     if (buf)
 | |
|         free(buf);
 | |
| 
 | |
|     mpp_log("mpi_test failed\n");
 | |
| 
 | |
|     return ret;
 | |
| }
 | |
| 
 | |
| 
 | |
| int main(int argc, char **argv)
 | |
| {
 | |
|     int ret = 0;
 | |
| 
 | |
|     (void)argc;
 | |
|     (void)argv;
 | |
| 
 | |
|     mpp_env_set_u32("mpi_debug", 0x1);
 | |
| 
 | |
|     ret = mpi_test();
 | |
| 
 | |
|     mpp_env_set_u32("mpi_debug", 0x0);
 | |
|     return ret;
 | |
| }
 | |
| 
 |